Tagged Questions

3
votes
7answers
403 views

How many threads for reading and writing to the hard disk?

i am developing an application that gathers a list with all the files of the hard drive and also afterwards it does write files to the hard drive. I want to ask : what is the optimum number of ...
2
votes
2answers
103 views

How to get unallocated space info in a physical disk

Can anybody help, how to get unallocated space information in a disk using C# ?
2
votes
2answers
2k views

Serial number of Hard Disk or Hard Drive

At first it may seems it is very easy question and some body may be trying to give me advice to try Google, it may be so. But for me it is very hard I have try Google, Stack Overflow and can’t find ...
1
vote
2answers
85 views

Get local drives without hitting floppy

I'm looking for a way to scan for hard disks without incurring the 'floppy tax' of the system attempting to read the floppy drive to see if there's a disk in there. Important: I know how to use ...
1
vote
2answers
872 views

Win32 API P-Invoke to bring a disk online, offline, and set unique ID

I am currently using Diskpart to accomplish these functions, but i would like to be able to use P-Invoke and not have to shell out to an external process in my C# app. The example Diskpart scripts ...
1
vote
2answers
759 views

C# getdrives with type fixed but without usb harddisks?

I want to retrieve the list of fixed disks in a system. But C#s GetDrives Fixed Drives are including plug USB Harddisks. Any idea how I may detect that a fixed Drive is not an USB harddisk or vica ...
1
vote
7answers
2k views

How can I find the Harddisk Device Serial Number without using the WMI in .NET?

I want to get the hardwired serial number from the hard disk but NOT using WMI. I tried using WMI code, and it doesn't work on my machine for sure. So is there any alternative in .NET for finding the ...
0
votes
2answers
107 views

fs.write(); fs.flush(); When is it really written to disk? What if kernel-panic or power outage?

I need to implement some atomic writes to secondary storage. How can I make this fool proof? If I open a C# file handle using File.Open I will receive a handle. I can write some data to it. Flush it ...
0
votes
1answer
169 views

Storage devices, file transfer and copy operation logic

I am trying to create a file copy utility which should work as a replacement of the standard windows file copying process. The main reason to do so is to add copy/move queue support and hopefully some ...
0
votes
2answers
2k views

How to get Hard-Disk SerialNumber in C# (no WMI)?

I know there are two articles in CodeProject (one uses WMI and the other no WMI but in C++). I tried the WMI way, not only it's slow, but it is also unreliable. So, that's why I decided not to pursue ...
0
votes
2answers
62 views

Need expert's comment on deciding DB storage or file base

Hi Friends I have an application that stores thousands of text files in database with average of 3KB each. and another table storing brief info about them that searched more frequently. with 140,000 ...
0
votes
0answers
154 views

Is it possible to read serial number from a harddisk in c#? [closed]

Possible Duplicate: How can I find the Harddisk Device Serial Number without using the WMI in .NET? how to read the serial number from a harddisk in c#? Any suggestion... EDIT: I want ...