-
Notifications
You must be signed in to change notification settings - Fork 0
/
SYS-PURGE.TMP.py
38 lines (38 loc) · 2.08 KB
/
SYS-PURGE.TMP.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#-- !/usr/bin/env python3
#-- -*- coding: utf-8 -*-
#--
#-- ************************************************************************************************************:
#-- ********************************************* PURGE TEMP DIR ***********************************************:
#-- ************************************************************************************************************:
#-- Author: JBALLARD (JEB) :
#-- Date: 2023.3.23 :
#-- Script: SYS-PURGE.TMP.py :
#-- Purpose: A python script that purges the contents with the Windows Temp Directory. :
#-- Class: python -m pip install shutil :
#-- Version: 1.0 :
#-- ************************************************************************************************************:
#-- ************************************************************************************************************:
#--
#-- ********************************************************:
#-- DEFINE PARAMS, CONSTANTS, CONFIG PATHS, CLASSES, & LIBS :
#-- ********************************************************:
import shutil
import os
#--
#-- RETRIEVE PATH TO TEMP DIR:
temp_dir = os.environ["temp"]
#--
#-- PURGE CONTENTS WITHIN TEMP DIR:
for file in os.listdir(temp_dir):
file_path = os.path.join(temp_dir, file)
try:
if os.path.isfile(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path)
except Exception as e:
print(e)
#--
#-- ********************************************************:
#-- END OF PYTHON SCRIPT :
#-- ********************************************************: