Esempio n. 1
0
 public DropboxFileSystem(PathOption pathOption, DropboxClient client, Encoding encoding = null)
 {
     _pathOf   = new PathOf(pathOption, FileSystemType.Dropbox);
     _client   = client;
     _encoding = encoding ?? new UTF8Encoding(false);
 }
Esempio n. 2
0
 public LocalFileSystem(PathOption pathOption, Encoding encoding = null)
 {
     _pathOf   = new PathOf(pathOption, FileSystemType.Local);
     _encoding = encoding ?? new UTF8Encoding(false);
 }