当前位置: 首页 > 图文教程 > 网络编程 > ASP > fso实现整个文件夹内容的复制到另一个文件夹中

ASP
fso对文件复制、移动、删除的操作
fso检测文件是否存在
fso获取文件属性代码
利用fso显示文件夹中的内容
数据库中的记录输出来,每行5个
response.write与<%=%>之间的区别
利用datediff函数来计算两个时间差
ASP中使用Session变量的优缺点
如何使用fckeditor在线编辑器
asp运行中的各种错误提示及原因
fso显示文本文件的所有内容
ASP编程中常用到的15个例子代码
使用md5给实际字符串加密码
asp实现同网站不同目录帮定不同域名
根据IP地址自动判断转向分站的代码
asp中rs.close的使用方法
ASP截取字符串函数
asp生成某一范围内的随机数
asp函数---InStr()
ASP函数大全

ASP 中的 fso实现整个文件夹内容的复制到另一个文件夹中


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 50 ::
收藏到网摘: n/a

这里是一个实现将一个文件夹中的内容,包括子文件夹中的内容,复制到另一个文件夹中的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
%>