Low level operations to devices
-
I wanna know ways to make low-level operations to devices (mainly the hard disk) in .Net Framework by using C++ dll's or something ????? By ways I mean maybe a class or a Windows standard API library (doesnt matter if its not managed code) Specific things I want to know are (mostly consultations) : - the beginning/ending number of cluster and track of files, - the beginning/ending number of cluster and track of folders - the size in clusters of files - the volume serial number - the size in clusters and tracks of a hard disk, etc - can I do "interrupts" ??? Let me know the class or the Api library and the documentation, if there is it. thanks in advance, fvalerin
-
I wanna know ways to make low-level operations to devices (mainly the hard disk) in .Net Framework by using C++ dll's or something ????? By ways I mean maybe a class or a Windows standard API library (doesnt matter if its not managed code) Specific things I want to know are (mostly consultations) : - the beginning/ending number of cluster and track of files, - the beginning/ending number of cluster and track of folders - the size in clusters of files - the volume serial number - the size in clusters and tracks of a hard disk, etc - can I do "interrupts" ??? Let me know the class or the Api library and the documentation, if there is it. thanks in advance, fvalerin
It sounds like a device driver is in your future.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
-
It sounds like a device driver is in your future.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
-
Well, no, I dont want to complicate my existence. I just want to read those kind of values thanks, fvalerin
I know of no way to circumvent the HAL in order to get access to such low-level information. For the fourth bullet, use
GetVolumeInformation()
.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
-
I know of no way to circumvent the HAL in order to get access to such low-level information. For the fourth bullet, use
GetVolumeInformation()
.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
I just saw this article: Hooking the kernel directly http://www.codeproject.com/useritems/soviet\_direct\_hooking.asp maybe he can help you ! Marcello
-
I just saw this article: Hooking the kernel directly http://www.codeproject.com/useritems/soviet\_direct\_hooking.asp maybe he can help you ! Marcello
Marcello wrote:
maybe he can help you !
I'm not the one needing help, fvalerin was.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
-
Marcello wrote:
maybe he can help you !
I'm not the one needing help, fvalerin was.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb