ASP MoveFile 方法
asp movefile 方法

movefile 方法把一個(gè)或多個(gè)文件從一個(gè)位置移動到另一個(gè)位置。
語法
filesystemobject.movefile source,destination
參數(shù) | 描述 |
---|---|
source | 必需的。指向要移動的文件的路徑??稍谧詈蟮某煞种邪ㄅ浞?/td> |
destination | 必需的。移動文件的目的地。不能包含通配符。 |
實(shí)例
<%
dim fs
set fs=server.createobject("scripting.filesystemobject")
fs.movefile "c:\web\*.gif","c:\images\"
set fs=nothing
%>
dim fs
set fs=server.createobject("scripting.filesystemobject")
fs.movefile "c:\web\*.gif","c:\images\"
set fs=nothing
%>

相關(guān)文章