folder

  1. epiCode

    B4A Class [B4X] [Class] TextCrumbs v1 (BreadCrumbs using CharSequence)

    This class helps you create a simple Clickable Text Based Bread Crumbs Feature which supports CharSequence too. Usage is very simple. Create a list which has individual items to be shown as bread crumbs. This can be text / charSequence or mix of both. Initialize TextCrumbs and pass this list...
  2. A

    Android Question ExternalStorage - Rename a folder.

    After selecting a folder - is it possible to rename it? If this is not possible, then how can I rename a folder in an arbitrary location?
  3. M

    Android Question Access the internal Download folder

    Hi everyone, I'm trying to download a file from a server, and I want to save it in the "Download" folder of the phone (not on an external SD or USB) what is the right way to do it? (I already know how to download... i need to specify only the path) I tried with...
  4. B

    Android Question Save As a folder

    In the following example, how do I save a folder? This source only saves the file but I want to save the folder containing the file! https://www.b4x.com/android/forum/threads/saveas-let-the-user-select-a-target-folder-list-of-other-related-methods.129897/#content I will be grateful to anyone who...
  5. B

    Android Question Copy the file to the Android/data folder

    Hi I have been researching for a long time to be able to copy a file (folder) from dirinternal in the android / data folder. This is easily possible with file.copy in Android 10 below, but in newer versions of Android (some Android 10 and Android 11) it is very difficult and complicated. So I...
  6. M

    iOS Question Create "public" folder in iOS

    Hi Erel, How can I create with B4i a "public" directory / folder? I would like to access it with my developed app and in this folder I would like to edit normal with the "normal" file-explorer. It is in B4A "File.DirRootExternal" ... and in B4i ?? I do not want to access the folder via iTunes...
  7. 3

    Italian Esistenza di una cartella, se no crearla

    No saprei come fare a vedere se una cartella in un determinato percorso existe oppure no e se non esiste crearla. intanto ho provato questo, ma secondo me crea la cartella ma non la vedo File.MakeDir(File.DirAssets,"NewFolder") File.MakeDir(File.DirInternal,"NewFolder")
  8. Lucas Eduardo

    Android Question Access WhatsApp Folder

    Hello, i am trying to access the WhatsApp folder, in the samsung cellphone its ok i can access, but in the others i can't i tested in a Moto G5, Android 8.1 Log(File.IsDirectory(File.DirRootExternal, "WhatsApp")) return true Log(File.ListFiles(File.DirRootExternal)) return (List) Not...
  9. figorra

    Spanish [SOLUCIONADO] Error o en ficheros temporales o en daemon......

    Según esta pantalla, en un proyecto completamente vacío, sale este error. El tema de permisos no puedo cambiarlos, pero sí cambiar de sitio los archivos temp de B4X, pero no se donde..... Y lo del daemon, no se sí tiene que ver con el anterior o es otro problema diferente.
  10. S

    Android Question Folder not visible

    When I create a folder on "File.DirRootExternal" everything works fine. I can copy, create and delete files or other subfolders. When I connect my device with the USB cable, I no longer see the folder created. with "File Explorer" android app I see the folder created. File.ExternalWritable =...
  11. A

    Android Question Copy all folder content

    Hello, Does anybody know how to copy all files from one folder (for example dirInternal -> folder1 ) to another folder (for example dirInternal -> folder2 )? Thanks in advance
  12. Mac Pepe

    B4J Question jdbc_driver Folder

    Hi! I'm trying to use SQLite as local / remote DB. I have successfully downloaded sqlite-jdbc-3.21.0.jar from the proper server: https://bitbucket.org/xerial/sqlite-jdbc/downloads/ Now arises the question: Where should I put the .jar file in order to get use of it? I haven't found the...
  13. LucaMs

    Android Code Snippet ListFilesOnly - without directories

    SubName: ListFilesOnly Description: it is similar to File.ListFiles(Dir As String) but returns only file names, excluding directories. Public Sub ListFilesOnly(Dir As String) As List Dim lstDir, lstRes As List lstRes.Initialize If File.Exists(Dir, "") Then lstDir =...
Top