Questions tagged [ftp]
File Transfer Protocol (FTP) is a standard network protocol used to transfer files from one host to another host over a TCP-based network, such as the Internet.
33 questions
3
votes
1
answer
259
views
Catching the timed out Exception raised by the __init__ method of the class ftplib.FTP
Introduction
I have written a Python class which uses the module ftplib. In this class I have created a private method called <...
3
votes
1
answer
170
views
Wrangling and reading several xlsx files from sftp server and concatenating them into a single dataframe
Please find below my code. Any recommendations/suggestions on how to improve it and make it more readable will be hugely appreciated. I've tried to comment it as much as possible so everyone can ...
3
votes
0
answers
1k
views
Android APP FTP downloading file implementation in Java
This is a follow-up question for Android APP connect to FTP server in Java and Android APP FTP uploading file implementation in Java. I am attempting to perform the download operation to specified FTP ...
1
vote
1
answer
918
views
Android APP FTP uploading file implementation in Java
This is a follow-up question for Android APP FTP host profile class implementation and Android APP connect to FTP server in Java. I am attempting to perform the upload operation to specified FTP ...
1
vote
1
answer
126
views
Android APP FTP host profile class implementation
This is a follow-up question for Android APP connect to FTP server in Java. I am attempting to create a tiny FTP host manager with FTPHostProfile class and ...
4
votes
0
answers
2k
views
Android APP connect to FTP server in Java
I am attempting to build an Android APP with the ability to connect specified FTP server in Java. The connection operation has been performed in FTPconnection class ...
3
votes
1
answer
86
views
Does this R code look ok to expand out to other sites?
I'm after some constructive criticism on my code and maybe some ways to simplify before I expand it to include other sites. I am new to R and coding and have been working on this problem for weeks now....
6
votes
1
answer
2k
views
Recursively listing the content of an FTP server
Today I found myself in need of programmatically getting a recursive list of the files on a remote FTP server to look for some data archives. Much to my surprise, I could not find this functionality ...
2
votes
0
answers
78
views
Upload to FTP method for Android that mimics the command line mv
I've created a Java class for Android that connects to a FTP server (using the FTPClient library from commons-net-3.6) and ...
3
votes
2
answers
1k
views
Importing data into PostgreSQL from remote text file using ftplib class
I need to read a remote file using FTP and process it and insert the processed data to a PostgreSQL database in another server.
The below code is working fine, but i want some advice to modify few ...
6
votes
2
answers
2k
views
Parallel FTP client
I was given the task to download files for a FTP server. The download should be fairly fast. 15 parallel connections can be used.
I have used FluentFTP as the ...
3
votes
2
answers
118
views
Check that file is fully downloaded by FTP
I have a task in which I want to handle error occurred in FTP downloading, For which I used the wget command to download a file via FTP and once the download is ...
2
votes
2
answers
2k
views
Handling FTP exceptions like no internet etc
I'm currently working in a project where the user needs to log in and after that I will check if the directory /cloud/user/Projects exists and if it doesn't, I will create them.
The code works, ...
2
votes
1
answer
200
views
Code to accept resume and cover letter over FTP using C# [closed]
Having completed an independent coding task, I then asked a few professional developers for their feedback as to what they think of the project I presented. Given that I am not an expert c# programmer ...
2
votes
1
answer
3k
views
FTP File Upload Queue
This code implements an FTPManager class and is designed to be a place to insert file data to be sent later, without having the program wait for a potentially very ...