mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
34 lines
848 B
Python
Executable File
34 lines
848 B
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# Delete project files for all BTstack embedded examples in local port/esp32 folder
|
|
|
|
import os
|
|
import shutil
|
|
import sys
|
|
import time
|
|
import subprocess
|
|
|
|
# get script path
|
|
script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
|
|
|
|
# path to examples
|
|
examples_embedded = script_path + "/../../example/"
|
|
|
|
# path to port/esp32
|
|
apps_btstack = script_path + "/"
|
|
|
|
print("Deleting example in local folder")
|
|
for file in os.listdir(examples_embedded):
|
|
if not file.endswith(".c"):
|
|
continue
|
|
example = file[:-2]
|
|
apps_folder = apps_btstack + "example/" + example + "/"
|
|
if os.path.exists(apps_folder):
|
|
shutil.rmtree(apps_folder)
|
|
print("- %s" % example)
|
|
|
|
print("Deleting example folder")
|
|
examples_folder = apps_btstack + "/example"
|
|
if os.path.exists(examples_folder):
|
|
shutil.rmtree(examples_folder)
|