JS_ACCESS(3) | Library Functions Manual | JS_ACCESS(3) |
js_access() ファイルのアクセス権を調べる。
#include "jslib.h" int js_access(env,path,amode) struct wnn_env *env; /* 環境 */ char *path; /* パス名 */ int amode; /* モード */
04 read 02 write 01 execute (search) 00 check existence of filepath と amode を持って、jserver の権限で access(2) を実行する。 path の最大文字数は、128文字である。
access(2) と同じである。
20 September 1991 |