Open yangsuiyun opened 5 years ago
If we want to change a folder permission to 777 In python 2:
os.chmod('folder', 0777)
In python 3:
os.chmod('folder', 0O777)
If we want to change a folder permission to 777 In python 2:
In python 3: