通过Drag' n' Drop?打开文件,是否可以在Chrome应用中获取fileEntry
个对象?当我将文件放入我的应用程序时,我只得到一个file
对象,它似乎与文件系统无关。我无法在更改文件后使用该对象保存文件。
我得到这样的文件:
document.body.addEventListener('drop', function (event) {
file = event.dataTransfer.files[0]
});
我正在开发一个文本编辑器,我想添加一个功能来打开文件,将其拖入我的应用程序。
正如我所说:我已经获得了文件的内容,但我无法将更改写回文件,因为我需要一个fileEntry
对象才能这样做。
答案 0 :(得分:2)
好的,我在检查event
对象时发现了它。在事件对象中,有一个名为webkitGetAsEntry()
的函数来获取fileEntry
对象。这是正确的代码:
document.body.addEventListener('drop', function (event) {
fileEntry = event.dataTransfer.items[0].webkitGetAsEntry();
});
这是您可以用来将更改写回文件系统的对象。
参考代码:
// Of course this needs the "fileSystem" permission.
// Dropped files from the file system aren't writable by default.
// So we need to make it writable first.
chrome.fileSystem.getWritableEntry(fileEntry, function (writableEntry) {
writableEntry.createWriter(function (writer) {
// Here use `writer.write(blob)` to write changes to the file system.
// Very important detail when you write files:
// https://developer.chrome.com/apps/app_codelab_filesystem
// look for the part that reads `if (!truncated)`
// This also is very hard to find and causes an annoying error
// when you don't know how to correctly truncate files
// while writing content to the files...
});
});