joaquinortiz Active Member Licensed User Longtime User Jun 20, 2020 #1 I create an excel file using Excel 1.00 library. Finally, I created in the folder /storage/emulated/0/android/data/b4a.example/files If i navigate into folders in the device, I can open it. How I can download this file into my laptop? I connect several devices (smartphones and Zebra TC20) through USB cable and it doesn't appears in File Explorer. How I can do it? Thanks in advance!
I create an excel file using Excel 1.00 library. Finally, I created in the folder /storage/emulated/0/android/data/b4a.example/files If i navigate into folders in the device, I can open it. How I can download this file into my laptop? I connect several devices (smartphones and Zebra TC20) through USB cable and it doesn't appears in File Explorer. How I can do it? Thanks in advance!
JohnC Expert Licensed User Longtime User Jun 20, 2020 #2 Try saving the excel file in the dir/path returned by this code: B4X: Dim rp As RuntimePermissions Dim SafeExternalDir As String SafeExternalDir = rp.GetSafeDirDefaultExternal And then see if your laptop can see the file. Upvote 0
Try saving the excel file in the dir/path returned by this code: B4X: Dim rp As RuntimePermissions Dim SafeExternalDir As String SafeExternalDir = rp.GetSafeDirDefaultExternal And then see if your laptop can see the file.
joaquinortiz Active Member Licensed User Longtime User Jun 20, 2020 #3 JohnC said: Try saving the excel file in the dir/path returned by this code: B4X: Dim rp As RuntimePermissions Dim SafeExternalDir As String SafeExternalDir = rp.GetSafeDirDefaultExternal And then see if your laptop can see the file. Click to expand... it's works!!!...thanks.!! Upvote 0
JohnC said: Try saving the excel file in the dir/path returned by this code: B4X: Dim rp As RuntimePermissions Dim SafeExternalDir As String SafeExternalDir = rp.GetSafeDirDefaultExternal And then see if your laptop can see the file. Click to expand... it's works!!!...thanks.!!