Snippet Name: Copy a folder in Visual Basic
Description: Copy an entire folder, including any files and sub-directories.
Also see: » Get the relative path to the root ...
» Copy a file in VB
» Calculate File/Folder Size In A Di...
Comment: (none)
Author:
Language: VB
Highlight Mode: VB
Last Modified: December 09th, 2010
|
' copy a folder, including any files and sub-directories
fso.CopyFolder "c:\mydir\*", "D:\homedir\mydir\",TRUE |