Tagged Questions
0
votes
3answers
117 views
How to programatically determine if a drive is DVD-RW/CD-RW under Windows?
I want to block the user to backup files to optical discs, so I have to determine if a CDROM drive is writable.
How to do under Windows?
0
votes
2answers
301 views
Drive/Partition and unique drive ID in Windows API
Alright, I'm looking to create a program that can take a unique drive ID (serial number?), and put it into a database where it associates the ID with some files. If I want to find a file on something ...
1
vote
1answer
284 views
Trying to write a comprehensive method to determine Windows drive type using C++
I've come across a ton of unmanaged C++/MFC examples of people trying to determine the type of a drive by its DOS path, but there seems to be a lot of confusion over how it should be done. So I'm ...
8
votes
1answer
996 views
Detect drive mount event in c#
How to catch an event when a new drive is added to My Computer and preferably and when new mount point for some drive is created on a NTFS drive?
I figued out this but it doesn't work on mounted ...
0
votes
1answer
49 views
Identify that there is a disc in the drive
Sometimes when we double click on a USB drive in Windows File Explorer there is a message "There is no disc in the drive". I want to identify this issue in my application prior to reading any file on ...
13
votes
2answers
913 views
C# How to tell if DVD drive tray is open?
I have a DVD reading and burning app in C#. I want to be able to detect the difference between an empty drive (no disk) and an open drive.
Edit: After some more googling, I think a better problem ...
1
vote
2answers
375 views
setCurrentDrive? c++ win32
How can I set the current drive in c++? I was unable to find anything on the MSDN site
8
votes
7answers
4k views
How to Create a Virtual Windows Drive
I'm trying to create a Windows Virtual Drive ( like c:\ ) to map a remote storage.
The main purpose is to do it in a clear way to the user. Therefore the user wouldn't know that he is writing/reading ...