Android Question Creating a simple CSV File

clooney48

Active Member
Licensed User
Longtime User
Why does this simple code not work?
B4X:
    Dim su As StringUtils
    Dim Row(2) As String
    Row(0) = "A"
    Row(1) = "AA"
    su.SaveCSV(File.DirRootExternal, "1.csv", ",", Row)
 
Top