Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
352 views

when using ftplib in python

Here is the relevant code that's causing the Error. ftp = ftplib.FTP('server') ftp.login(r'user', r'pass') #change directories to the "incoming" folder ftp.cwd('incoming') fileObj = ...
4
votes
6answers
572 views

ftplib checking if a file is a folder?

How can i check if a file on a remote ftp is a folder or not using ftplib? Best way i have right now is to do a nlst, and iterate through calling size on each of the files, if the file errors out ...
3
votes
3answers
553 views

How to use FTPlib in python

i'm writing an application that is supposed to upload a file to an FTP server. Here's the code: try: f = open(filename,"rb") except: print "error 0" try: ftp = ...
3
votes
2answers
120 views

Why is a success message considered an error in ftplib

import ftplib server = '192.168.1.109' user = 'bob' password = 'likes_sandwiches' box = ftplib.FTP(server) box.login(user, password) s = box.mkd('\\a\\this4\\') box.close() x = raw_input('done, eat ...
3
votes
2answers
2k views

Python ftplib - uploading multiple files?

I've googled but I could only find how to upload one file... and I'm trying to upload all files from local directory to remote ftp directory. Any ideas how to achieve this?
2
votes
1answer
37 views

ftplib callbacks not working - Python 3

I have looked everywhere and cannot find a fix for this problem, ftplib storbinary callbacks. This is my first time using callbacks so it could be something stupid, I have some code which should call ...
2
votes
1answer
284 views

Python: Open a Listening Port Behind a Router (upnp?)

I've developed an application that is essentially just a little ftp server with the ability to specify which directory you wish to share on startup. I'm using ftplib for the server because it's sick ...
2
votes
2answers
775 views

How to catch FTP errors? e.g., socket.error: [Errno 10060]

I'm using the ftplib module to upload files: files = [ a.txt , b.txt , c.txt ] s = ftplib.FTP(ftp_server , ftp_user , ftp_pw) # Connect to FTP for i in range(len(files)): f = ...
1
vote
1answer
23 views

Syncing directories with python's ftplib

I'm learning python and trying to write a code to sync two directories: one is on ftp server, the other is on my local disk. So far, I wrote a working code but I have a question or two about it :) ...
1
vote
1answer
56 views

Python 2.7 Tkinter and ftplib

I have quick question, and it may sound dumb. But for the love of me I can't find a solution online or by myself! I am trying to make a FTP client using python for my self, and I am trying to make a ...
1
vote
2answers
120 views

Python get recent files FTP

I need to get the newest files/directory on my FTP server (updated today), I've discovered this solution: def callback(line): try: #only use this code if you'll be dealing with that FTP ...
1
vote
1answer
77 views

ftplib change file remotely

I have some file remotely : ___________ [somevar] Test: 2 ___________ And i want to change var "Test" to 3 for example so i will have : ___________ [somevar] Test: 3 ___________ I'm using this ...
1
vote
1answer
163 views

How to search for most recent excel files in remore directories in PYTHON?

This is the code that lists all the subdirectories from FTP server. How do I search for the most recent Excel files sitting in these multiple Subdirectories directory? As shown in the results, I ...
1
vote
1answer
97 views

Python ftplib - any way to shut it up?

I am writing a test harness in python and as part of the testing I need to initialise an FTP server and upload various files. I am using ftplib and everything is working ok. The only problem I have is ...
1
vote
3answers
90 views

I need Help on FTP using Java

i need the source code of an application that can upload and download automatically from the remote computer (FTP) using java language. thanks
1
vote
1answer
1k views

How to upload binary file with ftplib in Python?

My python2 script uploads files nicely using this method but python3 is presenting problems and I'm stuck as to where to go next (googling hasn't helped). from ftplib import FTP ftp = FTP(ftp_host, ...
1
vote
3answers
862 views

Python’s ftplib STOR reliable?

I'm using this code to upload myfile.txt from my windows machine to a ftp server. after the upoad the script deletes the file on my local machine (I'm not deleting it on the ftp). try: ftp = ...
1
vote
1answer
997 views

sftp using ftplib

Hi All I need to download a file from a host using sFTP. Do you know if is it possible to do that using python ftplib? I saw an example here, but when I try to connect I receive EOFError. I tried ...
1
vote
2answers
594 views

How to transfer a file between two FTP servers?

I have two ftp servers with fxp enabled on both, I'm just wondering how I would transfer a file between the two servers in Python? I was told curl wouldnt do it, but maybe ftplib will do. so, the ...
1
vote
4answers
1k views

proxies in python ftp application

I'm developing ftp client in python ftplib. How do i add proxies support to it (most ftp apps i seen seem to have it)? I'm especially thinking about socks proxies, but also other types... ftp, http ...
0
votes
0answers
15 views

android ftp no address associated with hostname

I'm running FTP-server on one AndroidPhone, another tryes to connect using script on python... But cliet gives an error: socket.gaierror: [Errno 7] no address associated with hostname According ...
0
votes
2answers
27 views

Python 3 FTPLIB, NoneType Errors, and Uploads/Downloads

In my script I want to be able, in the end, to be able to download all files in a directory and all sub-directories... So I am trying FTPLIB. I'm trying to call dir of my ftp server and put it into a ...
0
votes
2answers
38 views

Code to login to remote directory and search a file and download in Python over FTP

I've a package with .gz and filename as (xxxxxxxxxxxx_PARSERxxxxx.tar.gz) extension placed in a remote directory say 1.1.1.1(Should be a input as a variable), i'm currently running the script from ...
0
votes
0answers
31 views

python (3.2) - ftplib & “unicode” file names

Situation: I have small NAS server with FTP, SHH, Samba (and other) protocols. I want to make python script which copy files from "source directory" (from desktop PC - Windows 7) to "destination ...
0
votes
0answers
30 views

How to capture block level operations in ftplib?

We all know that ftp transfers file (both upload and download) in block sizes. I am writing a script in python to know which block size would increase throughput in my internal network. Number of ...
0
votes
1answer
21 views

How to use try Exception block to save my code from abnormal termination?

I'm writing a program that connects to my website via ftp. If the login authentication fails, I want it to continue on to do something else. But an authentication failure error automatically exits the ...
0
votes
1answer
28 views

Python and FTPlib Module

Recently I have been interested in FTP servers and I was wondering how to get a python script to download and upload files onto a FTP server I have set up. But I can't seem to get it to work. Every ...
0
votes
1answer
166 views

python: copy only missing files from FTP dirs and sub-dirs to local dirs and sub-dirs

the problem is: I have a local directory '/local' and a remote FTP directory '/remote' full of subdirectories and files. I want to check if there are any new files in the sub-directories of ...
0
votes
1answer
99 views

Getting EOFError along with exceptions when using ftplib

I'm looking into using ftplib (and possibly ftputil) for doing some automated FTP file syncing. I have a couple of servers to test this against at the moment, but, whilst I'm having a successful ...
0
votes
0answers
46 views

uploading a directory along with its sub-directories and files

I want to a directory to remote server using python. the tree structure of the directory has to be maintained i.e its sub-directories and files. I am using ftplib module to upload the files. Thanks ...
0
votes
2answers
145 views

ftp read() Memory Error in python

i get an error 'Memory Error' when it open and reads a file larger than 500mb. if its less than 500mb it works perfectly.. im using the size for my progress bar's maxvalue self.ftp = ...
0
votes
0answers
127 views

threaded 'NOOP' command during retrbinary

I've written an FTP script that must unfortunately deal with a server that's behind a firewall. The ISP also cuts of my control connection quite early, no matter what kind of timeout settings I might ...
0
votes
1answer
769 views

Python ftplib and storbinary

Trying to understand how the ftplib works. I am trying to save a file to a FTP server and implement a callback. The documentation says: FTP.storbinary(command, file[, blocksize, callback, rest]) ...
0
votes
2answers
191 views

C/C++ ftplib: Undefined reference to _imp__FtpInit

I am trying to use a C/C++ FTP library (>here's the website). When I try to call the FtpInit() function I get a compilation error telling me that there is an undefined reference to _imp__FtpInit. This ...
0
votes
2answers
281 views

Any good .NET FTP Free Library to Upload multiple Files

As title suggests, i am looking for .NET FTP Free Library to Upload multiple Files to server, as its not easy to do it with FtpWebRequest. I am thinking of using following code, but i want to ...
0
votes
1answer
185 views

Measuring Download speed when using Python's FTPLib

I am downloading files using the Python FTP lib , is there a way to get the current download speed. If not is there another lib that I can use that will provide me with speed info ?
0
votes
1answer
40 views

Triggering a file when a file is uploaded in a ftp

i am just wondering is there any such feature available! When user uploads file to a FTP once the connection is disconnected, FTP server need to trigger a event to start a program, so the program can ...
0
votes
1answer
217 views

Python ftplib timing out

I'm trying to use ftplib to get a file listing and download any new files since my last check. The code I'm trying to run so far is: #!/usr/bin/env python from ftplib import FTP import sys host = ...
0
votes
1answer
133 views

How can I specify the client's data port for a ftp server in active mode?

I use python ftplib to connect to a ftp server which is running on active mode; That means the server will connect my client machine on a random port when data is sent between us. Considering ...
0
votes
3answers
497 views

Python ftplib can't get size of file before download?

I'm using ftplib to transfer files. Everything is working great. Now I'm trying to get the size of the target file before downloading. First, I tried just getting size with ftp.size(filename). ...
0
votes
2answers
211 views

FTP and python question

Can someone help me. Why it is not working import ftplib import os def readList(request): machine=[] login=[] password=[] for line in open("netrc"): #read netrc ...
0
votes
2answers
550 views

Downloading a Directory Tree with FTPLIB

This will not download the contents of sub-directories; how can I do so? import ftplib import configparser import os directories = [] def add_directory(line): if line.startswith('d'): bits = ...
0
votes
1answer
516 views

Using ftplib for multithread uploads

I'm trying to do multithread uploads, but get errors. I guessed that maybe it's impossible to use multithreads with ftplib? Here comes my code: class myThread (threading.Thread): def ...
0
votes
3answers
380 views

IOError opening an existing file with Python

Running the following code: import os import datetime import ftplib currdate = datetime.datetime.now() formatdate = currdate.strftime("%m-%d-%Y %H%M") def log(): fqn = os.uname()[1] ext_ip ...
0
votes
2answers
78 views

Help in the following code

def startConnection(self): from ftplib import FTP self.ftp = FTP(self.loginServer) print 'Loging In' print self.ftp.login(self.username, self.password) data = [] self.ftp.dir(data.append) for ...
0
votes
2answers
841 views

Python Libraries for FTP Upload/Download?

Okay so a bit of forward: We have a service/daemon written in python that monitors remote ftp sites. These sites are not under our command, some of them we do NOT have del/rename/write access, some ...
0
votes
2answers
1k views

writing to a file via FTP in python

So i've followed the docs on this page: http://docs.python.org/library/ftplib.html#ftplib.FTP.retrbinary And maybe i'm confused just as to what 'retrbinary' does...i'm thinking it retrives a binary ...
0
votes
2answers
516 views

Partial Upload With storbinary in python

I've written some python code to download an image using urllib.urlopen().read() and then upload it to an FTP site using ftplib.FTP().storbinary() but I'm having a problem. Sometimes the image ...
0
votes
2answers
340 views

Is there a special trick to downloading a zip file and writing it to disk with Python?

I am FTPing a zip file from a remote FTP site using Python's ftplib. I then attempt to write it to disk. The file write works, however most attempts to open the zip using WinZip or WinRar fail; both ...
0
votes
4answers
534 views

Prevent ftplib from Downloading a File in Progress?

We have a ftp system setup to monitor/download from remote ftp servers that are not under our control. The script connects to the remote ftp, and grabs the file names of files on the server, we then ...

1 2