├── .gitignore ├── Installer ├── README.md ├── legacy-files │ ├── legacy-disclaimer.txt │ ├── manifest-info.txt │ ├── red_installer-v1.iss │ ├── require_administrator.manifest │ └── set_require_administrator.bat ├── license.txt └── red_installer.iss ├── LICENSE ├── README.md ├── RED2 ├── DeletionError.Designer.cs ├── DeletionError.cs ├── DeletionError.resx ├── Lib │ ├── Core.cs │ ├── DeletionWorker.cs │ ├── Enums.cs │ ├── Events.cs │ ├── FindEmptyDirectoryWorker.cs │ ├── RuntimeData.cs │ ├── SystemFunctions.cs │ ├── TreeManager.cs │ └── UIHelpers.cs ├── LogWindow.Designer.cs ├── LogWindow.cs ├── LogWindow.resx ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources_de.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RED2.csproj ├── RED2.csproj.user ├── app.config ├── app.manifest ├── coffee.ico ├── coffee.png └── packages.config ├── Scripts ├── create-1000-empty-directories.bat └── create-test-directories.bat └── red2_project.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/README.md -------------------------------------------------------------------------------- /Installer/legacy-files/legacy-disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/legacy-files/legacy-disclaimer.txt -------------------------------------------------------------------------------- /Installer/legacy-files/manifest-info.txt: -------------------------------------------------------------------------------- 1 | http://msdn.microsoft.com/en-us/library/bb756929.aspx -------------------------------------------------------------------------------- /Installer/legacy-files/red_installer-v1.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/legacy-files/red_installer-v1.iss -------------------------------------------------------------------------------- /Installer/legacy-files/require_administrator.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/legacy-files/require_administrator.manifest -------------------------------------------------------------------------------- /Installer/legacy-files/set_require_administrator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/legacy-files/set_require_administrator.bat -------------------------------------------------------------------------------- /Installer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/license.txt -------------------------------------------------------------------------------- /Installer/red_installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Installer/red_installer.iss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/README.md -------------------------------------------------------------------------------- /RED2/DeletionError.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/DeletionError.Designer.cs -------------------------------------------------------------------------------- /RED2/DeletionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/DeletionError.cs -------------------------------------------------------------------------------- /RED2/DeletionError.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/DeletionError.resx -------------------------------------------------------------------------------- /RED2/Lib/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/Core.cs -------------------------------------------------------------------------------- /RED2/Lib/DeletionWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/DeletionWorker.cs -------------------------------------------------------------------------------- /RED2/Lib/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/Enums.cs -------------------------------------------------------------------------------- /RED2/Lib/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/Events.cs -------------------------------------------------------------------------------- /RED2/Lib/FindEmptyDirectoryWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/FindEmptyDirectoryWorker.cs -------------------------------------------------------------------------------- /RED2/Lib/RuntimeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/RuntimeData.cs -------------------------------------------------------------------------------- /RED2/Lib/SystemFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/SystemFunctions.cs -------------------------------------------------------------------------------- /RED2/Lib/TreeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/TreeManager.cs -------------------------------------------------------------------------------- /RED2/Lib/UIHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Lib/UIHelpers.cs -------------------------------------------------------------------------------- /RED2/LogWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/LogWindow.Designer.cs -------------------------------------------------------------------------------- /RED2/LogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/LogWindow.cs -------------------------------------------------------------------------------- /RED2/LogWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/LogWindow.resx -------------------------------------------------------------------------------- /RED2/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/MainWindow.Designer.cs -------------------------------------------------------------------------------- /RED2/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/MainWindow.cs -------------------------------------------------------------------------------- /RED2/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/MainWindow.resx -------------------------------------------------------------------------------- /RED2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Program.cs -------------------------------------------------------------------------------- /RED2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RED2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RED2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/Resources.resx -------------------------------------------------------------------------------- /RED2/Properties/Resources_de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/Resources_de.resx -------------------------------------------------------------------------------- /RED2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RED2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/Properties/Settings.settings -------------------------------------------------------------------------------- /RED2/RED2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/RED2.csproj -------------------------------------------------------------------------------- /RED2/RED2.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/RED2.csproj.user -------------------------------------------------------------------------------- /RED2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/app.config -------------------------------------------------------------------------------- /RED2/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/app.manifest -------------------------------------------------------------------------------- /RED2/coffee.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/coffee.ico -------------------------------------------------------------------------------- /RED2/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/coffee.png -------------------------------------------------------------------------------- /RED2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/RED2/packages.config -------------------------------------------------------------------------------- /Scripts/create-1000-empty-directories.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Scripts/create-1000-empty-directories.bat -------------------------------------------------------------------------------- /Scripts/create-test-directories.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/Scripts/create-test-directories.bat -------------------------------------------------------------------------------- /red2_project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxseven/Remove-Empty-Directories/HEAD/red2_project.sln --------------------------------------------------------------------------------