Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wildcard filename
#1
Hello,

maybe somebody can help me with this...

I want a macro which opens a file after a specified pattern eg... ppp+ date of today . zip ( ppp_20081202.zip) and extracts the zipfile to a specified folder and also looks for ttt*.zip and extraxts those to a specified folder...

can anybody help me with this?

TIA!
#2
Look in floating toolbar, Enumerate files dialog. It supports * and gets all matching files. Then unzip each file.
Macro
Code:
Copy      Help
Dir d
foreach(d "c:\folder\ppp_*.zip" FE_Dir)
,str sPath=d.FileName(1)
,out sPath
,zip- sPath "c:\folder2"


Forum Jump:


Users browsing this thread: 1 Guest(s)