toktam
toktam

Reputation: 1

how can i access to file system and sector of HD by C#.net?

how can i read sector of HD and access to file syetem and block or cluster of a file,list of bad blocks(FAT) or cluster file(NTFS)? or access list of free blocks(FAT) or cluster bitmap(NTFS)?

Upvotes: 0

Views: 250

Answers (1)

Shiv Kumar
Shiv Kumar

Reputation: 9799

There is no direct way of doing this in C#. If there is a Win32 API for this then you can use pInvoke to get access to this API from within your C# app.

Typically, C# is not a good candidate for this sort of thing.

Upvotes: 1

Related Questions