Italian [B4A] Registratore (errore nella registrazione) - LucaMs (first post)    Feb 14, 2024   (2 reactions) Creala.
File.MakeDir(File.DirInternal, "MyNewFolder") B4J Question Inno Setup Standalone Packager Problem (SOLVED) - aeric (first post)    Oct 31, 2023   (1 reaction) If you use this, during development (debug), it is referring to Objects folder. In production (released), it is referring to bin folder. You may want to use File.MakeDir if the folder is not existed. File.MakeDir(File.DirApp, "file.txt") Edit: But it is recommended to use Xui.DefaultFolder because B4A Question Transition to OS 12.0-API 31 - Brian Dean (first post)    Oct 14, 2023 Nobody can "translate" this code to work with sdk 31. The closest equivalent to this statement ...
File.MakeDir(File.DirRootExternal, "MeApplication")
. . . that will work with curent Android version is . . .
File.MakeDir(xui.DefaultFolder, "MeApplication")
This will create the folder in int B4A Question [Solved] Makedir failure - agraham (first post)    Nov 06, 2020   (1 reaction) MakeDir looks wrong. It probably 'seems' to work in the other app because the folder already exists. Try:
File.MakeDir(File.DirRootExternal, "ABT") B4A Question App compiles without error but doesn't start on device - agraham (first post)    Feb 05, 2022   (1 reaction) But you have! You've probably upped the target SDK number.As @asales indicates, this is the problem
File.MakeDir(File.DirRootExternal, "gliderlog")
You can no longer directly access the file system
If your app doesn't need to go in the Play Store you can keep the present behaviour by targeting SD B4J Question Application crash on httpjob response - Erel (first post)    Dec 31, 2023   (1 reaction) This error means that the temporary folder is inaccessible. You can explicitly set it to your app folder: File.MakeDir(File.DirApp, "temp") HttpUtils2Service.TempFolder = File.Combine(File.DirApp, "temp") B4A Question help needed: file.makedir - Zeev Goldstein    Jan 26, 2023 hi
i'm trying to create a directory on external storage
got the permission
on older versions of andriud it works
on version 13 it does not and no error is generated - it just ignores it...
targetSDK = 31
this is the code i use
File.MakeDir(File.DirRootExternal,"/DirName")
thanks B4A Question [Resolved] Opening image files whose names are in Cyrillic - Sergey_New (first post)    Dec 11, 2020 My application creates a folder of programs: File.MakeDir (File.DirRootExternal, Starter.ProgName) File.MakeDir (File.DirRootExternal & "/" & Starter.ProgName, "Медиа") The image files are located in the "Медиа" folder. B4J Question JBDC pool connections: how to use correctly ? - OliverA (first post)    Oct 12, 2023   (3 reactions) Exists(File.DirApp, "by_ftp") = False Then
File.MakeDir(File.DirApp, "by_ftp")
End If
Dim local_folder As String = File.Combine(File.Combine(File.DirApp, "by_ftp"), machine_id)
If File.Exists(loc B4A Question Make folder - Android 11 - petr4ppc    May 18, 2021 Dear friends, I am trying (Android 11, SDK 29/30): Dim rperr As RuntimePermissions rperr.CheckAndRequest(rperr.) wait for Activity_PermissionResult(permission As String, result As Boolean) Dim FileDirr As String FileDirr = starter.rp.GetSafeDirDefaul Page: 1   2   3   4   5   6   7   Powered by ColBERT |