├── .gitattributes ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Tools.cs ├── WindowsFileMonitor.csproj ├── bin └── Debug │ ├── WindowsFileMonitor.exe │ ├── WindowsFileMonitor.pdb │ ├── WindowsFileMonitor.vshost.exe │ ├── WindowsFileMonitor.vshost.exe.manifest │ ├── WindowsFileMonitor.zip │ ├── config │ ├── MonitorName.txt │ └── shell.txt │ └── 使用说明.txt └── obj └── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── WindowsFileMonitor.Form1.resources ├── WindowsFileMonitor.Properties.Resources.resources ├── WindowsFileMonitor.csproj.FileListAbsolute.txt ├── WindowsFileMonitor.csproj.GenerateResource.Cache ├── WindowsFileMonitor.csprojResolveAssemblyReference.cache ├── WindowsFileMonitor.exe └── WindowsFileMonitor.pdb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/.gitattributes -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Form1.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/Tools.cs -------------------------------------------------------------------------------- /WindowsFileMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/WindowsFileMonitor.csproj -------------------------------------------------------------------------------- /bin/Debug/WindowsFileMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/WindowsFileMonitor.exe -------------------------------------------------------------------------------- /bin/Debug/WindowsFileMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/WindowsFileMonitor.pdb -------------------------------------------------------------------------------- /bin/Debug/WindowsFileMonitor.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/WindowsFileMonitor.vshost.exe -------------------------------------------------------------------------------- /bin/Debug/WindowsFileMonitor.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/WindowsFileMonitor.vshost.exe.manifest -------------------------------------------------------------------------------- /bin/Debug/WindowsFileMonitor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/WindowsFileMonitor.zip -------------------------------------------------------------------------------- /bin/Debug/config/MonitorName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/config/MonitorName.txt -------------------------------------------------------------------------------- /bin/Debug/config/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/config/shell.txt -------------------------------------------------------------------------------- /bin/Debug/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/bin/Debug/使用说明.txt -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.Form1.resources -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.Properties.Resources.resources -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.exe -------------------------------------------------------------------------------- /obj/Debug/WindowsFileMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shack2/WindowsFileMonitor/HEAD/obj/Debug/WindowsFileMonitor.pdb --------------------------------------------------------------------------------