Please help me solve my problem. I created a custom directory inside the standard directory (File.DirInternal).
How can I get a list of files from this custom directory - "Sound" ?
The File.ListFiles command does not support specifying internal folders.
How can I save a file inside the SOUND folder?
File.MakeDir(File.DirInternal,"Sound"):
File.MakeDir(File.DirInternal,"Sound")
B4X:
allFiles = File.ListFiles(File.DirInternal)
For Each fName As String In allFiles
If fName.ToLowerCase.EndsWith(".pcm") Then
How can I save a file inside the SOUND folder?
B4X:
saveFile = File.OpenOutput(File.DirInternal, fName, False)