最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
fso实现整个文件夹内容的复制到另一个文件夹中
时间:2022-07-02 23:18:45 编辑:袖梨 来源:一聚教程网
这里是一个实现将一个文件夹中的内容,包括子文件夹中的内容,复制到另一个文件夹中的asp代码。在使用的过程中要将文件夹的相对路径转换成绝对路径。转换的方法是使用server.mappath。
<%
startfile_1="d:aaa" '原始文件夹
tofile_1="c:bbb" '目标文件夹
Call copyfile(startfile_1,tofile_1)
response.write "完成"
function copyfile(startfile,tofile) 'startfile为原始文件夹路径,tofile为目标文件夹路径
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
Set MyFolder=MyFileObject.GetFolder(startfile)
domain=Split(startfile,"")(UBound(Split(startfile,"")))
For Each thing in MyFolder.Files'复制里面的文件
s=Split(thing,"")
a=UBound(s)
s3=Split(thing,"")(a)
MyFileObject.CopyFile thing,tofile&""&s3
Next
For Each thing in MyFolder.SubFolders'复制子文件夹
s=Split(thing,"")
a=UBound(s)
s3=Split(thing,"")(a)
response.write thing&"
"
response.write s1&""&domain&""&s3
response.write "
"
MyFileObject.copyFolder thing,tofile&""&s3
Next
end function
%>
相关文章
- 文件传输助手怎么用 04-17
- 2925邮箱-官方入口网址直达2925邮箱官网 04-17
- 风车在哪看 04-17
- 163免费邮箱-官网登录入口多账号 04-17
- 潜水员戴夫各玩法菜谱推荐 04-17
- 异星探险家5人联机教程 异星探险家多人合作玩法详解 04-17