Ejemplo n.º 1
0
 public void Close(FileWrapper file)
 {
     lock (this)
     {
         if (_files.ContainsKey(file.Path))
         {
             FileCounter counter = _files[file.Path];
             if (--counter.Count == 0)
             {
                 counter.Stream.Dispose();
                 _files.Remove(file.Path);
             }
         }
     }
 }
Ejemplo n.º 2
0
 public FileSync(FileWrapper file)
 {
     _file = file;
 }