I'm sorry because I ask questions all the time
I have solved the last liver problem.
Now I have a question, is it possible to create a folder dynamically in the storage of my android with my App? In kivymd and python3.
Because I have already tried but on the computer, it works very well but on my android, the application does not even launch
Here is my test:
def rep(self):
dos=os.getenv('/') if platform == 'android' else os.path.expanduser("~")
dos1=dos+"/WanOffice"
try:
os.makedirs(dos1)
except OSError:
if not os.path.isdir(dos1):
Raise
If anyone has an idea, I thank them already