private List <string> ListarDetalhesArquivosFTP() { List <string> listaArquivos = new List <string>(); FTPSimple ftp = new FTPSimple(this.servidorFTP, this.usuarioFTP, this.senhaFTP); listaArquivos = ftp.ListarDiretorioDetalhado(this.diretorioFTPArquivos).ToList <string>(); return(listaArquivos); }
public virtual List <string> ListarNomesArquivosFTP() { List <string> listaArquivos = new List <string>(); FTPSimple ftp = new FTPSimple(this.servidorFTP, this.usuarioFTP, this.senhaFTP); listaArquivos = ftp.ListarDiretorioSimples(this.diretorioFTPArquivos).ToList <string>(); return(listaArquivos); }
private IList <string> GetListaDetalhesArquivos() { IList <string> listaArquivos = new List <string>(); try { FTPSimple ftp = new FTPSimple(this.txtIPServidor.Text.Trim(), this.txtUsuario.Text.Trim(), this.txtSenha.Text.Trim()); listaArquivos = ftp.ListarDiretorioDetalhado(this.txtDiretorioFTP.Text.Trim()).ToList <string>(); return(listaArquivos); } catch (Exception ex) { throw ex; } }
private DateTime BuscarDataModificacaoArquivoFTP(string nomeArquivo) { FTPSimple ftp = new FTPSimple(this.servidorFTP, this.usuarioFTP, this.senhaFTP); return(ftp.ObterDataModificacaoArquivo(this.diretorioFTPArquivos, nomeArquivo)); }
public void DownloadArquivosFTP(string nomeArquivo) { FTPSimple ftp = new FTPSimple(this.servidorFTP, this.usuarioFTP, this.senhaFTP); ftp.Download(this.diretorioFTPArquivos, nomeArquivo, this.diretorioDestinoDownload); }
public long BuscarTamanhoArquivoFTP(string nomeArquivo) { FTPSimple ftp = new FTPSimple(this.servidorFTP, this.usuarioFTP, this.senhaFTP); return(ftp.ObterTamanhoArquivo(this.diretorioFTPArquivos, nomeArquivo)); }
private void DownloadArquivos(string nomeArquivo, string pathDestinoArquivo) { FTPSimple ftp = new FTPSimple(this.txtIPServidor.Text.Trim(), this.txtUsuario.Text.Trim(), this.txtSenha.Text.Trim()); ftp.Download(this.txtDiretorioFTP.Text.Trim(), nomeArquivo, pathDestinoArquivo); }