<Completa FileSystemObject Object Reference
O método CopyFolder cópias uma ou mais pastas de um local para outro.
Sintaxe
FileSystemObject.CopyFolder source,destination[,overwrite]
Parâmetro | Descrição |
---|---|
source | Requeridos. A pasta ou pastas para copiar (wildcards can be used) |
destination | Requeridos. Onde copiar a pasta ou pastas (wildcards cannot be used) |
overwrite | Opcional. Um valor booleano que indica se uma pasta existente pode ser substituído. Verdadeiros pastas permite existentes sejam substituídos e evita falsos pastas sejam substituídos existente. Padrão é True |
Exemplos
<%
'copy all the folders in c:\mydocuments\web
'to the folder c:\webpages
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFolder "c:\mydocuments\web\*","c:\webpages\"
set fs=nothing
%>
<%
'copy only the folder test from c:\mydocuments\web
'to the folder c:\webpages
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFolder "c:\mydocuments\web\test","c:\webpages\"
set fs=nothing
%>
<Completa FileSystemObject Object Reference