![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/filesystem/ |
Upload File : |
var dummy_device = FS.makedev(64, 0); FS.registerDevice(dummy_device, {}); FS.mkdir('/forbidden', 0000); FS.mkdir('/forbidden/test'); FS.mkdir('/abc'); FS.mkdir('/abc/123'); FS.mkdir('/abc/456'); FS.mkdir('/def'); FS.mkdir('/def/789'); FS.mkdev('/abc/deviceA', dummy_device); FS.mkdev('/def/deviceB', dummy_device); FS.symlink('123', '/abc/localLink'); FS.symlink('/', '/abc/rootLink'); FS.symlink('../def', '/abc/relativeLink'); FS.ignorePermissions = false; function explore(path) { Module.print(path); var ret = FS.analyzePath(path); Module.print(' isRoot: ' + ret.isRoot); Module.print(' exists: ' + ret.exists); Module.print(' error: ' + ret.error); Module.print(' path: ' + ret.path); Module.print(' name: ' + ret.name); Module.print(' object.contents: ' + (ret.object && JSON.stringify(Object.keys(ret.object.contents || {})))); Module.print(' parentExists: ' + ret.parentExists); Module.print(' parentPath: ' + ret.parentPath); Module.print(' parentObject.contents: ' + (ret.parentObject && JSON.stringify(Object.keys(ret.parentObject.contents)))); Module.print(''); } FS.currentPath = '/abc'; explore('/'); explore('.'); explore('..'); explore('../..'); explore('/abc'); explore('/abc/123'); explore('/abc/noexist'); explore('/abc/deviceA'); explore('/abc/localLink'); explore('/abc/rootLink'); explore('/abc/relativeLink'); explore('/abc/relativeLink/deviceB'); explore('/abc/rootLink/noexist'); explore('/abc/rootLink/abc/noexist'); explore('/forbidden'); explore('/forbidden/test'); explore('/forbidden/noexist'); explore('/noexist1/noexist2');