ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods







METHOD:  File.Move

object.Move destination

This method is used to move the file relating to the specified File object to a new destination.

It is recommended that you use the FileExists method of the FileSystemObject object to determine if a file with the same name already exists in the destination location. If it does, and you attempt the Move, you'll receive an error.

Code:
<%
dim filesys, demofile
set filesys = CreateObject ("Scripting.FileSystemObject")
set demofile = filesys.CreateTextFile ("c:\somefile.txt", true)
set demofile = filesys.GetFile("c:\somefile.txt")
demofile.Move ("c:\projects\test\")
%>