FSO组件之文件操作(下)
2018-09-06 10:56
一,fso.GetFile
提取文件相应的File对象
1,getfile.asp
<%
whichfile=Server.MapPath(cnbruce.txt)
Setfso=CreateObject(Scripting.FileSystemObject)
Setf1=fso.CreateTextFile(whichfile,true)
f1.Write(Thisisatest.MyNameiscnbruce.)
f1.Close
Setf2=fso.GetFile(whichfile)
s=文件名称:nbsp;<br>
s=s文件短路径名:f2.shortPath<br>
s=s文件物理地址:f2.Path<br>
s=s文件属性:f2.Attributes<br>
s=s文件大小:f2.size<br>
s=s文件类型:f2.type<br>
s=s文件创建时间:f2.DateCreated<br>
s=s最近访问时间:f2.DateLastAccessed<br>
s=s最近修改时间:f2.DateLastModified
response.write(s)
%>
其效果正如右键某文件,看到的具体属性信息。
其中Attributes返回的数值“32”表示:(Archive)上次备份后已更改的文件。可读写。
其它值附录如下:
Normal0普通文件。没有设置任何属性。
ReadOnly1只读文件。可读写。
Hidden2隐藏文件。可读写。
System4系统文件。可读写。
Directory16文件夹或目录。只读。
Archive32上次备份后已更改的文件。可读写。
Alias1024链接或快捷方式。只读。
Compressed2048压缩文件。只读。
二,file.move
作用将指定的文件或文件夹从某位置移动到另一位置。其实该方法仍然属于fso.GetFile后的一个应用。
2,movefile.asp
<%
whichfile=Server.MapPath(cnbruce.txt)
Setfso=CreateObject(Scripting.FileSystemObject)
Setf1=fso.CreateTextFile(whichfile,true)
f1.Write(Thisisatest.MyNameiscnbruce.)
f1.Close
Setf2=fso.GetFile(whichfile)
f2.MoveC:
%>
<ahref=C:>查看下有没有</a>
简单的剪切粘贴的功能实现。
三,y
同样属于fso.GetFile后的一个应用。就只是单纯地拷贝文件到某位置。
3,copyfile.asp
<%
whichfile=Server.MapPath(cnbruce.txt)
Setfso=CreateObject(Scripting.FileSystemObject)
Setf1=fso.CreateTextFile(whichfile,true)
f1.Write(Thisisatest.MyNameiscnbruce.)
f1.Close
Setf2=fso.GetFile(whichfile)
f2.CopyD:
%>
<ahref=D:>查看下有没有</a>
和本ASP页面同在目录下的cnbruce.txt文件依然存在。
四,file.Delete
很显然,就是直接删除文件了。
4,delfile.asp
<%
whichfile=Server.MapPath(cnbruce.txt)
Setfso=CreateObject(Scripting.FileSystemObject)
Setf1=fso.CreateTextFile(whichfile,true)
f1.Write(Thisisatest.MyNameiscnbruce.)
f1.Close
Setf2=fso.GetFile(whichfile)
f2.moved:
Setf3=fso.GetFile(d:cnbruce.txt)
f3.delete
%>
<ahref=d:>查看下是没有该文件的</a>