Questions tagged [ftp-client]

is for questions dealing with the clients used for the file transfer protocol.

FTP, or File Transfer Protocol, is a way of exchanging files over a network. It uses a client-server architecture with dual connections between them; one for control and one for data.

FTP Wikipedia Article

732 questions
0
votes
5 answers

Does anybody know of a tabbed FTP client?

Am I the only person who has the need to view multiple directories at once (usually on the same remote server, but sometimes other ones too)? Disconnecting and reconnecting is driving me crazy. Preferably a free tool, but I'm getting to the stage…
Umber Ferrule
  • 3,358
  • 6
  • 35
  • 38
0
votes
1 answer

Upload files from a folder to a FTP-Server. I've get two errors. How can I solve these errors?

I'm working on a FTP-Client. I've already created an FTP-Client based by this one: Android How to upload a file via FTP With this code. It was possible to send a txt-File with an included string to my FTP-Server. I've got pictures in my local folder…
goekie
  • 9
  • 3
0
votes
1 answer

How to read only the updated part of a file in FTP?

I am having requirement to scan a logfile. The logfile will be there in a FTP location so we will be using FTPclient to read that. My requirement is like I want to read only the updated info from there I.E. Let's say the Logfile is having 50 Lines…
0
votes
4 answers

Shell Script to load multiple FTP files

I am trying to upload multiple files from one folder to a ftp site and wrote this script: #!/bin/bash for i in '/dir/*' do if [-f /dir/$i]; then HOST='x.x.x.x' USER='username' PASSWD='password' DIR=archives File=$i ftp -n $HOST << END_SCRIPT quote…
maksaraswat
  • 1
  • 1
  • 2
0
votes
1 answer

How to trap ftp success/failure in sun.net.ftp.FtpClient?

I want to know if really 'put' has succeeded in putting the file to destination. If for any reason the file is not put in destination [maybe due to problems in destination server like space constraint, etc] I need to know that. Code: private…
itro
  • 7,006
  • 27
  • 78
  • 121
-1
votes
1 answer

why uploaded zip file via ftp is smaller then original file?

My original zip file is 4KB. When i upload it via ftp on server, the size is smaller namely 3.032KB.it seems to me zip file is corrupted and can't be open. Why it happens? how can be fixed? ftp code public static void uploadFilesToServer(String…
itro
  • 7,006
  • 27
  • 78
  • 121
-1
votes
1 answer

Why doesn’t my website update even though the file has been uploaded successfully? (FTP)

I have been trying in vain to update my website. I use the following information for a connection: server name + password port SFTP When I save the file, I get a message that the file was uploaded successfully. However, the website does not…
Tim-Krs
  • 53
  • 5
-1
votes
2 answers

Alternative to Windows FTP client

We have a legacy system that uses the Windows FTP client with some FTP script files to manipulate files over FTP. We've found the Windows FTP client to be fairly unreliable though in regards to error handling - for example if it can't connect to…
mutex
  • 7,536
  • 8
  • 45
  • 66
-1
votes
1 answer

AIX 7.1 anonymous ftp fails

I have a "vsftpd" server running on a RHEL machine which is configured for anonymous communication. I am trying to connect to it from a AIX 7.1 machine using ftp client. ftp -snv host 8043 Connected to host 220 secure FTP service ftp> user anonymous…
Fazlin
  • 2,285
  • 17
  • 29
-1
votes
1 answer

I am getting java.net.SocketTimeoutException while executing java file transfer program using jcraft-Jsch api but working with other API

I am getting java.net.SocketTimeoutException while executing java file transfer program using jcraft-Jsch api but working with other API like apache with same connection details. I am able to connect to FTP server using any FTP client…
-1
votes
1 answer

CSS Changes Not Showing In HTML site

My CSS changes are not showing once I upload to FTP. HTML changes show just fine. This is the web page in question:- Activ Physiotherapy Hosted with 1and1 and recently had an SSL certificate installed. I think it is an APACHE SERVER. I have tried…
Ruin
  • 1
  • 3
-1
votes
2 answers

FTPClient download file Access is denied

I am trying to download a file from an FTP server using Apache commons 2.0. The following code is giving this error: "Access is denied". Getting files list properly but whenever the download section executes the mentioned error occurs. public class…
Imran Shad
  • 58
  • 13
-1
votes
1 answer

Uploading PDF with FTP and it gets messed up - Android

Currently, I'm trying to upload PDF files with the FTPClient in Android. All of the PDFs from the Internet are working just fine, but documents from my university are getting messed up. What could cause this problem? I'm using a simple AsyncTask…
-1
votes
1 answer

How to escape '@' character in java

I am writing a method to establish a connection to FTP and while configuring the URL, my password contains '@' character, which is in conflict with the host name. How can this be resolved? Can this character be escaped? URL:…
-1
votes
1 answer

use QueryParam to pass username and password of ftp in url

There is a java application which uses REST. The application is used to upload a file to ftp. The file that is being uploaded has an ID called recordID and it is seen through URL because of QueryParam. I need to send the ftp login credentials along…
vardhan
  • 53
  • 7