Delete stock *.py apps from M5S-Core
-
Most of these are useless, after first test.
How can I delete them, or are they embedded? -
You could use a python commands in REPL via serial port connection or execute block in UiFlow. These .py files should be placed in /apps folder in flash
import os # change directory and delete os.chdir("/apps") os.remove("example.py") # ewentually delete with full path os.remove("/apps/example.py") # print file list of actual directory print( os.listdir() )
-
@robalstona said in Delete stock *.py apps from M5S-Core:
import os
change directory and delete
os.chdir("/apps")
os.remove("example.py")ewentually delete with full path
os.remove("/apps/example.py")
print file list of actual directory
print( os.listdir() )
Thanks. Will give this a try.
-
Nope...