欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP CopyFile 方法

定義和用法

CopyFile 方法從一個(gè)位置向另一個(gè)位置拷貝一個(gè)或多個(gè)文件。

語法:

FileSystemObject.CopyFile source,destination[,overwrite]
參數(shù) 描述
source 必需的。要拷貝的文件(可使用通配符)。
destination 必需的?截愇募哪康牡兀ú荒苁褂猛ㄅ浞。
overwrite 可選的。規(guī)定是否可覆蓋已有的文件。True 允許覆蓋已有文件,F(xiàn)alse 可防止已有文件被覆蓋。默認(rèn)為 True 。

實(shí)例

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