You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
DType = GetDriveType(DPath)
Select Case DType
Case 0
Msg = "an UNKNOWN Drive Location"
Case 1
Msg = "Nowhere! Drive Doesn't Exist!"
Case 2
Msg = "a Removable Drive"
Case 3
Msg = "a Fixed Disk Drive (" & Left$(DPath,2) & ")"
Case 4
Msg = "a Network Drive"
Case 5
Msg = "a CD-ROM Drive"
Case 6
Msg = "a RAM Disk"
End Select
End If
Given an absolute path, how can I check whether files in that directory are on a local fixed disk partition? Checking the drive letter alone is insufficient because NTFS allows mounting into a directory. This will be a program intended only for use on local partitions, not on removable (including USB), optical, or network drives.
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Leave a comment: