Hi all,
I have some old DOS batch files that I would like to use some of the coding from, specifically a means for copying a small group of files into a larger group. From my batch example:
This would read in all the files with .ace in the name (several hundred), filter on their last two digits, and copy the corresponding n_ac_ file into a new directory. The larger and original group of ACE files are unique, but their snow counterparts are not (a plain Jane pattern of textures).
Adding batch files would probably work in some cases, but I fear that some systems or system utilities will flag a batch file as a trojan and fail to run it, and rather than load a set of pre-copied snow textures into SF (size matters) I would like to know if it's possible to script the above command line into SF.
One last question, and probably related to the above - if I write this or any other code in the trail version, can I send the resulting executable to my partner if she too has a trail copy installed to test?
TIA.
Cheers!
Marc
I have some old DOS batch files that I would like to use some of the coding from, specifically a means for copying a small group of files into a larger group. From my batch example:
Code:
for %%a in (*01.ace) do copy _snow01.ac_ SNOW\%%a /b /y for %%a in (*02.ace) do copy _snow02.ac_ SNOW\%%a /b /y for %%a in (*03.ace) do copy _snow03.ac_ SNOW\%%a /b /y for %%a in (*04.ace) do copy _snow04.ac_ SNOW\%%a /b /y
Adding batch files would probably work in some cases, but I fear that some systems or system utilities will flag a batch file as a trojan and fail to run it, and rather than load a set of pre-copied snow textures into SF (size matters) I would like to know if it's possible to script the above command line into SF.
One last question, and probably related to the above - if I write this or any other code in the trail version, can I send the resulting executable to my partner if she too has a trail copy installed to test?
TIA.

Cheers!
Marc
Comment