Skip to content
Advertisement

C# .net Core – Get file size on disk – Cross platform solution

Is there a way to have a common logic to retrieve the file size on disk regardless of the underlying operating system ? The following code works for windows but obviously doesn’t for Linux.

JavaScript

Alternatively, I’m looking for a similar implementation that would work on Linux. Can anyone point me in the right direction ?

Thanks for your help !

Advertisement

Answer

To calculate the size of a file on disk, you can utilize the following formula.

JavaScript

The tricky part would be to take the PInvoke approach above, then reference the proper library or file to achieve the GetDiskFreeSpace functionality. You would have to determine which platform the application is running, then invoke the specific system library to return the information so you can calculate the file size on disk.

You could also look at DriveInfo. But I’m not sure if that would give you the proper free space, but a thought and you wouldn’t need PInvoke since it is fully supported in .Net Standard.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement