Skip to content

Instantly share code, notes, and snippets.

@jlafitte
Created June 8, 2016 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlafitte/9807c23107969fb6c7e3eb2d83d1d978 to your computer and use it in GitHub Desktop.
Save jlafitte/9807c23107969fb6c7e3eb2d83d1d978 to your computer and use it in GitHub Desktop.
Get disk space in ASP
<%
function getGB(bytes)
getGB = Fix(bytes / 1073741824)
end function
Set fso = CreateObject("Scripting.FileSystemObject")
Set d = fso.GetDrive("C:")
response.write getGB(d.FreeSpace) & "GB free of " & getGB(d.TotalSize) & " GB"
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment