I was having problems to get a macro with ReplInFiles running and it took me a while to find out why.
This does not work
ReplInFiles "C:\temp\ultra" "*.txt" "a" "b"
This does:
ReplInFiles "C:\temp\ultra\" "*.txt" "a" "b"
Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.
// Append a backslash if it is missing at end of the directory string.
else if (sDirectory.match(/\\$/) == null) sDirectory += "\\";