Search Results

2
votes

How can I determine if a remote drive has enough space to write a file using C#?

Use WMI using System.Management; // Get all the network drives (drivetype=4) SelectQuery query = new SelectQuery("select Name, VolumeName, FreeSpace from win32_logicaldisk where dr …