PDA

View Full Version : Aligning ZIPs with folders


chrisjj
05-Jul-2008, 05:10 PM
How do I do this, please?

Michael Bulgrien
07-Jul-2008, 12:37 AM
Just treat the zip file as if it were a folder. It works with the integrated Windows Explorer context menu options as well as from within the BC3 GUI.

chrisjj
07-Jul-2008, 03:46 AM
How do I "treat" zips as folders when I compare a folder of zips with a folder of folders, to get alignment?

Michael Bulgrien
07-Jul-2008, 08:01 AM
Try using a RegEx Alignment Override:

http://screencast.com/t/yIVWRboa

chrisjj
07-Jul-2008, 10:51 AM
Excellent - thanks Michael.

For the (text) record, that solution is:

Align left file (or folder):
(.*)
with right file (or folder):
$1.zip

Craig
07-Jul-2008, 10:53 AM
The non-regular expression case would just be:
Align left file (or folder):
*
with right file (or folder):
*.zip

chrisjj
07-Jul-2008, 11:21 AM
Thanks. Is there any advantage to the RE version?

Michael Bulgrien
07-Jul-2008, 11:46 AM
Not in this case.
RegEx offers more flexibility for more complex alignments.

chrisjj
07-Jul-2008, 11:53 AM
Thanks.