Category "ftp"

NodeJS FTP not throwing error when trying to delete non-existent file

I am working with ftp-npm and I am currently facing a weird bug... I have a method called refreshStore that contains this part of code : c.delete('/pathToMyFile

C++ How to read/split EPRT command?

I am currently writing a C++ FTP server and I was wondering what would be the best way to read the EPRT command from the client. << DEBUG INFO. >>:

Automate Azure Devops (FTP Upload) and Git to upload on Remote Server

The current setup is as below Version Control - Git Repos and Branch hosted on - Azure DevOps Codebase - External server The dev team clones Azure Repo into loc

Python - cant upload file to FTP server using ftp_TSL connection

I am trying to upload a file via python and ftplib. Code below. File shows up on server data is written but transfer never completes, and i get no error message

Apache Commons Net FTP does not throw any exception on wrong credentials

I just managed to upload some files to an FTP server using Apache Commons Net FTP. When I use everything as it should be it works fine, I mean, the file uploadi

How to rename file using in PHP Using CURL?

I need to rename a file in the server FTPS. I'm using a useful class FTP_Implicit_SSL I have found on the Internet (I need also CURL). I can list directories, u

How do I upload the last 3 files in a directory with WinSCP?

Trying to upload the last 3 files in a directory. I figured I can set the last 3 files and make them as an alias but I'm not sure how to do that.. Originally Wi

How to exit telnet session via command line using azure devops

I am trying to test connectivity from source to a FTP server on port 22 using azure devops commandline tool in pipelines Command for testing: telnet TestSFTP02

Azure Logic Apps - FTP Trigger

I got a strange problem with Azure Logic Apps. It's a very simple case, really. Scenario: Logic App reads directory from FTP on 'file created'. Logic App reads

How to get the actual download link embedded with any "Download" button

I have this code to download a big file in chunks: import requests from tqdm import tqdm def get_size(url): response = requests.head(url) size = int(r

FTP connection error with Failed to retrieve directory listing

I am trying to connect to a FTP server hosted on azure VM using IIS I can connect but I keep getting the following error: Error: Connection timed out after

Limiting max. concurrent FTP client connections in Java

I was wondering if there's a Java FTP client library, that can limit the max. concurrent connections or if there's a feasible way to implement this feature arou

Download a files from FTP matching a wildcard using Java Apache Commons Net

Basically I need to download list of matching files for the search from a FTP server. I have the code to download a specific file from a FTP server. But I nee

Getting "Connection refused" when transferring a file to FTP server with ftplib in Python

I am currently working on a python script to upload text files to an FTP server but am getting the following error ConnectionRefusedError: [Errno 61] Connection

Read time out when trying to list FTP server directory in Docker container on Linux

I have service that polls FTP server with LIST command. I use local passive mode, use FTPSClient with following setting: ftpClient.setTrustManager(TrustManagerU

Upload file uploaded via HTTP to ASP.NET further to FTP server in C#

Upload form: <form asp-action="Upload" asp-controller="Uploads" enctype="multipart/form-data"> <input type="file" name="file" maxlength="64" /> <

Extracting excel files from the FTP to BigQuery using Cloud Functions

I am working on creating an automated script to download files from a FTP and store them into BigQuery. Problem is that BigQuery accepts only .csv files. For t

Curl file download using ftp protocol fail with RETR response 550

I am trying to download a file from the server to specific path on client, when I run the following curl command I am getting error: curl -u test:test "ftp:

Connect to Explicit FTPS (FTPES) with Python (error) [duplicate]

I'm uploading a file ftp and keep getting a "ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:2756)" error. class MyFTP_TLS(

FtpWebRequest.GetResponse() takes forever

I made a simple program download files from my FTP server and usually this works well(I often reboot my laptop if not working and the program runs perfectly) wi