How to rename all subfolder names?
Moderators: Hacker, petermad, Stefan2, white
How to rename all subfolder names?
my problem is not "changing filenames". I want to fix the folder names.
I want to change the non-English character letters in 34,000 files in 2400 folders to English characters.
I can see all the files in the folder I want to fix with the "CTRL+B" key combination. But that doesn't give me a chance to fix subfolders.
It is not possible for me to deal with 2400 folders one by one.
what is the way to fix all subfolder names?
I want to change the non-English character letters in 34,000 files in 2400 folders to English characters.
I can see all the files in the folder I want to fix with the "CTRL+B" key combination. But that doesn't give me a chance to fix subfolders.
It is not possible for me to deal with 2400 folders one by one.
what is the way to fix all subfolder names?
Re: How to rename all subfolder names?
Why not?bart1969 wrote: 2022-06-30, 15:02 UTC
It is not possible for me to deal with 2400 folders one by one.
One night and done.
You can create a database (text file with oldName | newName) and search for a powershell script to execute the renaming.
(but start renaming with deepest sub folder)
Or do you want something like changing all ê to e ?
Re: How to rename all subfolder names?
Use Search and then Feed to listbox.
Re: How to rename all subfolder names?
There are 6 letters in my folders that are not found in English. Ç, Ğ, İ, Ö, Ş, Ü.Stefan2 wrote: 2022-06-30, 15:10 UTCWhy not?bart1969 wrote: 2022-06-30, 15:02 UTC
It is not possible for me to deal with 2400 folders one by one.
One night and done.
You can create a database (text file with oldName | newName) and search for a powershell script to execute the renaming.
(but start renaming with deepest sub folder)
Or do you want something like changing all ê to e ?
I want to replace these letters with English similar letters.
I solved the problem with the files. Only subfolders remained.
Re: How to rename all subfolder names?
http://www.den4b.com/products/renamer
I prefer this FREE for non-commercial use rename soft if the rename task is complicated.
It is easy to use and flexible. From simple replace to script program renaming, save me hell lots of time.
I prefer this FREE for non-commercial use rename soft if the rename task is complicated.
It is easy to use and flexible. From simple replace to script program renaming, save me hell lots of time.
Re: How to rename all subfolder names?
Search and find folders you want to rename and:
in Search For enter in Replace with :
You can build a complete list and save it for later use.
You can also give a look to translit wdx.
in Search For enter
Code: Select all
Ç|Ğ|İ|Ö|Ş|Ü
Code: Select all
C|G|I|O|S|U
You can also give a look to translit wdx.
Re: How to rename all subfolder names?
Important notice: use reverse by name order for search results, so deeper folders go first, otherwise when you rename high levels folders you get deeper ones inaccesible.
Re: How to rename all subfolder names?
Good point gral if you want, you can use this small script to count depth of a file when using WinScriptsAdv_wdx.:
-
(un-optimal)Scrript\Depth.vbs
Code: Select all
content = Len( filename ) - Len(Replace(filename,"\", "") )
- Inside option.ini add |Depth at end of ActiveScripts and then add Depth section
Code: Select all
[Script] ActiveScripts=...|Depth ' ' [Depth] Script=Depth.vbs content=Depth extensions=* FoldersPaths=1
Re: How to rename all subfolder names?
2nsp
There is the plugin FileName_ChrCount which provides such a field (among others).
Regards
Dalai
There is the plugin FileName_ChrCount which provides such a field (among others).
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Re: How to rename all subfolder names?
Thank you. Problem solved.