<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP FileSystemObject Object</title>
</head>
<body>
<%
Dim objFSO
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
IF objFSO.DriveExists("C") Then
Response.write("Drive C Exist")
Else
Response.write("Drive C Not Exist")
End IF
Set objFSO = Nothing
%>
</body>
</html>