Questions tagged as 'ftp'

1
answer

FTP ASP.NET Core MVC

It seems to me that FtpWebRequest is not implemented in Core MVC ... Any bookstore or something like that to download a file via FTP with the mvc core?     
asked by 10.04.2017 / 13:22
1
answer

File download FTP server

some recommendation? my client receives the "file" but does not do any method to accept it, my client just sends the command to make it run on the server. this is my download method in my class commands public void download (String file...
asked by 19.04.2017 / 19:29
1
answer

HELP !! Problems when trying to copy a file by ftp, from an apache with xampp to an AS400 server

introducir el código aquí if (isset ($ _ POST ['send'])) { $fileTemp = $_FILES['file']['tmp_name']; $fileName = $_FILES['file']['name']; $fileSize = $_FILES['file']['size']; $fileType = $_FILES['file']['type']; if ($fileSize > 100000...
asked by 17.02.2017 / 02:23
1
answer

Problem when uploading JAVA FTP file

Good morning, I'm trying to upload a file to a server via FTP: try{ FTPClient ftp = new FTPClient(); ftp.connect(server); if(!ftp.login(username, password)){ ftp.logout(); } ftp.enterLoca...
asked by 09.12.2016 / 09:45
1
answer

Corrupt xlsx file when uploading via Java FTP

I'm trying to upload a file via FTP, the excel file apparently is copying it correctly, but when I open it, it says it's corrupt. Any ideas ?? public static void enviarArchivoFTP(String localFile, String hostFile) throws FileNotFoundExcepti...
asked by 26.10.2016 / 01:56
1
answer

compare a local file with another on ftp server c # [closed]

I have to compare two files, one in local and one in ftp server. The first thing is to compare them by name, if the names do not match I have to upload the local file to the server. If the names match I have to compare them by date of last modif...
asked by 03.11.2017 / 11:28