Example #1
0
        public FTPFileSystem(Account account, string path)
        {
            Root = new FTPRoot(account);
            this.account = account;

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

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

            Connect();
            LoadDefaultDirectory();
        }
Example #4
0
        public FTPFileSystem(Account account)
        {
            Root         = new FTPRoot(account);
            this.account = account;

            Connect();
            LoadDefaultDirectory();
        }