Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| function traverseFileTree(item, path) { | |
| path = path || ""; | |
| if (item.isFile) { | |
| // Get file | |
| item.file(function(file) { | |
| console.log("File:", path + file.name); | |
| }); | |
| } else if (item.isDirectory) { | |
| // Get folder contents | |
| var dirReader = item.createReader(); |