How can I tar each sub-directories inside a directory

Y

yinglcs

Hi,
how can I do
* for each sub-directory of the current directory
* tar that to a tar file
* remove that sub-directory
 
K

kyosohma

Hi,
how can I do
* for each sub-directory of the current directory
* tar that to a tar file
* remove that sub-directory

Grab the directories with the glob module and read them into a list.
Use a for loop to loop over them and the tar module (tarfile) or pytar
(see below for link) to write them to a tar file. Finally, use
os.remove or the shutil module to delete the directories.

http://sourceforge.net/projects/pytar/

Mike
 

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
474,434
Messages
2,571,691
Members
48,796
Latest member
Greg L.

Latest Threads

Top