I need to get the free space of a Network drive, without “map drive”
DriveInfo drvInfo = new DriveInfo("\\NetworkDrive");
I try to do this but it does not work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe you will need to call
GetDiskFreeSpace(Win32 API) via P/Invoke to get the disk free space of a UNC network drive.e.g.
C# GetDiskFreeSpace UNC