我可以使用 html5 文件系统写入和读取文件。该文件已成功写入,然后也成功读取。但我不知道它的实际物理路径。
fileEntry.fullPath
仅\log.txt
作为路径给出。谁能告诉我这个文件实际存储在我的电脑中的什么位置?
如果有人想检查代码,这里是:
window.webkitRequestFileSystem(window.TEMPORARY, 1024 * 1024, function(fs) {
// fs.root is a DirectoryEntry object.
fs.root.getFile('log.txt', {create: true}, function(fileEntry) {
fileEntry.createWriter(function(writer) { // writer is a FileWriter object.
console.log(fileEntry);
writer.onwrite = function(e) { console.log('on write');console.log(e); };
writer.onerror = function(e) { console.log('on write error');console.log(e); };
var blob = new Blob(['Hello World!'], {type: 'text/plain'});
writer.write(blob);
}, opt_errorHandler);
}, opt_errorHandler);
});