mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
10 lines
262 B
Python
10 lines
262 B
Python
import os
|
|
|
|
ReleaseDirectory = "Release"
|
|
|
|
for root, dirs, files in os.walk(ReleaseDirectory):
|
|
for file in files:
|
|
if file.endswith(".xml"):
|
|
path = os.path.join(root, file)
|
|
print "delete file:" + path
|
|
os.remove(path)
|