public SFTPDirectory()
 {
     this.Info          = new RemoteInfo();
     this.Info.DirInfo  = new List <RemoteDirInfo>();
     this.Info.FileInfo = new List <RemoteFileInfo>();
     this.Info.Error    = "";
 }
Example #2
0
        public FTPDirectory()
        {
            this.client = new FtpClient();

            this.Info          = new RemoteInfo();
            this.Info.DirInfo  = new List <RemoteDirInfo>();
            this.Info.FileInfo = new List <RemoteFileInfo>();
            this.Info.Error    = "";
        }