取得指定驱动器的文件系统信息
代码:
<!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 属性
- 从字符串中返回指定数目的字符