-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_repo.py
31 lines (27 loc) · 960 Bytes
/
delete_repo.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
import os
import shutil
import time
def force_delete_directory(path):
max_attempts = 3
attempt = 0
while attempt < max_attempts:
try:
# Remove read-only flags
for root, dirs, files in os.walk(path):
for dir in dirs:
os.chmod(os.path.join(root, dir), 0o777)
for file in files:
os.chmod(os.path.join(root, file), 0o777)
# Delete the directory
shutil.rmtree(path)
print(f"Successfully deleted {path}")
return True
except Exception as e:
print(f"Attempt {attempt + 1} failed: {str(e)}")
attempt += 1
time.sleep(1) # Wait a second before retrying
print(f"Failed to delete {path} after {max_attempts} attempts")
return False
# Usage
path_to_delete = r"D:\development\repos\MyCSharpProject"
force_delete_directory(path_to_delete)