The low-level-io tag has no wiki summary.
2
votes
1answer
51 views
python.select, sending lists as arguments
r=select([f,s],[],[])[0][0]. Does this mean wait until the file pointed to by f AND s is ready for readiing or f OR s is ready for reading?
1
vote
1answer
124 views
LPT I/O address mapping in PC
I heard about USB to LPT adapters that are capable of mapping PC legacy parallel port address. What is the level of such mapping? I mean - is it possible to access the adpater's pins by using 'in' or ...
1
vote
1answer
193 views
How to access an OPTICAL block device directly under Windows
The question is similar to http://stackoverflow.com/questions/38190/how-do-i-read-a-disk-directly-with-net, except that the drive that requires direct access is a CD-ROM or DVD-ROM drive. These ...
1
vote
2answers
142 views
How to find if an NTFS logical cluster is free?
I would like to write a program that reads all the unused clusters on an NTFS volumne. (I'm looking to recover data from a file that was accidentally truncated).
According to this page I can call ...
0
votes
1answer
947 views
How to read individual sectors/clusters using DeviceIoControl() in Windows?
I dropped my laptop while Windows was preparing to hibernate and as a result, I got a head crash on the hard drive. (Teaches me to get a hard drive and/or laptop with a freefall sensor next time ...