ASP Get the file system of a specified drive

Get the file system of a specified drive

<html>
<body>

<%
dim fs, d, n
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("File system: " & d.FileSystem)
set d=nothing
set fs=nothing
%>

</body>
</html>