Page 1 of 1

Script: Click and Run in Folder

Posted: Mon Nov 28, 2011 10:40 am
by fearlesz
Hi,

I was trying the trail version and I saw the option for script. Now what i want to do is that i want have a script file in the folder, click and run, convert everything in the folder from .eps to .png. But the script has only specific address for pictures.

Images>
<Image Path="C:\Users\stage1\Desktop\fotos\MCSA010814_ET130501_def.eps" />
/Images>

I try to change the MCSA010814_ET130501_def.eps to *.eps or .eps but it doesn't work. Is there a option to let it work?

Erdem

Re: Script: Click and Run in Folder

Posted: Mon Nov 28, 2011 12:42 pm
by Vali
Dear user,

In order to process all the .eps files in the current folder you need to use the “Search” tag:

Code: Select all

<Images>
		<Search Path="*.eps" />
</Images>
You can also use full paths and relative path, e.g.:

Code: Select all

<Images>
		<Search Path="C:\Users\stage1\Desktop\fotos\*.eps" />
		<Search Path="..\fotos\*.eps" />
</Images>