directory

  1. M

    Android Question 2024 way to share files between apps (shared folder)

    Hi everyone, Disclaimer: The app I’m developing will not be published on the Play Store. I’ve a WatchDog app (WD) that launches the Main app (M) with which the users actually interacts. The goal is to be able to update M. The idea is to download the new apk file in a folder through M itself...
  2. 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...
  3. 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