view Wnn/manual/3.libwnn/js_lib/access @ 17:a3fdd8ad75dc

2ch dictionary has been added
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Mon, 14 Apr 2008 17:01:14 +0900
parents bbc77ca4def5
children
line wrap: on
line source




JS_ACCESS( )        UNIX Programmer's Manual         JS_ACCESS( )



名称

     js_access()         ファイルのアクセス権を調べる。

形式

     #include "jslib.h"

     int
     js_access(env,path,amode)
     struct wnn_env *env;          /* 環境 */
     char *path;                   /* パス名 */
     int amode;                    /* モード */

機能

     path で指定されたファイルをサーバ自身のアクセス権で調べる。
     amode は、 access(2) と同じである。
             04   read
             02   write
             01   execute (search)
             00   check existence of file
     path と amode を持って、 jserver の権限で access(2) を実行す
     る。 path の最大文字数は、 128 文字である。

リターンバリュー

     access(2) と同じである。




Printed 1/22/92         20 September 1991                       1