当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP MoveFile用法及代码示例


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

用法

FileSystemObject.MoveFile source,destination

参数值:

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

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP MoveFile Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。