En Fri, 24 Aug 2007 10:03:30 -0300, Brian McCann  
<[EMAIL PROTECTED]> escribi�:

> I'm trying to tar the contents of a directory "test" which contains
> 3 files     foo1.xml ,foo2.xml, foo3.xml
> in my current directory /home/pythonbox/tmp I have the directory "test"
> if I run the below script it fails with the below error, but the files  
> exist in the directory test

Add a print statement and see what you get:

> tfile = tarfile.open("files.tar.gz", 'w:gz')
> files = os.listdir("test")
> for f in files:
        print f
>         tfile.add(f)
> tfile.close

See <http://docs.python.org/lib/module-os.path.html#l2h-2176>

-- 
Gabriel Genellina

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to