You are reading a single comment by @feugy and its replies. Click here to read the full conversation.
  • To give a bit of context: I would like the ability to list files present on the board.
    I though it would be a small addition ton BangleApps to display such list, and allow to download them.

    I've mitigated the encoding issue:

          // this is on the BangleApp:
          Puck.eval('require("Storage").list().mapĀ­(encodeURIComponent)', (files,err) => {
            if (files===null) return reject(err || "");
            files = files.map(decodeURIComponent)
            console.log("listFiles", files);
            resolve(files)
          });
    
About

Avatar for feugy @feugy started