How can I rename all zoom MP4 files by the folder name?
1. My Zoom recordings are saved automatically with the name of the meeting on the folder name , which is great. But the inner file of mp4 inside that folder does not have that name.
Zoom proposes to rename one by one files after conversions.
I am looking make the process automated and for mp4 to be created with the name of the meeting as well.
2. The multiple meetings that I already had, have this structure, so I am looking for a free and easy “renamer” which will rename hundreds of folders with zoom_0.mp4 to meaningful name by the folder the file is in , automatically.
Solution:
Create txt file and change it to PS1 file at the end
https://www.howto-outlook.com/howto/powershell-scripts-faq-tips-and-tricks.htm
Set inside text (change the folder path if needed):
Get-ChildItem ‘D:\Google Drive\Eezy\Meetings’ -Filter zoom_0.mp4 -Recurse | Rename-Item -NewName { $_.Directory.Name+’_0.mp4′}
Get-ChildItem ‘D:\Google Drive\Eezy\Meetings’ -Filter zoom_1.mp4 -Recurse | Rename-Item -NewName { $_.Directory.Name+’_1.mp4′}
Get-ChildItem ‘D:\Google Drive\Eezy\Meetings’ -Filter zoom_2.mp4 -Recurse | Rename-Item -NewName { $_.Directory.Name+’_2.mp4′}
Get-ChildItem *.mp4 -Recurse | Move-Item -Destination ‘D:\Google Drive\Eezy\Meetings’