Hi,
I have an appdameon python code that downloads files from a computer on the same network as my Raspberry Pi running HASSIO using “paramiko”.
The code creats a new folder if it doesn’t exist at the destination folder.
Usually my destination folder is “/homeassistant/www/data
”, but I accidentally set it to “test
” and startet the code.
My questions is: Where and how can I locate the “test
” folder ?
I tried to find it with the “File Editor” Add-on, but I don’t know where to look.
That is a part of my code:
local_destination = "test"
if not os.path.exists(local_destination):
os.makedirs(local_destination)
print(f"Directory '{local_destination}' created.")
In the appdameon log I get:
Directory 'test' created.
“File editor” Add-on:
Not sure if it shows all directories.