| View previous topic :: View next topic |
| Author |
Message |
Mike Lee
Joined: 17 Mar 2007 Posts: 2
|
Posted: Thu Aug 09, 2007 10:15 pm Post subject: File processing in batch file versus executable |
|
|
Simple question -
Why does this batch file process multiple files, yet when compiled into an executable it will only process 2 or 3 files.
for %%i in (%*) do exifiron -r %%i
Is there something simple I am overlooking?
Thanks for any input.
Mike |
|
| Back to top |
|
 |
|
|
Andry81
Joined: 16 Aug 2007 Posts: 1
|
Posted: Thu Aug 16, 2007 7:43 pm Post subject: |
|
|
I think this is bug-feature of compiler, cause "%*" doesn't affected by "@shift 1" command, which added to the begining of the compiled batch file.  |
|
| Back to top |
|
 |
|