예제 #1
0
        public void StartMonitor()
        {
            foreach (string efi in TVSettings.Instance.DownloadFolders)
            {
                if (!Directory.Exists(efi)) //Does not exist
                {
                    continue;
                }

                if ((File.GetAttributes(efi) & FileAttributes.Directory) != (FileAttributes.Directory))  // not a folder
                {
                    continue;
                }

                FileSystemWatcher watcher = new FileSystemWatcher(efi);
                watcher.Changed += watcher_Changed;
                watcher.Created += watcher_Changed;
                watcher.Renamed += watcher_Changed;
                //watcher.Deleted += new FileSystemEventHandler(watcher_Changed);
                //watcher.NotifyFilter = NotifyFilters.LastWrite | NotifyFilters.FileName | NotifyFilters.CreationTime;
                watcher.IncludeSubdirectories = true;
                watcher.EnableRaisingEvents   = true;
                watchers.Add(watcher);
                Logger.Trace("Starting logger for {0}", efi);
            }
        }
예제 #2
0
 /// <summary>
 /// Gets the <see cref="FileAttributes"/> of the file on the path.
 /// </summary>
 /// <param name="path">The path to the file.</param>
 /// <returns>The <see cref="FileAttributes"/> of the file on the path.</returns>
 /// <exception cref="ArgumentException"><paramref name="path"/> is empty, contains only white spaces, or contains invalid characters.</exception>
 /// <exception cref="PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters.</exception>
 /// <exception cref="NotSupportedException"><paramref name="path"/> is in an invalid format.</exception>
 /// <exception cref="FileNotFoundException"><paramref name="path"/> represents a file and is invalid, such as being on an unmapped drive, or the file cannot be found.</exception>
 /// <exception cref="DirectoryNotFoundException"><paramref name="path"/> represents a directory and is invalid, such as being on an unmapped drive, or the directory cannot be found.</exception>
 /// <exception cref="IOException">This file is being used by another process.</exception>
 /// <exception cref="UnauthorizedAccessException">The caller does not have the required permission.</exception>
 public override FileAttributes GetAttributes(string path)
 {
     return(AfsFile.GetAttributes(path));
 }