Android Question Creating an embedded directory...

tigrot

Well-Known Member
Licensed User
Longtime User
Hi everybody,
I have to create a directory tree:

B4X:
  If File.Exists(File.DirDefaultExternal,"/fotoaffissioni/invio/")=False Then File.MakeDir(File.DirDefaultExternal,"/fotoaffissioni/invio/")

This code return no error but /fotoaffissioni/invio/ is not created.
I previously created /fotoaffissioni/ with this code:

B4X:
 If File.Exists(File.DirDefaultExternal,"/fotoaffissioni/")=False Then File.MakeDir(File.DirDefaultExternal,"/fotoaffissioni/")


and the directory is there...

Has anybody some hint for me?

Thank you in advance

Mauro
 
Top