Hello,
I want to rename all files in a folder (with subfolders) from *.* to *.*.deploy...for example from:
- test.dll
to
- test.dll.deploy
and this for all files in a folder and the subfolders.
Thanks for an answer,
Peter
Hello,
I want to rename all files in a folder (with subfolders) from *.* to *.*.deploy...for example from:
- test.dll
to
- test.dll.deploy
and this for all files in a folder and the subfolders.
Thanks for an answer,
Peter
Hi Peter,
You will need to define a Fileset and use the File Iterator to iterate over all the files in the directory, then use the "Rename File or Directory" action to rename the files. Attached is a sample project which demonstrates this.
Regards,
Paul.
RenameFiles.fbz5 (2.331 KB)ok thanks! it works...
Peter