| Be the first user to complete this post  | Add to List | 
FileSystemObject : MoveFolder Method
Description:
This function moves a Folder from one location to another.
Format :
objectOfFileSystemObject. MoveFolder (source, destination );
Arguments:
- objectOfFileSystemObject
As the names says, it’s a FileSystemObject.
- source
- Mandatory
- Type: String
- Path of a folder to be moved.
 
- destination
- Mandatory
- Type: String
- Path where folder to be moved.
 
Function FnMoveFolder(strSourcePath,strDestinationPath)
      Set fso = CreateObject("Scripting.FileSystemObject")
      Set objFolder = fso. MoveFolder(strSourcePath, strDestinationPath)
End Function
Call FnMoveFolder ("c:\New Folder",”d:\New Folder”)
Also Read:
- FileSystemObject : CopyFile Method
- FileSystemObject : CreateTextFile Method
- FileSystemObject : DeleteFolder Method
- FileSystemObject : CopyFolder Method
- FileSystemObject : GetFileVersion Method
 
    