2008年(5645)
分类:
2008-04-28 14:20:31
<% 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.Close Set f2 = fso.GetFile(whichfile) s = "文件名称:" & f2.name & " " s = s & "文件短路径名:" & f2.shortPath & " " s = s & "文件物理地址:" & f2.Path & " " s = s & "文件属性:" & f2.Attributes & " " s = s & "文件大小: " & f2.size & " " s = s & "文件类型: " & f2.type & " " s = s & "文件创建时间: " & f2.DateCreated & " " s = s & "最近访问时间: " & f2.DateLastAccessed & " " s = s & "最近修改时间: " & f2.DateLastModified response.write(s) %> |
Normal 0 普通文件。 没有设置任何属性。 ReadOnly 1 只读文件。 可读写。 Hidden 2 隐藏文件。 可读写。 System 4 系统文件。 可读写。 Directory 16 文件夹或目录。 只读。 Archive 32 上次备份后已更改的文件。 可读写。 Alias 1024 链接或快捷方式。 只读。 Compressed 2048 压缩文件。 只读。 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.Move "C:\" %> 查看下有没有 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.Copy "D:\" %> 查看下有没有 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.move "d:\" Set f3 = fso.GetFile("d:\cnbruce.txt") f3.delete %> 查看下是没有该文件的 |
<% 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.Close Set f2 = fso.GetFile(whichfile) s = "文件名称:" & f2.name & " " s = s & "文件短路径名:" & f2.shortPath & " " s = s & "文件物理地址:" & f2.Path & " " s = s & "文件属性:" & f2.Attributes & " " s = s & "文件大小: " & f2.size & " " s = s & "文件类型: " & f2.type & " " s = s & "文件创建时间: " & f2.DateCreated & " " s = s & "最近访问时间: " & f2.DateLastAccessed & " " s = s & "最近修改时间: " & f2.DateLastModified response.write(s) %> |
Normal 0 普通文件。 没有设置任何属性。 ReadOnly 1 只读文件。 可读写。 Hidden 2 隐藏文件。 可读写。 System 4 系统文件。 可读写。 Directory 16 文件夹或目录。 只读。 Archive 32 上次备份后已更改的文件。 可读写。 Alias 1024 链接或快捷方式。 只读。 Compressed 2048 压缩文件。 只读。 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.Move "C:\" %> 查看下有没有 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.Copy "D:\" %> 查看下有没有 |
<% 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.Close Set f2 = fso.GetFile(whichfile) f2.move "d:\" Set f3 = fso.GetFile("d:\cnbruce.txt") f3.delete %> 查看下是没有该文件的 |