I am creating application in Winform which among other things will also need to have the ability to calculate size of the folder.
Can someone give me pointers how to do that?
thanks
|
|
|
I use the following extension method to do that:
|
|||
|
|
|
You need to obtain all files from your directory (including subdirectories) and in the sum loop their size. Example:
|
||||
|
You will need to recursively enumerate the files in the folder and sum the file sizes. Remember to include system and hidden files for the correct size. Here is a simple version:
Remember that a file may take up more space on the disk than it's Length, since a file always takes up a whole number of blocks on the file system (in case that matters to your application). |
|||
|
|