📜  ASP 移动文件方法

📅  最后修改于: 2022-05-13 01:56:30.014000             🧑  作者: Mango

ASP 移动文件方法

ASP MoveFile 方法用于将一个或多个文件从一个地方移动到另一个地方。它是 FileSystem 对象的内置方法。

句法

FileSystemObject.MoveFile source,destination

参数值:

来源:这是一个必需的属性。它包含一个可以包含字符的字符串文件,用于移动一个或多个文件。

目的地:它也是一个必需的属性。它指定一个字符值将文件移动字符串哪里。它不包括字符。

例子: 下面的代码说明了 ASP MoveFile 方法。

ASP
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.MoveFile "C:\Folder1\A\A.txt","C:\Folder2\B\"
response.write("The location of the file is changed")
set fs=nothing
%>


输出:

The location of the file is changed