for example this is a small c script i found here
#include <windows.h>
#include <ShlObj.h>
const char folderpath[] = "C:\\Your-Folder";
int main() {
SHChangeNotify(SHCNE_UPDATEITEM, SHCNF_PATH, folderPath, NULL);
}
how can write something similar in python?