Python Forum

Full Version: Change icons of system
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
so im trying to write a python script that changes the icons of all the files in a spceific folder, how should i go about making this because i dint find any resource regarding this online
Python can't do anything like this by itself. You'll need a module to call the API for whatever operating system you're using. For instance in Windows 10 you need access to the WinAPI so there are modules like win32api and pywin32 that expose all the classes in WinAPI.