![]() |
deleting files in program files directory - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: deleting files in program files directory (/thread-42614.html) |
deleting files in program files directory - RRADC - Aug-16-2024 Thanks for reading my post, I'm trying to create script in python that will delete all files in a directory with admin rights for the python script I do have admin rights for my computer but I can't make adjustments to the C:\Program Files (x86)\Microsoft\ directory. As of now, every single time I reboot my work computer microsoft keeps changing the default app for http https htm html to edge, so I have to reset it at boot up. Then I have to check the contents of the Microsoft directory delete all the files if it's been re-installed. I hope to write a script that will delete all the files in C:\Program Files (x86)\Microsoft\ directory and then change the default apps for http https htm html to from edge to chrome. #import os #import glob #files = glob.glob('C:\Program Files (x86)\Microsoft\*') #for f in files: # os.remove(f) import os import shutil for root, dirs, files in os.walk('C:\Program Files (x86)\Microsoft'): for f in files: os.unlink(os.path.join(root, f)) for d in dirs: shutil.rmtree(os.path.join(root, d))both methods above give me this error I'm new to python so any help/guidance would be helpful, thanks
RE: deleting files in program files directory - snippsat - Aug-17-2024 Windows doesn't grant administrative privileges to scripts by default. If run cmd as Administrator the run python script it will work. There are packages that deal with this eg pyuac Teset work. import os, time import pyuac file_path = r'C:\Program Files (x86)\game\pong – Kopi.exe' if not pyuac.isUserAdmin(): pyuac.runAsAdmin() os.remove(file_path)Do not do this when use a file path,because of escape characters. # No 'C:\Program Files (x86)\Microsoft' # Ok r'C:\Program Files (x86)\Microsoft' 'C:/Program Files (x86)/Microsoft' RE: deleting files in program files directory - RRADC - Aug-19-2024 Thanks, I did a pip install of pyuac, however I get an error D:\python>py FFdelete.py File "D:\python\FFdelete.py", line 12 file_path = r'C:\Program Files (x86)\Microsoft\' ^ SyntaxError: unterminated string literal (detected at line 12) and line 12 = file_path = r'C:\Program Files (x86)\Microsoft\' I tried the above and using double quotes with the r inside the quotes as well. I found I had to use \ so the path is file_path = "C:\\Program Files (x86)\\Microsoft\\" But then I get this error PermissionError: [WinError 5] Access is denied: 'C:\\Program Files (x86)\\Microsoft\\' RE: deleting files in program files directory - deanhystad - Aug-19-2024 There is no need for trailing backslash, and you cannot have a single backslash at the end of a python str literal, raw or not. RE: deleting files in program files directory - snippsat - Aug-19-2024 Also a advice use pathlib Example. from pathlib import Path, PurePath import os folder_path = r'C:\Program Files (x86)\Microsoft' for file_path in Path(folder_path).rglob('*'): if file_path.is_file(): #print(file_path) if 'url_sample.csv' in file_path.parts: print(f'File <{file_path}> is deleted') os.remove(file_path) As mention running without administrative privileges will not work with these system folders.Here run shell that i use cmder with administrative privileges,then it works.
RE: deleting files in program files directory - RRADC - Aug-20-2024 Oh, lookie there, I learned a new thing each today with python! Thanks However, I did run this as is and while it did eliminate the errors but no directories or files where deleted. I ran this version multiple times. I went to the directory C:\Program Files (x86)\Microsoft and changed the permissions to the Microsoft directory. Then it started throwing the permission error again. For some reason, that directory keeps defaulting to read only, but I can delete the files manually. Something D:\python>py FFdelete.py C:\Program Files (x86)\Microsoft\usb1.spec C:\Program Files (x86)\Microsoft\New folder\QUO-186042-0 AMPL-125S1G6 for Abbott Diabetes Care.pdf D:\python>py FFdelete.py C:\Program Files (x86)\Microsoft\usb1.spec C:\Program Files (x86)\Microsoft\New folder\QUO-186042-0 AMPL-125S1G6 for Abbott Diabetes Care.pdf D:\python>py FFdelete.py C:\Program Files (x86)\Microsoft\usb1.spec C:\Program Files (x86)\Microsoft\New folder\QUO-186042-0 AMPL-125S1G6 for ADC.pdf D:\python>py FFdelete.py C:\Program Files (x86)\Microsoft\usb1.spec Traceback (most recent call last): File "D:\python\FFdelete.py", line 24, in <module> os.remove(file_path) PermissionError: [WinError 5] Access is denied: 'C:\\Program Files (x86)\\Microsoft\\usb1.spec' These files I put there to test with. Probably another dumb question but what does this "if 'url_sample.csv'" do for this script? RE: deleting files in program files directory - snippsat - Aug-21-2024 (Aug-20-2024, 01:31 PM)RRADC Wrote: Probably another dumb question but what does this "if 'url_sample.csv'" do for this script?I just put in a random file to test delete from this system folder. If i should delete folders eg Temp i would do it like this,see that i do not use .join() as pathlib always give absolute path.Also as info this code dos recursive search of all file/folders,so it work the same as os.walk . from pathlib import Path, PurePath import os import shutil folder_path = r'C:\Program Files (x86)\Microsoft' for file_path in Path(folder_path).rglob('*'): if file_path.is_dir(): if 'Temp' in file_path.parts: print(file_path) shutil.rmtree(file_path)So it work fine and delete Temp folder with all content.
|