You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start FileSystemWatcherEx, then try to copy a very large file in the watched path.
Result: Two events are fired, "Created" on start copying and "Changed" on end copying
Expected: Only Created Event shoul have been fired at the end of copy when file is ready to be processed, dame as for small files.
Here is the test code:
`using System;
using System.IO;
using FileWatcherEx;
Start FileSystemWatcherEx, then try to copy a very large file in the watched path.
Result: Two events are fired, "Created" on start copying and "Changed" on end copying
Expected: Only Created Event shoul have been fired at the end of copy when file is ready to be processed, dame as for small files.
Here is the test code:
`using System;
using System.IO;
using FileWatcherEx;
namespace MyNamespace
{
class MyClassCS
{
static void Main()
{
Environment.SetEnvironmentVariable("DOTNET_USE_POLLING_FILE_WATCHER", "1");
}`
The text was updated successfully, but these errors were encountered: