• Hi, the issue is the difference between StorageFile (made/read with .open) which is a variable length file, and files that are made with .write (and read with .read) and are fixed length. When you upload with the IDE you can only upload normal files, not StorageFile

    You might be able to do:

    var f = require("Storage").open("coordinate.csv","r");
    f.write(require("Storage").read("coordinate.csv"));
    require("Storage").erase("coordinate.csv");
    

    on the Bangle to convert the non-storagefile to a storagefile though

About

Avatar for Gordon @Gordon started