├── .gitignore ├── App.config ├── Demo.sln ├── FileSystemWatcherEx.cs ├── LISENCE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── demo.csproj ├── result.gif └── testImages ├── copy.ps1 ├── image1.bmp ├── image2.bmp ├── image3.bmp └── image4.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/App.config -------------------------------------------------------------------------------- /Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Demo.sln -------------------------------------------------------------------------------- /FileSystemWatcherEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/FileSystemWatcherEx.cs -------------------------------------------------------------------------------- /LISENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/LISENCE -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/README.md -------------------------------------------------------------------------------- /demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/demo.csproj -------------------------------------------------------------------------------- /result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/result.gif -------------------------------------------------------------------------------- /testImages/copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/testImages/copy.ps1 -------------------------------------------------------------------------------- /testImages/image1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/testImages/image1.bmp -------------------------------------------------------------------------------- /testImages/image2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/testImages/image2.bmp -------------------------------------------------------------------------------- /testImages/image3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/testImages/image3.bmp -------------------------------------------------------------------------------- /testImages/image4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianChengNan/FileSystemWatcherEx/HEAD/testImages/image4.bmp --------------------------------------------------------------------------------