Exemplo n.º 1
0
        public FTPFileSystem(Account account, string path)
        {
            Root = new FTPRoot(account);
            this.account = account;

            Connect();
            LoadDirectory(path);
        }
Exemplo n.º 2
0
        public FTPFileSystem(Account account, string path)
        {
            Root         = new FTPRoot(account);
            this.account = account;

            Connect();
            LoadDirectory(path);
        }
Exemplo n.º 3
0
        public FTPFileSystem(Account account)
        {
            Root = new FTPRoot(account);
            this.account = account;

            Connect();
            LoadDefaultDirectory();
        }
Exemplo n.º 4
0
        public FTPFileSystem(Account account)
        {
            Root         = new FTPRoot(account);
            this.account = account;

            Connect();
            LoadDefaultDirectory();
        }