ftp Questions

12

In Ubuntu ftp -p for passive mode works fine. How do I do the same in Windows? I tried with quote pasv but I am getting following error: 230 OK. Current restricted directory is / ftp> quote...
Dewy asked 5/9, 2013 at 18:35

4

Solved

Is there an efficient way to check the existence of a file on a FTP server? I'm using Apache Commons Net. I know that I can use the listNames method of FTPClient to get all the files in a specific ...
Camire asked 7/5, 2012 at 12:36

3

I am trying to list all the files under a specific directory in a ftp server. FTPFile[] subFiles = ftpClient.listFiles("directory"); Although the directory is a valid one , but the code gets stu...
Drusie asked 3/4, 2013 at 14:24

3

Solved

I observed that one of my Windows Services was not connecting to an FTP location on a Unix Server, I ran the executable on my PC as the dev didn't log any error and i was getting timeout error on t...
Foresheet asked 20/8, 2015 at 8:19

7

I'm trying to access an ftp from my web browser, but I get the following error : 421 Sorry, cleartext sessions are not accepted on this server. Any ideas?
ftp
Intracutaneous asked 7/7, 2012 at 3:7

5

I am trying to connect to an FTPS server using C# via WinSCP and I am getting this error: SSH host key fingerprint ... does not match pattern ... After tons of research, I believe is has somet...
Maureenmaureene asked 27/1, 2016 at 23:39

5

Solved

A lot of times I used the command, which opens a temporary HTTP server on current directory: python3 -m http.server Now I need to receive files, is there any one-line command that opens a ftp se...
Decrescent asked 25/7, 2011 at 2:22

3

Solved

Trying to create a simple plugin that simply connects to an ftp site, looks up the latest file and then downloads it. However, it isn't getting the latest file. I'm using the org.apache.commons.ne...
Anam asked 29/9, 2010 at 19:7

6

Solved

I'm using the new Jenkins2 pipeline to build a composed project with: node frontend php backend both are in different repositories hence, the need to use pipeline to sync them, compile, and pr...
Gillian asked 15/12, 2016 at 22:2

4

Hi I am using module ftplib. And list my files with this code: files=[] files = ftp.nlst() And write them to text file with this code: for item in files: filenames.write(item +'\n') But ther...
Afrika asked 8/4, 2015 at 18:55

3

Solved

I had to setup secure FTP to Azure Blob Storage using popular FTP clients (like FileZilla, for example). After doing lot of research, I came across a link that says: Deployed in a worker role, t...

5

Solved

I'm trying to automate downloading of some text files from a z/os PDS, using Python and ftplib. Since the host files are EBCDIC, I can't simply use FTP.retrbinary(). FTP.retrlines(), when used w...
Inductive asked 26/7, 2009 at 15:31

6

Solved

Edit: It seems that after the last update this issue is no longer present, at least so far Whenever i try to upload a file i get a combination of the following errors and success at upload time....
Willing asked 21/5, 2014 at 1:22

4

Solved

I mounted ftp location by using curlftpfs . The problem is that it is EXTREMELY slow to the point it is useless. The time of performing pretty much everything is about 10 seconds. It even includes ...
Margaux asked 23/6, 2014 at 7:24

5

Solved

I know that technically, this question should be asked on phpStorm's forums, but being a popular IDE (I bet an eventual solution would also work for other popular IDEs from JetBrains), I'm thinking...

3

I am trying to upload a file on ftp server using node.js as below- I am using library- https://github.com/sergi/jsftp var fs = require('fs'); var Ftp = new JSFtp({ host: "ftp.some.net", port: 2...
Pietro asked 30/7, 2014 at 10:40

6

Solved

I am being asked to support implicit and explicit FTPS (also known as FTPES). We are currently using the .NET FtpWebRequest. Does the FtpWebRequest support both types of FTPES, and what is the diff...
Phrygian asked 3/12, 2009 at 19:9

2

Solved

Using the Deployment Center link on the App Service page navigation in the azure portal, I was able to find my FTP credentials and easily log in with them. However, there are no files in the wwwroo...
Jimmyjimsonweed asked 16/6, 2021 at 1:13

6

We send some files across to a third party with a PHP cron job via FTP. However sometimes we get the following error: ErrorException [ 2 ]: ftp_put(): php_connect_nonb() failed: Operation ...
Hollyanne asked 28/3, 2013 at 17:27

2

I would like to synchronize two folders with each other. It should go two ways, always keeping the folders up to date (I use a regular cronjob). However, first I do not get the two way file transfe...
Middleoftheroad asked 9/3, 2011 at 12:43

4

I am using the following command to set timeout of lftp command so that if the server is not available or is not accepting any new connection, the command ends after 10 sec. lftp -e 'set ftp:passi...
ftp
Helenhelena asked 13/6, 2011 at 7:43

9

Solved

While looking for an SFTP client in C# SSH File Transfer Protocol (SFTP), I've come across these two suitable projects - one and two. While trying to understand the basics, I came across this conf...
Upolu asked 13/1, 2009 at 19:37

1

Solved

I am new to BitBucket pipelines, as I used Webhook for deploying my changes to FTP. I have set reccommended atlassian/ftp-deploy:0.2.0 pipeline and it works fine, BUT I would like to set that ONLY...
Windham asked 16/7, 2019 at 13:19

10

Solved

I try upload a file to an FTP-server with C#. The file is uploaded but with zero bytes. private void button2_Click(object sender, EventArgs e) { var dirPath = @"C:/Documents and Settings/sander.G...
Bowery asked 7/3, 2013 at 10:31

5

Solved

I need to use FtpWebRequest to put a file in a FTP directory. Before the upload, I would first like to know if this file exists. What method or property should I use to check if this file exists?...
Che asked 7/12, 2008 at 18:44

© 2022 - 2024 — McMap. All rights reserved.