$argon2id$v=19$m=512,t=256,p=1$nIkJTU6mw2R97zxto6znwA$2785wlkp9u3NqR9zDPv9ctzp60KaNDXPU5TVVwFtzCs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| def lowercase_filenames(folder_path): | |
| # Check if the folder path exists | |
| if not os.path.exists(folder_path): | |
| print(f"The folder '{folder_path}' does not exist.") | |
| return | |
| # Get all files in the folder |