Hello all, I'm having problems creating a file in a hidden folder
I have created two hidden folders at runtime with the following code...
I then attempted to put .nomedia files in there... First one worked
The following failed:
Log
java.io.FileNotFoundException: /storage/emulated/0/App1/.emo/.nomedia: open failed: ENOENT (No such file or directory)..
Observations:
• Issue happens in Rapid Debug mode and persists even in Release mode.
Any help is appreciated, thank you.
I have created two hidden folders at runtime with the following code...
B4X:
File.MakeDir(File.DirRootExternal,"App1/.channels") 'Created successfully
File.MakeDir(File.DirRootExternal,"App1/.emo") 'Created successfully
I then attempted to put .nomedia files in there... First one worked
B4X:
File.WriteString(File.DirRootExternal,"App1/.channels/.nomedia","") 'Created successfully
The following failed:
B4X:
File.WriteString(File.DirRootExternal,"App1/.emo/.nomedia","") 'This line fails
Log
java.io.FileNotFoundException: /storage/emulated/0/App1/.emo/.nomedia: open failed: ENOENT (No such file or directory)..
Observations:
• Issue happens in Rapid Debug mode and persists even in Release mode.
Any help is appreciated, thank you.