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
-1
votes
1 answer

VB.NET FTP Explorer

I try this source and video but on connect to ftp i get error on connecting. Source: Imports System.IO Imports System.Net Public Class MainForm Private Sub MainForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load …
Javad
  • 373
  • 4
  • 20
-1
votes
1 answer

How can I massively download files (with a filter) from a remote directory from FileZilla

I have connection to a remote server in FileZilla. So far I am able to download massively every file of the directory, but is huge and contains much other files than needed. How can I download the files that comply with the condition "begin…
-1
votes
1 answer

How to receive and read directory listing from server talking ftp protocol from java program? (Without FTPClient Class)

I´m supposed to get this output from my program: Sending message to server: Returned message: 220 (vsFTPd 2.3.5) Sending message to server: USER anonymous Returned message: 331 Please specify the password. Sending message to server: PASS Returned…
-1
votes
1 answer

Error when uploading file to FTP server using My.Computer.Network.UploadFile

I am using this code to upload / download files from my FTP server //Download My.Computer.Network.DownloadFile(txtFile, localFilePath, userName, pw) //Upload My.Computer.Network.UploadFile(localFilePath, txtFile, userName, pw) The…
-1
votes
1 answer

FTP client adds spaces while using RETR command

I was implementing FTP client to download file from server. I used the command in the below sequence. I could succeed in downloading the file and the connection was terminated gracefully however, the content downloaded is not the same as the content…
Vasanth
  • 128
  • 1
  • 18
-1
votes
1 answer

Discontinuous FTP download throws "Read timed out" or "Connection reset"

I used FTP and FTPClient in package 'org.apache.commons.net.ftp' to download files from FTP server. Here is my total example code public class FtpInput { private static final Logger LOG = Logger.getLogger(FtpInput.class); private static…
yi jiang
  • 216
  • 1
  • 13
-1
votes
1 answer

In FTP protocol, how do I know when a file upload is really done?

I get STOR (store) commands and APPE (append) commands. The STOR might upload a complete file. But it might be just part of a file, the rest comes later with multiple APPE commands. How do I know when a file is really 100% uploaded?
Andrew Arrow
  • 4,248
  • 9
  • 53
  • 80
-1
votes
1 answer

How to change a FTP password from Command Line?

I'm using putty to connect ftp server, available commands are listed above ; Which one is for changing ftp password. Please help ftp> help Commands may be abbreviated. Commands are: ! cr mdir proxy …
anarhikos
  • 1,415
  • 3
  • 15
  • 19
-1
votes
2 answers

FTP which IP to use?

I'm using this Code: ftpClient.connect(InetAddress.getByName(10.0.0.100)); ftpClient.login(user, password); ftpClient.changeWorkingDirectory(serverRoad); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); BufferedInputStream buffIn=null; buffIn=new…
Ribisl
  • 149
  • 1
  • 10
-1
votes
1 answer

How to use FTPClient in JDK1.7?

I have already created a project with FTP Client in JDK1.5. But i now i want to improve my JDK version to 1.7. While trying to compile those java files using JDK1.7 it shows some error messages in FTP files. My code is like, …
user3099091
  • 21
  • 1
  • 5
-1
votes
2 answers

how to restart file uploading when an exception occurs

I am working on a java application in which I am facing a problem. When I send a file to a server and an exception is thrown, the file is not sent. How can I retry sending the file? public void uploadtxtFile(String localFileFullName, String…
Ravi Jat
  • 11
  • 1
  • 6
-1
votes
1 answer

Unknown command FEAT when accessing FTP server

I just created an FTP server based on the code provided here http://www.codeguru.com/csharp/csharp/cs_network/sockets/article.php/c7409/A-C-FTP-Server.htm . Then I installed Nuget packages for FtpClient, so that I can create a test FTP client which…
sanmis
  • 515
  • 1
  • 7
  • 22
-1
votes
1 answer

PowerShell exception with UploadFile

I am trying to copy a file from my local to ftp, using the following code. $ftpname = ftp://xxx/xxx/file1.txt $localfilepath = "C:\Outbox\file1.txt" $ftpusername = "xxx" $ftppassword = "xx" $client = New-Object System.Net.WebClient $client =…
wickjon
  • 900
  • 5
  • 14
  • 40
-1
votes
1 answer

Files not saving correctly on ftp in FTPClient

I'm using FTPClient for uploading files on ftp server. first, I have a TempFile object(no matters what is this object), that have a getBytes() method. this method returns List of bytes: List byteList = tempFile.getBytes(); Byte[] byteObjects=…
hamed
  • 7,939
  • 15
  • 60
  • 114
-1
votes
1 answer

OpenSource .NET FTP Application

can somebody please provide me link to some FTP Client application with complete functionality like Filezilla or others like that.. i am looking for some OpenSource Solution and should be developed in .Net (C#, VB.Net). i went through many FTP…
1 2 3
48
49