How to rename a folder 
Author Message
 How to rename a folder

Is there a way to rename a folder through script if the
folder exits?

Thanks in advance.



Tue, 29 Nov 2005 05:09:21 GMT  
 How to rename a folder

Quote:

> Is there a way to rename a folder through script if the
> folder exits?

The folder's name property is read/write.

Folder Object
http://msdn.microsoft.com/library/en-us/script56/html/jsobjfolder.asp

Windows Script Documentation
http://www.microsoft.com/downloads/details.aspx?FamilyId=01592C48-207...

--
Steve

The worst form of inequality is to try to make unequal things equal. -Aristotle



Tue, 29 Nov 2005 06:46:32 GMT  
 How to rename a folder
thats easy

Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.MoveFolder "C:\FSO\Samples" , "C:\FSO\Scripts"

--

need to e-mail me off list just get rid of "your fears" and
drop me a line.


Quote:
> Is there a way to rename a folder through script if the
> folder exits?

> Thanks in advance.



Tue, 29 Nov 2005 06:47:22 GMT  
 How to rename a folder

Quote:

> thats easy

> Set objFSO = CreateObject("Scripting.FileSystemObject")
> objFSO.MoveFolder "C:\FSO\Samples" , "C:\FSO\Scripts"

or...

Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.GetFolder("C:\FSO\Samples").Name = "Scripts"

--
Michael Harris
Microsoft.MVP.Scripting
Seattle WA US

Technet Script Center
http://www.microsoft.com/technet/scriptcenter/default.asp

Microsoft? Windows?2000 Scripting Guide
http://www.microsoft.com/technet/scriptcenter/scrguide/sagsas_overvie...



Tue, 29 Nov 2005 10:12:30 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. How to rename a folder using vbscript.

2. How can I Rename a folder with FileSystemObject?

3. How-to rename a folder?

4. Help with move/rename of folders

5. How to rename a folder?

6. renaming a shared folder

7. Rename Folder Based on WSHNetwork.ComputerName

8. Renaming Folders

9. Renaming a Folder

10. renaming folders

11. Rename a Folder?

12. FSO Folder object renamed in Scripting v5.5 ???

 

 
Powered by phpBB® Forum Software