Get Drives Data & system info (for Blitz3D)
Blitz3D Forums/Blitz3D Programming/Get Drives Data & system info (for Blitz3D)
| ||
Hi Blitzers, Here is some crazy code that I did around March 2012. ![]() The purpose of this is to determine various windows system info including listing some drives information. I allowed for the possibility of 3 different methods to get drive data: ;; method 0 = GetLogicalDriveStrings(..,..) ;; method 1 = GetLogicalDrives() ;; method 2 = ..the ancient way.. ;; Function GetDrivesData(method) { .... } This program requires BlitzSys.DLL and BlitzSys.BB , which you can get from this link: http://uploadingit.com/file/2ni14zc2vf4nzyt7/BlitzSys_DLL%20%26%20BlitzSys_BB%20_V1.05.zip The program can also retrieve the Windows version. Whether this program works with Windows 8, well, I have no idea. If anyone wants to download the complete BlitzSys package, then here it is for version 1.05 http://uploadingit.com/file/oufitjhfvxgvj1tk/BlitzSys%20V1.05%20(complete).zip The following links display charts relating Windows OS names with version numbers: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724832%28v=vs.85%29.aspx http://en.wikipedia.org/wiki/Comparison_of_Microsoft_Windows_versions |