What's the best way to iterate folders and subfolders to get file size, total number of files, and total size of folder in each folder starting at a specified location?
|
|
Use Bottom of that page includes an example that's fully recursive beleive. |
|||||
|
|
If you're using .Net 4, you may wish to use the From the docs:
|
||||
|
|
|
To iterate through all directories sub folders and files, no matter how much sub folder and files are.
then from array you can get what you want via a loop or as you want. |
|||
|
|
|
To iterate through files and folders you would normally use the DirectoryInfo and FileInfo types. The FileInfo type has a Length property that returns the file size in bytes. I think you must write your own code to iterate through the files and calculate the total file size, but it should be a quite simple recursive function. |
|||
|
|
|
Note that you will need to perform validation checks.
|
|||