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?
There are a number of ways to display a folder in File Explorer: Click on a folder if it's listed in the Navigation pane. Click on a folder in the Address bar to display its subfolders. Double-click on a folder in the file and folder listing to display any subfolders.
To loop through a directory, and then print the name of the file, execute the following command: for FILE in *; do echo $FILE; done.
If you're using .NET 4, you may wish to use the System.IO.DirectoryInfo.EnumerateDirectories
and System.IO.DirectoryInfo.EnumerateFiles
methods. If you use the Directory.GetFiles
method as other posts have recommended, the method call will not return until it has retrieved ALL the entries. This could take a long time if you are using recursion.
From the documentation:
The
EnumerateFiles
andGetFiles
methods differ as follows:
- When you use
EnumerateFiles
, you can start enumerating the collection ofFileInfo
objects before the whole collection is returned.- When you use
GetFiles
, you must wait for the whole array ofFileInfo
objects to be returned before you can access the array.Therefore, when you are working with many files and directories,
EnumerateFiles
can be more efficient.
Use Directory.GetFiles(). The bottom of that page includes an example that's fully recursive.
Note: Use Chris Dunaway's answer below for a more modern approach when using .NET 4 and above.
// For Directory.GetFiles and Directory.GetDirectories // For File.Exists, Directory.Exists using System; using System.IO; using System.Collections; public class RecursiveFileProcessor { public static void Main(string[] args) { foreach(string path in args) { if(File.Exists(path)) { // This path is a file ProcessFile(path); } else if(Directory.Exists(path)) { // This path is a directory ProcessDirectory(path); } else { Console.WriteLine("{0} is not a valid file or directory.", path); } } } // Process all files in the directory passed in, recurse on any directories // that are found, and process the files they contain. public static void ProcessDirectory(string targetDirectory) { // Process the list of files found in the directory. string [] fileEntries = Directory.GetFiles(targetDirectory); foreach(string fileName in fileEntries) ProcessFile(fileName); // Recurse into subdirectories of this directory. string [] subdirectoryEntries = Directory.GetDirectories(targetDirectory); foreach(string subdirectory in subdirectoryEntries) ProcessDirectory(subdirectory); } // Insert logic for processing found files here. public static void ProcessFile(string path) { Console.WriteLine("Processed file '{0}'.", path); } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With