Metodo ASP CopyFile


❮ Riferimento completo dell'oggetto FileSystemObject

Il metodo CopyFile copia uno o più file da una posizione a un'altra.

Sintassi

FileSystemObject.CopyFile source,destination[,overwrite]

Parameter Description
source Required. The file or files to copy (wildcards can be used}
destination Required. Where to copy the file or files (wildcards cannot be used}
overwrite Optional. A Boolean value that specifies whether an existing file can be overwritten. True allows existing files to be overwritten and False prevents existing files from being overwritten. Default is True

Esempio

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFile "c:\mydocuments\web\*.htm","c:\webpages\"
set fs=nothing
%>

❮ Riferimento completo dell'oggetto FileSystemObject