ASP Move ·½·¨
¶¨ÒåºÍÓ÷¨
Move ·½·¨°ÑÖ¸¶¨µÄÎļþ»òÎļþ¼Ð´ÓÒ»¸öλÖÃÒÆ¶¯µ½ÁíÒ»¸öλÖá£
Óï·¨£º
FileObject.Move(destination) FolderObject.Move(destination)
²ÎÊý | ÃèÊö |
---|---|
destination | ±ØÐèµÄ¡£Òƶ¯Îļþ/Îļþ¼ÐµÄÄ¿µÄµØ¡£²»ÔÊÐíʹÓÃͨÅä·û¡£ |
ʵÀý
Õë¶Ô File ¶ÔÏóµÄÀý×Ó
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("d:\test.txt")
f.Move("d:\test\test.txt")
set f=nothing
set fs=nothing
%>
Õë¶Ô Folder ¶ÔÏóµÄÀý×Ó
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("d:\test")
fo.Move("d:\asp\test")
set fo=nothing
set fs=nothing
%>