How can I determine if a remote drive has enough space for me to upload a given file using C# in .Net?
|
|
|||||
|
|
|
There are two possible solutions.
Anybody doing any serious Windows development in C# will probably end up calling many Win32 functions. The .NET framework just doesn't cover 100% of the Win32 API. Any large program will quickly uncover gaps in the .NET libraries that are only available through the Win32 API. I would get hold of one of the Win32 wrappers for .NET and include this in your project. This will give you instant access to just about every Win32 API. |
|||
|
|
|
Are you talking about mapping a network share to a logical drive on you computer? If so you can use DriveInfo.
DriveInfo info = new DriveInfo("X:");
info.AvailableFreeSpace;
DriveInfo only works with logical drives so if you are just using the full share (UNC) name I don't think the above code will work. |
||
|
|
|
|
I'm not sure if GetDiskFreeSpaceEx works on UNC shares, but if it does use that, otherwise here is how to mount a UNC share to a logal drive: EDIT GetDiskFreeSpaceEx does work on UNC shares, use that...however, this code was too much effort to just delete, and is handy if you ever want to mount a UNC share as a local drive in your code.
|
||
|
|
|
|
Use WMI
based on (stolen from) http://www.dreamincode.net/code/snippet1576.htm |
||
|
|
