Dim getAvailableBytes As Long = nativeMe.RunMethod("getAvailableBytes", Null)
Dim getTotalBytes As Long = nativeMe.RunMethod("getTotalBytes", Null)
Dim freeSpace As Long = nativeMe.RunMethod("freeSpace", Null)
Dim totalSpace As Long = nativeMe.RunMethod("totalSpace", Null)
Dim busySpace As Long = nativeMe.RunMethod("busySpace", Null)
returnFormatted(getAvailableBytes, "getAvailableBytes: ")
returnFormatted(getTotalBytes, "getTotalBytes: ")
returnFormatted(freeSpace, "freeSpace: ")
returnFormatted(totalSpace, "totalSpace: ")
returnFormatted(busySpace, "busySpace: ")