最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Clear HTML5 Filesystem API - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

4 Answers 4

Reset to default 7

2016 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.

发布评论

评论列表(0)

  1. 暂无评论