├── .gitignore ├── 012sys.ico ├── App.config ├── Config.cs ├── FileCounter.csproj ├── FileCounter.csproj.user ├── FileCounter.sln ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── Helper.cs ├── Images ├── console.png └── form.png ├── Logger.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Scanner.cs └── bin └── Debug ├── FileCounter.exe.config ├── FileCounter.pdb ├── Test └── Config.cs ├── out.txt └── test.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/.gitignore -------------------------------------------------------------------------------- /012sys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/012sys.ico -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/App.config -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Config.cs -------------------------------------------------------------------------------- /FileCounter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FileCounter.csproj -------------------------------------------------------------------------------- /FileCounter.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FileCounter.csproj.user -------------------------------------------------------------------------------- /FileCounter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FileCounter.sln -------------------------------------------------------------------------------- /FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FormMain.Designer.cs -------------------------------------------------------------------------------- /FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FormMain.cs -------------------------------------------------------------------------------- /FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/FormMain.resx -------------------------------------------------------------------------------- /Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Helper.cs -------------------------------------------------------------------------------- /Images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Images/console.png -------------------------------------------------------------------------------- /Images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Images/form.png -------------------------------------------------------------------------------- /Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Logger.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/README.md -------------------------------------------------------------------------------- /Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/Scanner.cs -------------------------------------------------------------------------------- /bin/Debug/FileCounter.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/bin/Debug/FileCounter.exe.config -------------------------------------------------------------------------------- /bin/Debug/FileCounter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/bin/Debug/FileCounter.pdb -------------------------------------------------------------------------------- /bin/Debug/Test/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/bin/Debug/Test/Config.cs -------------------------------------------------------------------------------- /bin/Debug/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsky/FileCounter/HEAD/bin/Debug/out.txt -------------------------------------------------------------------------------- /bin/Debug/test.bat: -------------------------------------------------------------------------------- 1 | FileMerger.exe .\Test out.txt 9000 2 | 3 | --------------------------------------------------------------------------------