├── .gitattributes ├── AltComparison.md ├── FileSystemWatcherAlts.sln ├── FileSystemWatcherAlts.sln.DotSettings.user ├── FileSystemWatcherAlts ├── FileSystemOverseer.cs ├── FileSystemWatcherAlts.csproj ├── IFileSystemWatcher.cs ├── Icon │ └── noun_160432_cc.png ├── Polling │ ├── FileSystemPoller.cs │ ├── IFileSystemPoller.cs │ └── PollingType.cs ├── Properties │ └── AssemblyInfo.cs ├── Utils │ ├── Extentions │ │ ├── CollectionsExtentions.cs │ │ ├── DirectoryExtentions.cs │ │ └── ExceptionsExtentions.cs │ ├── FileSystemFakeWatcher.cs │ ├── WatcherErrorHandlingPolicy.cs │ └── WatcherErrorHandlingType.cs ├── Wrappers │ ├── FileSystemAutoRefreshingWatcher.cs │ ├── FileSystemRefreshableWatcher.cs │ ├── FileSystemWatcherAdapter.cs │ └── FileSystemWatcherWrapper.cs └── packages.config ├── LICENSE ├── README.md └── packages └── Polly.2.2.3 ├── Polly.2.2.3.nupkg └── lib ├── net35 ├── Polly.dll └── Polly.xml ├── net40 ├── Polly.dll └── Polly.xml ├── net45 ├── Polly.dll └── Polly.xml └── portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1 ├── Polly.dll └── Polly.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/.gitattributes -------------------------------------------------------------------------------- /AltComparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/AltComparison.md -------------------------------------------------------------------------------- /FileSystemWatcherAlts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts.sln -------------------------------------------------------------------------------- /FileSystemWatcherAlts.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts.sln.DotSettings.user -------------------------------------------------------------------------------- /FileSystemWatcherAlts/FileSystemOverseer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/FileSystemOverseer.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/FileSystemWatcherAlts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/FileSystemWatcherAlts.csproj -------------------------------------------------------------------------------- /FileSystemWatcherAlts/IFileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/IFileSystemWatcher.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Icon/noun_160432_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Icon/noun_160432_cc.png -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Polling/FileSystemPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Polling/FileSystemPoller.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Polling/IFileSystemPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Polling/IFileSystemPoller.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Polling/PollingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Polling/PollingType.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/Extentions/CollectionsExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/Extentions/CollectionsExtentions.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/Extentions/DirectoryExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/Extentions/DirectoryExtentions.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/Extentions/ExceptionsExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/Extentions/ExceptionsExtentions.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/FileSystemFakeWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/FileSystemFakeWatcher.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/WatcherErrorHandlingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/WatcherErrorHandlingPolicy.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Utils/WatcherErrorHandlingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Utils/WatcherErrorHandlingType.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Wrappers/FileSystemAutoRefreshingWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Wrappers/FileSystemAutoRefreshingWatcher.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Wrappers/FileSystemRefreshableWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Wrappers/FileSystemRefreshableWatcher.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Wrappers/FileSystemWatcherAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Wrappers/FileSystemWatcherAdapter.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/Wrappers/FileSystemWatcherWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/Wrappers/FileSystemWatcherWrapper.cs -------------------------------------------------------------------------------- /FileSystemWatcherAlts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/FileSystemWatcherAlts/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/README.md -------------------------------------------------------------------------------- /packages/Polly.2.2.3/Polly.2.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/Polly.2.2.3.nupkg -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net35/Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net35/Polly.dll -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net35/Polly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net35/Polly.xml -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net40/Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net40/Polly.dll -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net40/Polly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net40/Polly.xml -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net45/Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net45/Polly.dll -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/net45/Polly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/net45/Polly.xml -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/Polly.dll -------------------------------------------------------------------------------- /packages/Polly.2.2.3/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/Polly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theXappy/FileSystemWatcherAlts/HEAD/packages/Polly.2.2.3/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/Polly.xml --------------------------------------------------------------------------------