1 import os 2 def release(obj=r'C:ProgramData est'): 3 try: 4 if os.path.isfile(obj): 5 return 6 cmd = 'cacls ' + obj + '*.* /g everyone:f' 7 print(cmd) 8 # os.system(cmd) 9 p = os.popen(cmd, "w") # auto confirm 10 p.write('y ') 11 subobjs = os.path.os.listdir(obj) 12 if subobjs == []: 13 return 14 else: 15 for temp in subobjs: 16 tempobj = os.path.join(obj, temp) 17 release(tempobj) 18 except Exception as e: 19 print(e)