Hi,
I'm attempting to rename .tql files within a directory tree to .sql. I'm currently trying to use this in windows command line:
for /R %f in (*.*) do REN *.tql *.sql
this for some reason i can't work out, it is not recursively going down the directory tree and executing the command to rename the files in each directory.
Any ideas??
Thanks in advance.
Mike