Questions tagged [ftp]

File Transfer Protocol (FTP) is a well-established protocol for conducting file operations (such as transferring files) over a TCP-based network such as the Internet.

File Transfer Protocol (Wikipedia article) is a protocol, governed by well-established Internet standards, for conducting file operations (e.g. transferring files between two systems) over a TCP-based network such as the Internet or a local area network. FTP employs a client-server architecture, where one system is the "client", which opens a connection to the other system, the "server", the client makes requests of the server, and then closes the connection.

The most common FTP operations that a client will initiate include downloading files (i.e. "get" files from the server) and uploading files (i.e. "put" files on the server). But there are a variety of file system related commands that the client may make of the server (e.g. making directories, renaming files on the server, deleting files from the server, etc.).

14199 questions
3
votes
0 answers

Collecting multiple files via ftp using Laravel 5

I have a script that collects data via ftp and works great. The issue is you have to specify the filename that you want to download. Example: https://mydomain/downloadFile?file=folder/file1.csv What i want to do is save all the files in the folder…
MatHatrik
  • 762
  • 1
  • 6
  • 16
3
votes
2 answers

file transfer from Windows to Linux

I am exporting data in a csv file using ssis. In my ssis package i compress the file in zip format and upload it on a linux server using sftp. The problem is that in the destination file system, the csv files include a ^M character which comes from…
Bonzay
  • 740
  • 2
  • 10
  • 29
3
votes
1 answer

Import File from FTP to R

Want to download a csv-file from FTP-Server to R (it would be best to have the file as a dataframe in R). Get an error-message when trying to download a csv-file from FTP-Server to R (which is local in my Mac). url =…
flobrr
  • 197
  • 1
  • 2
  • 13
3
votes
1 answer

Modified files not being sent during ANT build

We have been using Eclipse as our default IDE for some time and it has been a consistent source of headache, but moving away from it hasn't been an option because our build process is inexorably tied to it. I recently set us up to be able to build…
user10597469
3
votes
0 answers

Apache FTPSCleint.listFiles() returns empty array

I'm trying to get files from ftp server with no luck. commons-net version 3.5 FTPSClient ftpClient = new FTPSClient(); ftpClient.connect("xxx.com", 21); ftpClient.enterLocalPassiveMode(); …
Mike
  • 347
  • 1
  • 2
  • 15
3
votes
3 answers

FTP configuration for WordPress

I've installed a WordPress instance on a Linux server, and I need to give it FTP access in order to install plugins and execute automatic backup/restores. I've just installed vsftpd, and started the service, but now what? How do I figure out/set…
Yarin
  • 173,523
  • 149
  • 402
  • 512
3
votes
1 answer

Transferring files from FTP directly to Azure Blob storage in C#

I have written a function which move files from FTP server to Azure Blob storage. I want to pass the stream from FTP to blob so that I can upload the files. I am running a while loop for every file and trying to move the file to blob storage using…
omkarlanghe
  • 37
  • 1
  • 8
3
votes
1 answer

Automate FTP upload with VBA

I am trying to automate the following process: Data imported to Microsoft Excel (myfile.xls) from database and formatted. File saved as myfile.txt. Uploaded via FTP to a server. I have got as far as the FTP upload, but I am having issues with the…
sam c
  • 149
  • 1
  • 2
  • 9
3
votes
2 answers

C# code to accommodate file path changed from windows to ftp(with userid password)

In my application, I download files in network drive to local and then process them. Now my problem is network path changed from windows to ftp and need user id password to access that. My application code is in C# and which can not accomodate this…
jjj
  • 31
  • 1
3
votes
1 answer

Text based FTP client settings behind a proxy

I need to create a bash script which will connect to an FTP server, upload a file and close the connection. Usually this would be an easy task but I need to specify some specific proxy settings which is making it difficult. I can connect to the FTP…
user151419
3
votes
2 answers

How to use sftp instead of ftp when updating wordpress plugins?

Website Information: Protocol : SFTP Server : Google Cloud Wordpress Version : 4.9.8 I am trying to update my WordPress plugins but every time I try to do it, it always asks me for my FTP information but when I supplied my FTP information it returns…
Oliver Primo
  • 317
  • 4
  • 18
3
votes
0 answers

VS Code Remote Workspace Extension doesn't work

I am trying to edit my php files remotely on the ftp server via the visual studio code extension "Remote Workspace". I've installed the plugin and I've created a workspace file including the following json as it is stated on the link:…
KodFun
  • 323
  • 3
  • 8
3
votes
4 answers

FTP Check if file exist when Uploading and if it does rename it in C#

I have a question about Uploading to a FTP with C#. What I want to do is if the file exists then I want to add like Copy or a 1 after the filename so it doesn't replace the file. Any Ideas? var request =…
Johan Beillon
  • 33
  • 1
  • 1
  • 4
3
votes
2 answers

powershell and secureString class

Attempting to access an FTP site, I can use a plain text password in credentials and it works fine, but when I use a SecureString it fails to authenticate. Examples: $pw = "mypw" $ftp = [system.net.ftpwebrequest]…
Elroy Flynn
  • 3,032
  • 1
  • 24
  • 33
3
votes
1 answer

Amazon EC2 Windows 2008 FTP Issues - Cannot get directory listing

Does anyone have a foolproof way to FTP to Windows 2008 EC2 Instances? I had mine working perfectly after following a lot of online guides from other users. Then it started deteriorating, intermittently giving a "Failed to get directory listing…
Jordan
  • 327
  • 1
  • 3
  • 15