473,395 Members | 1,458 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Script to make Windows XP-readable ZIP file

pac
I'm preparing to distribute a Windows XP Python program and some
ancillary files,
and I wanted to put everything in a .ZIP archive. It proved to be
inordinately
difficult and I thought I would post my solution here. Is there a
better one?

Suppose you have a set of files in a directory c:\a\b and some
additional
files in c:\a\b\subdir. Using a Python script, you would
like to make a Windows-readable archive (.zip) that preserves this
directory structure, and where the root directory of the archive is
c:\a\b. In other words, all the files from c:\a\b appear in the
archive
without a path prefix, and all the files in c:\a\b\subdir have a path
prefix of \subdir.

This looks like it should be easy with module zipfile and the handy
function os.walk. Create a zip file, call os.walk, and add the files
to
the archive like so:

import os
import zipfile

z =
zipfile.ZipFile(r"c:\a\b\myzip.zip",mode="w",compr ession=zipfile.ZIP_DEFLATED)

for dirpath,dirs,files in os.walk(r"c:\a\b"):
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z.write(a_path) # Change, see below
z.close()

This creates an archive that can be read by WinZip or by another Python
script
that uses zipfile. But when you try to view it with the Windows
compressed folder
viewer it will appear empty. If you try to extract the files anyway
(because
you know they are really there), you get a Windows Security Warning and
XP
refuses to decompress the folder - XP is apparently afraid it might be
bird flu
or something.

If you change the line marked #Change to "z.write(a_path,file)",
explicitly naming
each file, now the compressed folder viewer will show all the files in
the archive.
XP will not treat it like a virus and it will extract the files.
However, the
archive does not contain a subdirectory; all the files are in a single
directory.

Some experimentation suggests that Windows does not like any filename
in the
archive that begins with either a drive designator like c:, or has a
path containing
a leading slash like "\a\b\afile.txt". Relative paths like
"subdir\afile.txt" are
okay, and cause the desired behavior when the archive is extracted,
e.g., a new directory subdir is created and afile.txt is placed in it.

Since the method ZipFile.write needs a valid pathname for each file,
the correct
solution to the original problem entails messing around with the OS's
current
working directory. Position the CWD in the desired base directory of
the archive,
add the files to the archive using their relative pathnames, and put
the CWD back
where it was when you started:

import os
import zipfile

z =
zipfile.ZipFile(r"c:\a\b\myzip.zip",mode="w",compr ession=zipfile.ZIP_DEFLATED)

cwd = os.getcwd()
os.chdir(base_dir)
try:
for dirpath,dirs,files in os.walk(''): # This starts the walk at
the CWD
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z.write(a_path,a_path) # Can the second argument be
omitted?
z.close()
finally:
os.chdir(cwd)

This produces an archive that can be extracted by Windows XP using its
built-in
capability, by WinZip, or by another Python script. Now that I have
the solution it
seems to make sense, but it wasn't at all obvious when I started.

Paul Cornelius

May 19 '06 #1
12 5697
i am in win2000
"z.write(a_path,a_path)" may change to "z.write(a_path)"
but the dirpath is not in zipfile
who can tell me?

May 19 '06 #2
pac wrote:
Suppose you have a set of files in a directory c:\a\b and some
additional
files in c:\a\b\subdir. Using a Python script, you would
like to make a Windows-readable archive (.zip) that preserves this
directory structure, and where the root directory of the archive is
c:\a\b. In other words, all the files from c:\a\b appear in the
archive
without a path prefix, and all the files in c:\a\b\subdir have a path
prefix of \subdir.

This looks like it should be easy with module zipfile and the handy
function os.walk. Create a zip file, call os.walk, and add the files
to
the archive like so:

import os
import zipfile

z =
zipfile.ZipFile(r"c:\a\b\myzip.zip",mode="w",compr ession=zipfile.ZIP_DEFLATED)

for dirpath,dirs,files in os.walk(r"c:\a\b"):
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z.write(a_path) # Change, see below
z.close()
(Aside: be careful not to use tabs when posting. I suspect the f-bot
will be here to tell you that the above code doesn't work.)
Some experimentation suggests that Windows does not like any filename
in the
archive that begins with either a drive designator like c:, or has a
path containing
a leading slash like "\a\b\afile.txt". Relative paths like
"subdir\afile.txt" are
okay, and cause the desired behavior when the archive is extracted,
e.g., a new directory subdir is created and afile.txt is placed in it.

Since the method ZipFile.write needs a valid pathname for each file,
the correct
solution to the original problem entails messing around with the OS's
current
working directory.
ZipFile.write takes an optional second argument for the archive
filename. You could have done something like this (untested):

for dirpath,dirs,files in os.walk(r"c:\a\b"):
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z_path = a_path[7:] # or whatever
z.write(a_path,z_path)
z.close()

And maybe use a little helper function instead of the string slice to
make it more robust (it violates DRY, and I'm not happy to assume the
dirpath returned by os.walk has exactly the same prefix as the
argument).
Position the CWD in the desired base directory of
the archive,
add the files to the archive using their relative pathnames, and put
the CWD back
where it was when you started:


This may be the best way anyways, unless you have some reason to not
change the current directory.
Carl Banks

May 19 '06 #3
"pac" <pa*@fernside.com> wrote:
I'm preparing to distribute a Windows XP Python program and some
ancillary files,
and I wanted to put everything in a .ZIP archive. It proved to be
inordinately
difficult and I thought I would post my solution here. Is there a
better one?


heresy maybe, but I use Ant to do such things (with my Perl projects):
http://ant.apache.org/

--
John MexIT: http://johnbokma.com/mexit/
personal page: http://johnbokma.com/
Experienced programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
May 19 '06 #4
my code can work, like below:

import os
import zipfile
z =
zipfile.ZipFile(r"c:\text.zip",mode="w",compressio n=zipfile.ZIP_DEFLATED)
cwd = os.getcwd()
try:
for dirpath,dirs,files in os.walk(cwd):
for file in files:
z_path = os.path.join(dirpath,file)
z.write(z_path)
z.close()
finally:
if z:
z.close()

that is true
but the archive include the absolute path .
can you give me a way to build it with relative path.

May 19 '06 #5
aha
we want to do it with python
don't use ant

May 19 '06 #6
"softwindow" <so********@gmail.com> wrote:
aha
we want to do it with python
don't use ant


:-D

I want to do a lot with Perl, but sometimes it's better to use the right
tool for the job. And I think that Ant is better at for what I use it
compared to a home brew tool I could make. Be careful with "Not Invented
Here".

--
John MexIT: http://johnbokma.com/mexit/
personal page: http://johnbokma.com/
Experienced programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
May 19 '06 #7
Carl Banks is right

May 19 '06 #8
aha
now it's right like this:

import os
import zipfile
z =
zipfile.ZipFile(r"c:\text.zip",mode="w",compressio n=zipfile.ZIP_DEFLATED)
cwd = os.getcwd()
try:
for dirpath,dirs,files in os.walk(cwd):
for file in files:
z_path = os.path.join(dirpath,file)
start = cwd.rfind(os.sep)+1
z.write(z_path,z_path[start:])
z.close()
finally:
if z:
z.close()

May 19 '06 #9
import os
import zipfile
z =
zipfile.ZipFile(r"c:\text.zip",mode="w",compressio n=zipfile.ZIP_DEFLATED)
cwd = os.getcwd()
try:
for dirpath,dirs,files in os.walk(cwd):
for file in files:
z_path = os.path.join(dirpath,file)
start = cwd.rfind(os.sep)+1
z.write(z_path,z_path[start:])
z.close()
finally:
if z:
z.close()
*********************
can work

May 19 '06 #10
"softwindow" <so********@gmail.com> wrote:
Carl Banks is right


Did he write to check out:
http://groups.google.com/support/bin...y?answer=14213 ?

Why didn't you do so?

--
John MexIT: http://johnbokma.com/mexit/
personal page: http://johnbokma.com/
Experienced programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
May 19 '06 #11
On 2006-05-19, softwindow <so********@gmail.com> wrote:
Carl Banks is right


That would be valuable information if we know what he was right
about.

--
Grant Edwards grante Yow! Bo Derek ruined
at my life!
visi.com
May 19 '06 #12
pac wrote:
I'm preparing to distribute a Windows XP Python program and some
ancillary files,
and I wanted to put everything in a .ZIP archive. It proved to be
inordinately
difficult and I thought I would post my solution here. Is there a
better one?

Suppose you have a set of files in a directory c:\a\b and some
additional
files in c:\a\b\subdir. Using a Python script, you would
like to make a Windows-readable archive (.zip) that preserves this
directory structure, and where the root directory of the archive is
c:\a\b. In other words, all the files from c:\a\b appear in the
archive
without a path prefix, and all the files in c:\a\b\subdir have a path
prefix of \subdir.

This looks like it should be easy with module zipfile and the handy
function os.walk. Create a zip file, call os.walk, and add the files
to
the archive like so:

import os
import zipfile

z =
zipfile.ZipFile(r"c:\a\b\myzip.zip",mode="w",compr ession=zipfile.ZIP_DEFLATED)

for dirpath,dirs,files in os.walk(r"c:\a\b"):
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z.write(a_path) # Change, see below
z.close()

This creates an archive that can be read by WinZip or by another Python
script
that uses zipfile. But when you try to view it with the Windows
compressed folder
viewer it will appear empty. If you try to extract the files anyway
(because
you know they are really there), you get a Windows Security Warning and
XP
refuses to decompress the folder - XP is apparently afraid it might be
bird flu
or something.

If you change the line marked #Change to "z.write(a_path,file)",
explicitly naming
each file, now the compressed folder viewer will show all the files in
the archive.
XP will not treat it like a virus and it will extract the files.
However, the
archive does not contain a subdirectory; all the files are in a single
directory.

Some experimentation suggests that Windows does not like any filename
in the
archive that begins with either a drive designator like c:, or has a
path containing
a leading slash like "\a\b\afile.txt". Relative paths like
"subdir\afile.txt" are
okay, and cause the desired behavior when the archive is extracted,
e.g., a new directory subdir is created and afile.txt is placed in it.

Since the method ZipFile.write needs a valid pathname for each file,
the correct
solution to the original problem entails messing around with the OS's
current
working directory. Position the CWD in the desired base directory of
the archive,
add the files to the archive using their relative pathnames, and put
the CWD back
where it was when you started:

import os
import zipfile

z =
zipfile.ZipFile(r"c:\a\b\myzip.zip",mode="w",compr ession=zipfile.ZIP_DEFLATED)

cwd = os.getcwd()
os.chdir(base_dir)
try:
for dirpath,dirs,files in os.walk(''): # This starts the walk at
the CWD
for a_file in files:
a_path = os.path.join(dirpath,a_file)
z.write(a_path,a_path) # Can the second argument be
omitted?
z.close()
finally:
os.chdir(cwd)

This produces an archive that can be extracted by Windows XP using its
built-in
capability, by WinZip, or by another Python script. Now that I have
the solution it
seems to make sense, but it wasn't at all obvious when I started.

Paul Cornelius

Others have addressed your specific question, I wanted to make a
more general suggestion.

You should really take a look at Inno Installer and py2exe combination
for creating .zip library and Windows distribution. I PROMISE it will
be worth your time on future projects. Rolling your own installer will
take much more time/effort over the long haul.

-Larry Bates
May 19 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Jonathan Heath | last post by:
Hi all, I have created an ASP script that enters data into an Access Database. My problem is that I'd like this script to run when the computer is shutdown or the user logs off. I think...
7
by: bob | last post by:
I haven't used Visual Studio (2003) in several months. I fired it up and tried to create a new C# class library project. Nothing happens. Nothing appears in the Solution Explorer and nothing...
1
by: JMMB | last post by:
The <script> tags work in a htm page, but when I convert it to .aspx page, it stops working? I get a IE script error. What might be the mistake here? thanks, <HTML> <HEAD> <TITLE> Teste...
5
by: Brian Henry | last post by:
I have this script Dim query As New ManagementObjectSearcher("Select * from Select * from Win32_Product") Debug.Write(query.Get().Count) For Each mo As ManagementObject In query.Get ...
4
by: aramsey | last post by:
I have a javascript program that works fine under Firefox and on IE when running XP, but is having a problem with IE running under Windows 2000 Pro. On my personal XP development machine I have...
6
by: sam | last post by:
Hi, I want to compile and test php script in my pc without using internet or web site which is online ? Do you have any idea about it? It is possible to do that ?
48
by: Nathan Sokalski | last post by:
Ever since I found out that they didn't give us a way to install both IE6 and IE7 on the same machine, I have been more frustrated and annoyed with Microsoft than I ever have been with any company...
1
by: ScriptPepe | last post by:
Hello Everybody. A pleasure to be here. I need a script for reinitiate my system . Actually I have four systems (all the same xp pro). Manually My Pc - properties - advanced options -...
4
by: Randy Webb | last post by:
This post was originally made in microsoft.public.scripting.jscript by Michael Harris and I am reposting it here for the people who don't/can't subscribe to the microsoft groups. The original...
20
drhowarddrfine
by: drhowarddrfine | last post by:
I have a web application that will generate a web page and tuck it in a top secret location on the server. I need a Windows XP box to be able to run a program in the background to check to see if...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.