使用fopen,fread等操作。
编译选项中添加:
--preload-file a.data
只有MEMFS文件系统是默认包含的,其他必须使用链接标志使能。
NODEFS: -lnodefs.js
IDBFS: -lidbfs.js
WORKERFS: -lworkerfs.js
PROXYFS: -lproxyfs.js
代码示例:
/*
* Copyright 2013 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <emscripten.h>
#ifdef NODERAWFS
#define CWD ""
#else
#define CWD "/working/"
#endif
int main() {
FILE *file;
int res;
char buffer[512];
// write something locally with node
EM_ASM(
var fs = require('fs');
fs.writeFileSync('foobar.txt', 'yeehaw');
);
#ifndef NODERAWFS
// mount the current folder as a NODEFS instance
// inside of emscripten
EM_ASM(
FS.mkdir('/working');
FS.mount(NODEFS, { root: '.' }, '/working');
);
#endif
// read and validate the contents of the file
file = fopen(CWD "foobar.txt", "r");
assert(file);
res = fread(buffer, sizeof(char), 6, file);
assert(res == 6);
fclose(file);
assert(!strcmp(buffer, "yeehaw"));
// write out something new
file = fopen(CWD "foobar.txt", "w");
assert(file);
res = fwrite("cheez nihao webassembly", sizeof(char), 20, file);
assert(res == 20);
fclose(file);
// validate the changes were persisted to the underlying fs
EM_ASM(
var fs = require('fs');
var contents = fs.readFileSync('foobar.txt', { encoding: 'utf8' });
assert(contents === 'cheez');
);
puts("success");
return 0;
}
编译和运行
编译: emcc test_nodefs_rw.c -o test_nodefs_rw.js -lnodefs.js -s FORCE_FILESYSTEM=1 -s INITIAL_MEMORY=64mb
运行: node test_nodefs_rw.js