Version: 3.0
Copies the specified folder from one location to another.
Note that after copying a folder to a new location the Folder object still relates to the original folder.
<%
dim filesys, demofolder
set filesys = CreateObject ("Scripting.FileSystemObject")
set demofolder = filesys.GetFolder("c:\projects\")
demofolder.Copy("c:\work\")
%>