最新的Web開發教程
 

ASP移動方法


<完整文件夾對象參考

Move方法指定文件或文件夾移動從一個位置到另一個位置。

句法

FileObject.Move(destination)

FolderObject.Move(destination)

參數 描述
destination 需要。 當移動文件或文件夾。 通配符不允許

例如,對於文件對象

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
f.Move("c:\test\test.txt")
set f=nothing
set fs=nothing
%>

例如,對於文件夾對象

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Move("c:\asp\test")
set fo=nothing
set fs=nothing
%>

<完整文件夾對象參考