取得指定驅動器的文件系統信息
代碼:
<!DOCTYPE html><html>
<body>
<%
dim fs, d, n
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("The file system is: " & d.FileSystem)
set d=nothing
set fs=nothing
%>
</body>
</html>
結果:
The file system is: NTFS
相關文章
- ASP.NET 實例
- ASP.NET Table 控件
- WebSecurity CurrentUserName 屬性
- WebSecurity IsCurrentUser 方法
- WebSecurity RequireAuthenticatedUser 方法
- ASP.NET HTML 控件 Button 2
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 Panel
- ASP.NET HTML 控件 用 重復
- ASP.NET HTML 控件 xml
- C# 實例 顯示日期和時間
- VB 實例 顯示日期和時間
- VB 實例 Select 條件
- ASP.NET Calendar PrevMonthText 屬性
- ASP.NET AccessKey 屬性
- ASP.NET CalendarDay IsOtherMonth 屬性
- ASP.NET ListItem Text 屬性
- ASP.NET TableCell Text 屬性
- ASP.NET TextBox AutoPostBack 屬性
- 從字符串中返回指定數目的字符