Hi, I’ve just discovered (but maybe it’s a known issue) that it’s possible to handle dropbox subfolders, at least for images, also with current Codea API.
this code in fact works properly:
function setup()
img = readImage("Dropbox:SubFolderName/imageName")
end
function draw()
sprite(img,WIDTH/2,HEIGHT/2)
end
where dropbox path is “Dropbox/Apps/Codea/SubFolderName”
The only drawback is that it’s not possible to browse files from codea file browser, you have to manually write the correct name and path. I found that very usefull to organize files per projects, instead of a single mess up of everything.