返回指定文件的屬性
代碼:
<!DOCTYPE html><html>
<body>
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile(Server.MapPath("testread.txt"))
Response.Write("The attributes of the file testread.txt are: " & f.Attributes)
set f=nothing
set fs=nothing
%>
</body>
</html>
結果:
The attributes of the file testread.txt are: 32
相關文章
- ASP.NET Web Pages 教程
- ASP.NET MVC 簡介
- ASP.NET XML 控件
- WebSecurity HasUserId 屬性
- HTML Inputbutton
- ASP.NET HTML 控件 Literal
- ASP.NET HTML 控件 Literal 2
- ASP.NET HTML 控件 Page_Load
- ASP.NET HTML 控件 SortedList RadioButtonList 1
- C# 實例 Else If 條件
- VB 實例 使用數據庫 根據數據庫顯示條形圖
- C# 實例 使用 Chart 幫助器 根據數據庫顯示餅圖
- ASP.NET Web Pages - Chart 幫助器
- ASP.NET TabIndex 屬性
- ASP.NET CheckBoxList RepeatLayout 屬性
- ASP.NET Panel ScrollBars 屬性
- ASP.NET RadioButtonList RepeatColumns 屬性
- ASP.NET BulletedList Target 屬性
- ASP.NET TableCell RowSpan 屬性
- ASP.NET TextBox Wrap 屬性