海外邮件中继,海外退信中继,美国高速VPS,不限流量VPN,邮局维护和管理,邮件网关,EMOS邮件中继,POSTFIX邮件中继,Winwebmail邮件中继,Winmail邮件中继,DBMail邮件中继,JDMail邮件中继,Exchange邮件中继,MDaemon邮件中继 淘宝店:http://shantan.taobao.com 云邮科技官网:www.yunrelay.com
【字体设置:大 中 小】
<%on error resume next
dim fso,wj,path,filepath,foldername,newfilename,targetpath
wj="../index.html"
path="/wenjian/"
set fso=server.createobject("scripting.filesystemobject")
filepath=server.mappath(wj)'得到源文件路径
foldername=server.mappath(".")&path'得到新目录a路径
newfilename="other.html"'得到保存到a目录的新文件名
targetpath=foldername&""&newfilename'得到新文件完整路径
if fso.folderexists(foldername) then'判断a目录是否存在
fso.copyfile filepath,targetpath,true
else
fso.createfolder(foldername)'创建a目录
fso.copyfile filepath,targetpath,true
end if
set fso=nothing'释放内存
if err then
response.write err.description
end if
%>
发表评论 - 不要忘了输入验证码哦!