mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 17:09:28 +00:00
11 lines
287 B
Python
11 lines
287 B
Python
import os
|
|
|
|
ReleaseDirectory = "Release"
|
|
|
|
for root, dirs, files in os.walk(ReleaseDirectory):
|
|
for file in files:
|
|
if file.endswith(".pdb") or file.endswith(".xml"):
|
|
path = os.path.join(root, file)
|
|
print "delete file:" + path
|
|
os.remove(path)
|