Hey,
Just a quick one, does robotask not support a wildcard in the if statement when it's looking in string to match something? I made a task to put certain files in specific folders based on filename, but the files would never move with "*" in the name. Once I replaced the "*" with a variable for the file date it worked. I included a screenshot of the if statement with the filedate variable, before it had an asterisk there.
Wildcards in If statement
Re: Wildcards in If statement
The "If..Then" action does not use wildcard characters as file mask characters. "*" is just an asterisk, and "?" is just a question mark.
The "If..Then" action compares (in your case) just strings, not file names.
If you need a more complex check, you can use regular expressions. For example RegExp Match action
The "If..Then" action compares (in your case) just strings, not file names.
If you need a more complex check, you can use regular expressions. For example RegExp Match action
Oleg Yershov