admin管理员组文章数量:1345096
How does one pletely empty (or delete all files in) a filesystem?
Is there no 1 line solution like localStorage (localStorage.clear()
)? Or am I missing something really, really obvious?
Apparently, I wasn't very clear. I'm referring to the HTML5 Filesystem API. /
How does one pletely empty (or delete all files in) a filesystem?
Is there no 1 line solution like localStorage (localStorage.clear()
)? Or am I missing something really, really obvious?
Apparently, I wasn't very clear. I'm referring to the HTML5 Filesystem API. http://www.html5rocks./en/tutorials/file/filesystem/
Share Improve this question edited Apr 14, 2012 at 22:17 J. Chase asked Apr 14, 2012 at 22:04 J. ChaseJ. Chase 1,4131 gold badge11 silver badges10 bronze badges 3- 1 I am asking if there's a simple way to clear the Filesystem API like you can with localStorage. – J. Chase Commented Apr 14, 2012 at 22:15
- 4 Come on, this question is pretty clear. – Ry- ♦ Commented Apr 14, 2012 at 22:17
- 1 @minitech: With the edit, it is. – T.J. Crowder Commented Apr 14, 2012 at 22:19
4 Answers
Reset to default 72016 Update: The File API "Directories and System" effort has been abandoned and what little support had made it into browsers is being dropped. The original File API is still valid, but the stuff providing an entire file area on the user's system has been abandoned.
It looks like DirectoryEntry#removeRecursively
does that. It says you can't remove the root of a file system, but you can loop through the entries in the root and remove them recursively (or just always work with a subdirectory of the root, thereby letting you remove that with a one-liner).
Not a one line solution but you can always go to
chrome://settings/cookies
and remove the file system from the origin of your choice
In bro-fs there is special fs.clear() method exactly for that.
fs.init()
.then(() => fs.mkdir('dir'))
.then(() => fs.writeFile('file.txt', 'hello world'))
.then(() => fs.clear())
Storage, in the Web Storage specification, does have a clear
method. Are you confusing the File API with the web storage API?
At the level of the individual file, there's the truncate method.
本文标签: javascriptClear HTML5 Filesystem APIStack Overflow
版权声明:本文标题:javascript - Clear HTML5 Filesystem API - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742655a2531180.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论