Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What color is grass?:
What is the seventh word in this sentence?:
What is five minus two (use the full word)?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Wisp
« on: May 20, 2017, 06:13:11 PM »

I thought the OP wanted to mass-rename files using regexps. Aww, I coded that all for nothing.
Posted by: GeN1e
« on: May 16, 2017, 08:52:19 PM »

Strictly speaking, unless you wish to make a copy of file with a different name, you don't even need to specify the destination's filename, this:

COPY_EXISTING_REGEXP ~sw1h0\([1-9]\).itm~ ~override~

is perfectly fine to do.
Posted by: Wisp
« on: May 13, 2017, 02:45:48 PM »

Coded.
Posted by: c4_angel
« on: May 12, 2017, 03:43:31 AM »

OK. Thank you.
Posted by: Mike1072
« on: May 11, 2017, 03:47:46 AM »

I don't think you can do it that way.

You could perform a COPY_EXISTING_REGEXP with BUT_ONLY to find the files and add them to an array.  Then you could loop through that, generating the output filenames and creating the clones with a COPY_EXISTING command.  (Edit: Or you could skip the array and do the same thing via an INNER_ACTION in the COPY_EXISTING_REGEXP.)
Posted by: c4_angel
« on: May 10, 2017, 05:06:58 PM »

Hello all!

Just for example:

COPY_EXISTING_REGEXP ~sw1h0\([1-9]\).itm~ ~override/sw2h0\1.itm~

is apparently a wrong expression.

What is the right one?

Thank you.