Home > .NET, GUI, Program, Search > Dotnet Program To Search For File Exts Of A List Of Dirs

Dotnet Program To Search For File Exts Of A List Of Dirs

January 18th, 2012

Input: A Directory
Output: A CSV report

The input directory will have a few hundreds sub directories. The program needs to check each Sub directory, and then generate a CSV report with this format:

dirname,exe,jpg,gif
subdir1,5+,1,2
subdir2,0,5+,0

….

the first columns are subdirector names, the second column onwards are the number of files with this extension in this subdirectory note: need to do a recursive search on all directory except a particular which i will give you the n…


Dotnet Program To Search For File Exts Of A List Of Dirs

Comments are closed.
Bear