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