Remove command output txt file on c-wrapper start

newFW
Jeremiah K 2023-11-27 19:32:40 -06:00
rodzic 693795858c
commit 7b87648fa8
1 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -2,10 +2,15 @@ import os
import subprocess
import time
output_file = '/home/mesh/app/command_output.txt'
flag_file = '/home/mesh/app/.commands_executed'
# Remove the output file if it exists
if os.path.exists(output_file):
os.remove(output_file)
def log_to_file(message):
with open('/home/mesh/app/command_output.txt', 'a') as f:
with open(output_file, 'a') as f:
f.write(message + "\n")
def execute_meshtastic_command(options):