Multiple zip folders from diff folders with own name+date

Hi,

can someone help me with enhancing this code in order to meet the subject demands?

This is the code I already have:
@dironly
Copy ZIP FORCE TO="D:" CREATEFOLDER="{allfile} {date|yyyy-MM-dd} {time|HH-mm-ss}.zip"

This only zips, renames and adds date stamp to first selected folder and zips this folder and all other selected folders inside it, but doesn't place each seperate folder in a different zip.

Try Copy ZIP=single ... instead.

Don,

with your input, the command makes indeed two seperate folders and copies the names... but doesn' t add the dates.

[quote="Hawk*"]Don,

with your input, the command makes indeed two seperate folders and copies the names... but doesn' t add the dates.[/quote]

This is working:

select all
rename * to "* {date|yyyy-MM-dd} {time|HH-mm-ss}"
select all
@dironly
Copy ZIP=single FORCE TO="D:"

Oops, you maybe donĀ“t want the original folders to be renamed. You can add the line Undo Page, until someone comes up with a better tip.

I think this does what you want:

Copy ZIP FORCE TO="D:\" FILE="{file$}" CREATEFOLDER="{file$|noext} {date|yyyy-MM-dd} {time|HH-mm-ss}"

Thanks a lot guys, the latest post does the trick.

Cheers