B4A Question help needed: file.makedir - Zeev Goldstein    Jan 26, 2023 it...
targetSDK = 31
this is the code i use
File.MakeDir(File.DirRootExternal,"/DirName"... B4i Question File.IsDirectory & File.MakeDir error - ilan (first post)    Aug 15, 2021
File.MakeDir(File.DirDocuments, myDir) ' this line has error
End If
Catch
File.MakeDir(File.DirDocuments, myDir) ' with this line dir is created
End... B4A Question File.MakeDir Never Returns an Error. Why? - Mahares    Nov 9, 2012 I can use any one of these two awkward statements and never get an error, Of course no folder is created and no error is returned. Why so?
File.MakeDir("xyz","abc")
File.MakeDir(File.DirRootExternal,"")... French Question sur file.makedir - Cast (first post)    Aug 31, 2020 Voilà ce que je voudrais faire aussi mais qui ne fonctionne pas.
File.MakeDir(File.DirInternal, "Save")
File.CopyAsync(File.DirAssets,"record.csv",File.DirInternal &... B4A Question File.MakeDir making unwritable folders - Erel (first post)    Nov 4, 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.... B4A Code Snippet [B4X] CopyFolder / DeleteFolder / RecursiveList - Erel    Oct 19, 2025   (26 reactions) , targetFolder As String) If File.Exists(targetFolder, "") = False Then File.MakeDir(targetFolder, "") For Each f As String In File.ListFiles(Source) If File.IsDirectory(Source, f) Then CopyFolder(File.Combine(Source, f), File.Combine(targetFolder, f)) Continue End If File.Copy(Source, f, targetFolder, f) Next End Sub Note that it will not work with the assets folder. You can instead create a zip file and unpack it with the Archiver library... B4A Question File.MakeDir doesn´t seems to work properly - cds-soft (first post)    Feb 3, 2015 Solved. Edit first post.... B4J Code Snippet Data Folder - Erel    Jan 3, 2016   (17 reactions)   tags: B4J Writable Data Folder, dirData As String = File.Combine(GetEnvironmentVariable("AppData", ""), AppName) File.MakeDir(wf, "") Return wf Else Return File.DirApp End If End Sub...Edit: This method is now available internally with File.DirData. Windows apps are installed by default under Program Files. Starting from Windows Vista, Program Files folders are read-only. This means that writing to File.DirApp will fail. The following code returns a writable folder based... B4J Question [risolto] HttpUtils2Service.TempFolder error - ivanomonti    Sep 17, 2023 ("user.home", "") & pathDesktop,pathfolderdesktop) = False Then File.MakeDir...) File.MakeDir(GetSystemProperty("user.home", "") & pathDesktop,pathfolderdesktop & "/LONG") File.MakeDir(GetSystemProperty("user.home", "") & pathDesktop,pathfolderdesktop & "/SHORT") File.MakeDir...") File.MakeDir(GetSystemProperty("user.home", "") &... Italian [ solved ] B4A android 10 target 29 non si riesce ad accedere alla cartella esterna download help - Xfood    Aug 21, 2020 , qualcuno ha qualche idea? Grazie mille a tutti If Not(File.Exists(File.DirRootExternal, "Download/Lista_Bc")) Then 'Msgbox(File.DirRootExternal,"dir non creata") File.MakeDir(File.DirRootExternal, "/Download/Lista_Bc") End If ' richiesta permessi... Page: 1   2   3   4   5   6   7   |