Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a backup utility that zips all the files listed in a textfile. I am using MS ACCESS as my front-end and 7-zip for compression. Everytime i execute this command.

7zG.exe a c:\BAckup\backup.zip @c:\temp\tmpFileList.txt

All the files are compressed without its path. Is there a way to assign the path for each file? so that when backup.zip is extracted the files can easily be recognize what folder they belong.

Thanks

share|improve this question
And if you manage to incorporate paths in the zip file, use relative paths or you won't be able to restore them anywhere else but the orignal location. – pavium Sep 2 '09 at 8:10

3 Answers

The command-line program for 7-Zip is 7z or 7za. Here's a helpful post on the options available. The -r (recurse) option stores paths.

share|improve this answer
Thanks Vinay for the response.. But i cannot find 7za.exe in my 7-zip directory, also 7z.exe has 0 bytes. I used 7zG.exe because it displays a GUI progress bar rather than a DOS screen. The only problem is that its doesn't include the path where the file is located – Arnold Sep 2 '09 at 8:23

In this 7-zip forum thread, in which many people express their desire for this feature, 7-zip's developer Igor points to the FAQ question titled "How can I store full path of file in archive?" to achieve a similar outcome.

In short:

  • separate files by volume (one list for files on C:\, one for D:\, etc)
  • then for each volume's list of files,
    1. chdir to the root directory of the appropriate volume (eg, cd /d C:\)
    2. create a file listing with paths relative to the volume's root directory (eg, C:\Foo\Bar becomes Foo\Bar)
    3. perform 7z a archive.7z @filelist as before with this new file list
    4. when extracting with full paths, make sure to chdir to the appropriate volume's root directory first
share|improve this answer

Instead of the option a use option x, this will create the directories but only for extraction, not compression.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.