Exemplo n.º 1
0
 public SftpDirectory(SftpStorage storage, SftpDirectory parent, Renci.SshNet.Sftp.SftpFile directory)
 {
     this.storage = storage;
     this.parent = parent;
     this.directory = directory;
 }
Exemplo n.º 2
0
 public SftpDirectory(SftpStorage storage, SftpDirectory parent, Renci.SshNet.Sftp.SftpFile directory)
 {
     this.storage   = storage;
     this.parent    = parent;
     this.directory = directory;
 }
Exemplo n.º 3
0
        public SftpCachedFile(SftpStorage storage, SftpDirectory parent, string path, string name, ulong size, DateTime date)
        {
            this.storage = storage;
            this.parent = parent;

            this.path = path;
            this.name = name;
            this.size = size;
            this.date = date;
        }
Exemplo n.º 4
0
 public SftpFile(SftpStorage storage, SftpDirectory parent, Renci.SshNet.Sftp.SftpFile file)
 {
     this.storage = storage;
     this.parent = parent;
     this.file = file;
 }
Exemplo n.º 5
0
 public SftpFile(SftpStorage storage, SftpDirectory parent, Renci.SshNet.Sftp.SftpFile file)
 {
     this.storage = storage;
     this.parent  = parent;
     this.file    = file;
 }