B4A Class ExternalStorage - Access SD cards and USB sticks - Erel    Nov 11, 2020   (62 reactions)   tags: File, Access SD and USB, externsl sd, storage https://www.b4x.com/basic4android/images/SS-2018-03-05_11.16.42.png Before we start: External storage means a real sd card or a connected mass storage USB device. This class can also be used to access the secondary storage (File.DirRootExternal). This becomes relevant with newer versions of Android that restrict direct access. It has nothing to do with runtime permissions. You can use RuntimePermissions.GetAllSafeDirsExternal to directly access a specific folder on the SD card. You can use... B4A Question how to ext. SD Card write on Android 4.4. - monki    Jun 19, 2014 hi erel,
in Android 4.4 it is only possible to write to the external SD card in a directory whose name Andoid / data / "apk name".
But as it is created?
monki.... B4R Code Snippet SD-card: save log into a limited (looped) log file - peacemaker    Aug 25, 2024 . Actual Arduino's SD-card class can open file only for READ, WRITE or APPEND. No TRUNCATE is possible... As Byte, YEAR As Byte End Sub Sub Start_SD(tag As Byte) If tag = 0 Then Log("Start SD...") Else Log("Try to re-start SD...") End If Dim res As Byte = RunNative("setup_sd", Null) If res = 0 Then Log("SD card - setup error..., line) End Sub #if C #include "FS.h" #include "SD.h" #include "SPI.h"... B4A Question External Sd card access - GiovanniPolese    Aug 11, 2023 Hi to All
I have now met the problem to manage an External sd card. Reading the posts here I found... display the above mentioned message .. but .. no Sd card access anyway.
At the end, what I need... B4R Tutorial SD cards - Erel    Apr 19, 2016   (9 reactions) The rSD library allows reading and writing to SD cards. The Ethernet shield as well as other shields include a SD slot.
The steps required to work with files:
1. Initialize a SD object. You need to... the data file. The data file is then manually copied to the sd card.
This is the important code:
For... B4A Library SD: ScratchCard - Star-Dust    Jan 6, 2025   (22 reactions)   tags: myapp .
SD_Scratchcard
Author: Star-Dust
Version: 0.03
PanelScratchCard
Events:
Click
LongClick
Touch (Action As Int...I created a new view / panel that simulates the effect of scratch cards.
Create a panel from code... B4A Question [Code snippet] Transfer files from Android to ESP8266-ESP32 micro SD Card in plain TCP (no FTP) - max123    Nov 17, 2022   (4 reactions) Android to ESP8266-ESP32 micro sd card (over network).
Because I don't wanted to use an FTP library... on ESP SD Card, then B4A send the info string containing the file name, size and other stuff... B4A Question [Solution found] Does SD Card exist? - Roger Daley    Sep 14, 2021 current method to determine if a physical SD Card is fitted to the device?
IE:
If File.Exists... B4A Question File.DirRootExternal not the path of the sd-card? - Alexander Stolte    Jan 19, 2017 Hello, In the theory you get with DirRootExternal the path of an external storage media or sd-card. Is that right? Because with me comes a completely different path out and try to save something under the path it saves it always on the device not on the SD. I add this permission to the manifest editor: AddPermission("android.permission.WRITE_EXTERNAL_STORAGE") And writeable is true. Or is there another way to save the sd card? All tutorials I have read have been based... B4R Question SD card: create a directory tree - peacemaker    Aug 23, 2024 HI, All
I read that path should be 8.3 format for FAT32.
But ... how to mkdir("/year/month/day... Page: 1   2   3   4   5   |