ASP CopyFile 方法
asp copyfile 方法

copyfile 方法從一個位置向另一個位置拷貝一個或多個文件。
語法
filesystemobject.copyfile source,destination[,overwrite]
參數 | 描述 |
---|---|
source | 必需的。要拷貝的文件(可使用通配符)。 |
destination | 必需的。拷貝文件的目的地(不能使用通配符)。 |
overwrite | 可選的。布爾值,規定是否可覆蓋已有的文件。true 允許覆蓋已有文件,false 防止已有文件被覆蓋。默認為 true 。 |
實例
<%
dim fs
set fs=server.createobject("scripting.filesystemobject")
fs.copyfile "c:\mydocuments\web\*.htm","c:\webpages\"
set fs=nothing
%>
dim fs
set fs=server.createobject("scripting.filesystemobject")
fs.copyfile "c:\mydocuments\web\*.htm","c:\webpages\"
set fs=nothing
%>

相關文章
- ASP AdRotator
- ASP Browser Capabilities
- ASP Content Linking
- 在自己的 PC 上運行 ASP
- ASP 語法
- ASP Skip 方法
- ASP DateLastAccessed 屬性
- ASP CreateTextFile 方法
- ASP Key 屬性
- ASP Remove 方法
- ASP ContentType 屬性
- ASP Flush 方法
- ASP Redirect 方法
- ASP Form 集合
- ASP ServerVariables 集合
- ASP TotalBytes 屬性
- ASP Contents 集合
- ASP GetBaseName 方法
- ASP GetDrive 方法
- ASP GetParentFolderName 方法