Python Forum
deleting files in program files directory
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
deleting files in program files directory
#1
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
Error:
D:\python>py FFdelete.py Traceback (most recent call last): File "D:\python\FFdelete.py", line 13, in <module> os.unlink(os.path.join(root, f)) PermissionError: [WinError 5] Access is denied: 'C:\\Program Files (x86)\\Microsoft\\usb1.spec'
I'm new to python so any help/guidance would be helpful, thanks
Reply
#2
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'
Reply
#3
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\\'
Reply
#4
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.
Reply
#5
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)
Output:
G:\div_code\reader_env λ python del_file.py File <C:\Program Files (x86)\Microsoft\EdgeUpdate\Download\url_sample.csv> is deleted Traceback (most recent call last): File "G:\div_code\reader_env\del_file.py", line 10, in <module> os.remove(file_path) PermissionError: [WinError 5] Ingen tilgang: 'C:\\Program Files (x86)\\Microsoft\\EdgeUpdate\\Download\\url_sample.csv
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.
Output:
G:\div_code\reader_env λ python del_file.py File <C:\Program Files (x86)\Microsoft\EdgeUpdate\Download\url_sample.csv> is deleted
Reply
#6
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?
Reply
#7
(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.
Output:
G:\div_code\reader_env λ python del_folders.py C:\Program Files (x86)\Microsoft\BingSvc\Temp C:\Program Files (x86)\Microsoft\Edge\Temp C:\Program Files (x86)\Microsoft\Edge\Temp\scoped_dir41564_1447529849
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Correct/proper way to create save files snakes 0 419 Mar-11-2025, 06:58 PM
Last Post: snakes
  Merge htm files with shutil library (TypeError: 'module' object is not callable) Melcu54 7 3,271 Mar-09-2025, 04:25 PM
Last Post: Pedroski55
  how to download large files faster? kucingkembar 3 732 Feb-20-2025, 06:57 PM
Last Post: snippsat
  Inserting Python Buttons into KV Files edand19941 3 452 Feb-19-2025, 07:44 PM
Last Post: buran
Question [SOLVED] Right way to open files with different encodings? Winfried 3 3,781 Jan-18-2025, 02:19 PM
Last Post: Winfried
  Applications config files / Best practices aecordoba 2 1,764 Oct-23-2024, 12:56 PM
Last Post: aecordoba
  Compare 2 files for duplicates and save the differences cubangt 2 909 Sep-12-2024, 03:55 PM
Last Post: cubangt
  Convert Xls files into Csv in on premises sharpoint Andrew_andy9642 3 944 Aug-30-2024, 06:41 PM
Last Post: deanhystad
  I'm trying to merge 2 .csv files with no joy! Sick_Stigma 3 899 Aug-03-2024, 03:20 PM
Last Post: mariadsouza362
  Class test : good way to split methods into several files paul18fr 5 3,434 Jul-17-2024, 11:12 AM
Last Post: felixandrea

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020