ftp - delete multiple files of same type

C

chris.annin

im trying to delete all text files from an ftp directory. is there a way todelete multiple files of the same extension?

I came up with the following code below which works but I have to append the string because ftp.nlst returns:

"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

but then when I try to delete it that long file name which includes the date doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there should be a better more bullet proof way to do this?

Code:
import os
import system
from ftplib import FTP

ftp = FTP('127.0.0.1')
ftp.login('')

directory = 'test'
ftp.cwd(directory)

files = ftp.nlst()

for file in files:
if file.find(".txt") != -1:
file = (file [-21:])
ftp.delete(file)

ftp.close()

any ideas on this? thank you.
 
D

Dave Angel

im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?

I came up with the following code below which works but I have to append the string because ftp.nlst returns:

"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

but then when I try to delete it that long file name which includes the date doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there should be a better more bullet proof way to do this?

Code:
import os
import system
from ftplib import FTP

ftp = FTP('127.0.0.1')
ftp.login('')

directory = 'test'
ftp.cwd(directory)

files = ftp.nlst()

for file in files:
if file.find(".txt") != -1:
file = (file [-21:])
ftp.delete(file)

ftp.close()

any ideas on this? thank you.
You forgot to say what python version, and what OS you're running on.

I havne't played much with the ftp library, but it seems it'd be much
more robust to use something like file[39:] but that's still a "magic
number".

So i look in the ftplib docs:
http://docs.python.org/2/library/ftplib.html

and it seems there are other choices besides nlst(). If all you need is
the filename, why not check out

FTP.retrlines(command[, callback])¶
FTP.dir(argument[, ...])
 
M

MRAB

im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?

I came up with the following code below which works but I have to append the string because ftp.nlst returns:

"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

but then when I try to delete it that long file name which includes the date doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"

so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there should be a better more bullet proof way to do this?

Code:
import os
import system
from ftplib import FTP

ftp = FTP('127.0.0.1')
ftp.login('')

directory = 'test'
ftp.cwd(directory)

files = ftp.nlst()

for file in files:
if file.find(".txt") != -1:
file = (file [-21:])
ftp.delete(file)

ftp.close()

any ideas on this? thank you.
Firstly, instead of:

file.find(".txt") != -1

use:

file.endswith(".txt")

It's clearer (and it's true only if the ".txt" is at the end!)

Secondly, your code assumes that the filename is exactly 21 characters.
It looks like the strings returned by ftp.nlst() consist of 9 fields
separated by whitespace, with the last field being the filename,
which can also contain spaces. That being so, you can split the strings
like this:

fields = file.split(None, 9)

That'll make a maximum of 9 splits on any whitespace, for example:
Document.txt".split(None, 9)
['-rwx------', '1', 'user', 'group', '0', 'Feb', '04', '15:57', 'New',
'Text Document.txt']

Therefore:

for entry in ftp.nlst():
if entry.endswith(".txt"):
filename = entry.split(None, 9)[-1]
ftp.delete(filename)
 
C

chris.annin

im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?
I came up with the following code below which works but I have to append the string because ftp.nlst returns:
"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
but then when I try to delete it that long file name which includes thedate doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there shouldbe a better more bullet proof way to do this?
Code:
import os[/QUOTE]
[QUOTE]
import system[/QUOTE]
[QUOTE]
from ftplib import FTP 

ftp = FTP('127.0.0.1') 


directory = 'test' 


files = ftp.nlst() 

for file in files:[/QUOTE]
[QUOTE]
if file.find(".txt") != -1:[/QUOTE]
[QUOTE]
file = (file [-21:]) [QUOTE]
ftp.delete(file)[/QUOTE]
[QUOTE]
ftp.close()

any ideas on this? thank you.

Firstly, instead of:



file.find(".txt") != -1



use:



file.endswith(".txt")



It's clearer (and it's true only if the ".txt" is at the end!)



Secondly, your code assumes that the filename is exactly 21 characters.

It looks like the strings returned by ftp.nlst() consist of 9 fields

separated by whitespace, with the last field being the filename,

which can also contain spaces. That being so, you can split the strings

like this:



fields = file.split(None, 9)



That'll make a maximum of 9 splits on any whitespace, for example:



Document.txt".split(None, 9)

['-rwx------', '1', 'user', 'group', '0', 'Feb', '04', '15:57', 'New',

'Text Document.txt']



Therefore:



for entry in ftp.nlst():

if entry.endswith(".txt"):

filename = entry.split(None, 9)[-1]

ftp.delete(filename)
im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?
I came up with the following code below which works but I have to append the string because ftp.nlst returns:
"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
but then when I try to delete it that long file name which includes thedate doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there shouldbe a better more bullet proof way to do this?
Code:
import os[/QUOTE]
[QUOTE]
import system[/QUOTE]
[QUOTE]
from ftplib import FTP 

ftp = FTP('127.0.0.1') 


directory = 'test' 


files = ftp.nlst() 

for file in files:[/QUOTE]
[QUOTE]
if file.find(".txt") != -1:[/QUOTE]
[QUOTE]
file = (file [-21:]) [QUOTE]
ftp.delete(file)[/QUOTE]
[QUOTE]
ftp.close()

any ideas on this? thank you.[/QUOTE]

Firstly, instead of:



file.find(".txt") != -1



use:



file.endswith(".txt")



It's clearer (and it's true only if the ".txt" is at the end!)



Secondly, your code assumes that the filename is exactly 21 characters.

It looks like the strings returned by ftp.nlst() consist of 9 fields

separated by whitespace, with the last field being the filename,

which can also contain spaces. That being so, you can split the strings

like this:



fields = file.split(None, 9)



That'll make a maximum of 9 splits on any whitespace, for example:



Document.txt".split(None, 9)

['-rwx------', '1', 'user', 'group', '0', 'Feb', '04', '15:57', 'New',

'Text Document.txt']



Therefore:



for entry in ftp.nlst():

if entry.endswith(".txt"):

filename = entry.split(None, 9)[-1]

ftp.delete(filename)[/QUOTE]


wow, thank you very much thats a huge help.

Chris
 
C

chris.annin

im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?
I came up with the following code below which works but I have to append the string because ftp.nlst returns:
"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
but then when I try to delete it that long file name which includes thedate doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there shouldbe a better more bullet proof way to do this?
Code:
import os[/QUOTE]
[QUOTE]
import system[/QUOTE]
[QUOTE]
from ftplib import FTP 

ftp = FTP('127.0.0.1') 


directory = 'test' 


files = ftp.nlst() 

for file in files:[/QUOTE]
[QUOTE]
if file.find(".txt") != -1:[/QUOTE]
[QUOTE]
file = (file [-21:]) [QUOTE]
ftp.delete(file)[/QUOTE]
[QUOTE]
ftp.close()

any ideas on this? thank you.

Firstly, instead of:



file.find(".txt") != -1



use:



file.endswith(".txt")



It's clearer (and it's true only if the ".txt" is at the end!)



Secondly, your code assumes that the filename is exactly 21 characters.

It looks like the strings returned by ftp.nlst() consist of 9 fields

separated by whitespace, with the last field being the filename,

which can also contain spaces. That being so, you can split the strings

like this:



fields = file.split(None, 9)



That'll make a maximum of 9 splits on any whitespace, for example:



Document.txt".split(None, 9)

['-rwx------', '1', 'user', 'group', '0', 'Feb', '04', '15:57', 'New',

'Text Document.txt']



Therefore:



for entry in ftp.nlst():

if entry.endswith(".txt"):

filename = entry.split(None, 9)[-1]

ftp.delete(filename)
im trying to delete all text files from an ftp directory. is there a way to delete multiple files of the same extension?
I came up with the following code below which works but I have to append the string because ftp.nlst returns:
"-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
but then when I try to delete it that long file name which includes thedate doesnt exist - the files name is "new text document.txt" not "-rwx------ 1 user group 0 Feb 04 15:57 New Text Document.txt"
so anyway I stripped off the the beginning keeping the last 21 characters and it worked great - this should work being that I know all my text files names are the same length in characters - but it seems like there shouldbe a better more bullet proof way to do this?
Code:
import os[/QUOTE]
[QUOTE]
import system[/QUOTE]
[QUOTE]
from ftplib import FTP 

ftp = FTP('127.0.0.1') 


directory = 'test' 


files = ftp.nlst() 

for file in files:[/QUOTE]
[QUOTE]
if file.find(".txt") != -1:[/QUOTE]
[QUOTE]
file = (file [-21:]) [QUOTE]
ftp.delete(file)[/QUOTE]
[QUOTE]
ftp.close()

any ideas on this? thank you.[/QUOTE]

Firstly, instead of:



file.find(".txt") != -1



use:



file.endswith(".txt")



It's clearer (and it's true only if the ".txt" is at the end!)



Secondly, your code assumes that the filename is exactly 21 characters.

It looks like the strings returned by ftp.nlst() consist of 9 fields

separated by whitespace, with the last field being the filename,

which can also contain spaces. That being so, you can split the strings

like this:



fields = file.split(None, 9)



That'll make a maximum of 9 splits on any whitespace, for example:



Document.txt".split(None, 9)

['-rwx------', '1', 'user', 'group', '0', 'Feb', '04', '15:57', 'New',

'Text Document.txt']



Therefore:



for entry in ftp.nlst():

if entry.endswith(".txt"):

filename = entry.split(None, 9)[-1]

ftp.delete(filename)[/QUOTE]


wow, thank you very much thats a huge help.

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,040
Latest member
papereejit

Latest Threads

Top