I have read this post and I can't meet my requirements.
My Folder structure is:
_TEMPLATE_
|_ _TEMPLATE_SUBFOLDER1
| |_ _TEMPLATE_SUB_SUBFOLDER1
| | |_ _TEMPLATE_FILE11.txt
| | |_ _TEMPLATE_FILE12.xml
| |_ _TEMPLATE_SUB_SUBFOLDER2
| | |_ _TEMPLATE_FILE21.txt
| | |_ _TEMPLATE_FILE22.xml
| |_ TEMPLATE_SUB_SUBFOLDER3
|_ _TEMPLATE_SUBFOLDER2
|_TEMPLATE_FILE3.xml
I want to replace the _TEMPLATE_
to desired name
for ex. Stores
so result will be
Stores
|_ StoresSUBFOLDER1
| |_ StoresSUB_SUBFOLDER1
| | |_ StoresFILE11.txt
| | |_ StoresFILE12.xml
| |_ StoresSUB_SUBFOLDER2
| | |_ StoresFILE21.txt
| | |_ StoresFILE22.xml
| |_ StoresSUB_SUBFOLDER3
|_ StoresSUBFOLDER2
|StoresFILE3.xml
I searched web there is option to traverse only files. and none of them go recursive rename Thank you.