static void Main(string[] args)
    {
        var fw = new FileSystemWatcher(@"M:\Videos\Unsorted");

        fw.Changed += fw_Changed;
        while (fw.WaitForChange(WatcherChangeTypes.All) != null)
        {
            ;
        }
    }