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 Italian [B4A] Registratore (errore nella registrazione) - LucaMs (first post)    Feb 14, 2024   (2 reactions) Creala.
File.MakeDir(File.DirInternal, "MyNewFolder") 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 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 [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. 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 B4A Question help needed: file.makedir - jahswant (first post)    Jan 26, 2023   (2 reactions) https://www.b4x.-chart-to-help-choose-folder.132787/
This is the new way of managing files from your application. 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 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 B4A Question File.MakeDir making unwritable folders - Erel (first post)    Nov 04, 2018   (2 reactions) File.MakeDir calls a standard OS API. If the folder created is corrupted then it is an OS issue.
Worth adding a Sleep(300) before the next attempt. Page: 1   2   3   4   5   6   7   Powered by ColBERT |