马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
实现规模效益。与传统的用户拥有硬件软件所有权和使用权以及传统的应用服务商提供一对一的服务模式不同,ASP拥有应用系统所有权,用户拥有使用权,应用系统集中放在ASP的数据中心中,集中管理,分散使用,以一对多的租赁的形式为众多用户提供有品质保证的应用技术服务,实现规模效益。fso|技能 一,fso.GetFile
提取文件响应的 File 对象
1,getfile.ASP
<%whichfile=Server.MapPath("cnbruce.txt")
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.CreateTextFile(whichfile,true)
f1.Write ("This is a test.My Name is cnbruce.")
f1.CloseSet f2 = fso.GetFile(whichfile)
s = "文件称号:" & f2.name & "<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)前次备份后已更改的文件。可读写。
其它值附录以下:
Normal 0 通俗文件。 没有设置任何属性。
ReadOnly 1 只读文件。 可读写。
Hidden 2 埋没文件。 可读写。
System 4 体系文件。 可读写。
Directory 16 文件夹或目次。 只读。
Archive 32 前次备份后已更改的文件。 可读写。
Alias 1024 链接或快捷体例。 只读。
Compressed 2048 紧缩文件。 只读。
二,file.move
感化将指定的文件或文件夹从某地位挪动到另外一地位。其实该办法依然属于fso.GetFile后的一个使用。
2,movefile.asp
<%whichfile=Server.MapPath("cnbruce.txt")
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.CreateTextFile(whichfile,true)
f1.Write ("This is a test.My Name is cnbruce.")
f1.CloseSet f2 = fso.GetFile(whichfile)
f2.Move "C:\"%>
<a href="C:\">检查下有无</a>
复杂的剪切粘贴的功效完成。
三,File.Copy
一样属于fso.GetFile后的一个使用。就只是纯真地拷贝文件到某地位。
3,copyfile.asp
<%whichfile=Server.MapPath("cnbruce.txt")
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.CreateTextFile(whichfile,true)
f1.Write ("This is a test.My Name is cnbruce.")
f1.CloseSet f2 = fso.GetFile(whichfile)
f2.Copy "D:\"%>
<a href="D:\">检查下有无</a>
和本ASP页面同在目次下的cnbruce.txt文件仍然存在。
优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件 |