是否可以在NaCl
内使用''
?
由于
答案 0 :(得分:6)
The chrome.fileSystem API允许您通过Chrome应用访问用户的本地文件系统。这需要用户选择一个目录以向App公开。
此文件系统可以传递到NaCl模块,然后与标准NaCl pp::FileSystem API一起使用。
在examples/tutorial/filesystem_passing
的NaCl SDK中有一个例子。您可以浏览它的代码here。
以下是重要部分: JavaScript的:
chrome.fileSystem.chooseEntry({type: 'openDirectory'}, function(entry) {
if (!entry) {
// The user cancelled the dialog.
return;
}
// Send the filesystem and the directory path to the NaCl module.
common.naclModule.postMessage({
filesystem: entry.filesystem,
fullPath: entry.fullPath
});
});
C ++:
// Got a message from JavaScript. We're assuming it is a dictionary with
// two elements:
// {
// filesystem: <A Filesystem var>,
// fullPath: <A string>
// }
pp::VarDictionary var_dict(var_message);
pp::Resource filesystem_resource = var_dict.Get("filesystem").AsResource();
pp::FileSystem filesystem(filesystem_resource);
std::string full_path = var_dict.Get("fullPath").AsString();
std::string save_path = full_path + "/hello_from_nacl.txt";
std::string contents = "Hello, from Native Client!\n";
请注意,此FileSystem中的所有路径都必须以full_path为前缀。任何其他访问都将失败。