Android Question Saving files in CSV form

Izmirov.Yaminovich

Member
Licensed User
Longtime User
B4X:
Sub SaveData(Items() As String)
    Dim su As StringUtils
    Dim rows As List = Array (Items)
    su.SaveCSV(File.DirRootExternal, "data.txt", ",", rows)
End Sub

Can anyone tell me why is my file not saving in a csv form? I can't find it in the external files.
 

Izmirov.Yaminovich

Member
Licensed User
Longtime User
Yes, I was trying things out. I couldn't find it. Did I missed anything? If it is directed to root external it should be at the external right? I searched the internal as well. It's just not there.
 
Upvote 0
Top