예제 #1
0
 public void WriteAllLines(string path, IEnumerable <string> lines)
 {
     if (_sharpCifsFileSystem.IsEnabledForPath(path))
     {
         _sharpCifsFileSystem.WriteAllLines(path, lines);
         return;
     }
     File.WriteAllLines(path, lines);
 }