Results of 1 - 10 of about 18 for dirent (0.001 sec.)
- Man page of SCANDIR 10912
- SCANDIR Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 scand
...
rsionsort - ディレクトリを走査する 書式 #include < dirent.h > int scandir(const char * dirp , struct dirent ...
*** namelist , int (* filter )(const struct dirent *), int (* compar )(const struct dirent **, const ...
struct dirent **)); int alphasort(const struct dirent ** a , con ...
st struct dirent ** b ); int versionsort(const struct dirent ** a , ...
-
https://man.plustar.jp/manpage/man3/alphasort.3.html
- [similar]
- Man page of SCANDIR 10912
- SCANDIR Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 scand
...
rsionsort - ディレクトリを走査する 書式 #include < dirent.h > int scandir(const char * dirp , struct dirent ...
*** namelist , int (* filter )(const struct dirent *), int (* compar )(const struct dirent **, const ...
struct dirent **)); int alphasort(const struct dirent ** a , con ...
st struct dirent ** b ); int versionsort(const struct dirent ** a , ...
-
https://man.plustar.jp/manpage/man3/scandir.3.html
- [similar]
- Man page of SCANDIR 10912
- SCANDIR Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 scand
...
rsionsort - ディレクトリを走査する 書式 #include < dirent.h > int scandir(const char * dirp , struct dirent ...
*** namelist , int (* filter )(const struct dirent *), int (* compar )(const struct dirent **, const ...
struct dirent **)); int alphasort(const struct dirent ** a , con ...
st struct dirent ** b ); int versionsort(const struct dirent ** a , ...
-
https://man.plustar.jp/manpage/man3/scandirat.3.html
- [similar]
- Man page of SCANDIR 10912
- SCANDIR Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 scand
...
rsionsort - ディレクトリを走査する 書式 #include < dirent.h > int scandir(const char * dirp , struct dirent ...
*** namelist , int (* filter )(const struct dirent *), int (* compar )(const struct dirent **, const ...
struct dirent **)); int alphasort(const struct dirent ** a , con ...
st struct dirent ** b ); int versionsort(const struct dirent ** a , ...
-
https://man.plustar.jp/manpage/man3/versionsort.3.html
- [similar]
- Man page of GETDENTS 10432
- GETDENTS Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 getd
...
書式 long getdents(unsigned int fd , struct linux_dirent * dirp , unsigned int count ); #define _GNU_SOURCE ...
/* feature_test_macros (7) 参照 */ #include < dirent.h > ssize_t getdents64(int fd , void * dirp , size ...
ィスクリプター fd で参照されるディレクトリから linux_dirent 構造体をいくつか読み出し、 dirp が指しているバッフ ...
。 count 引数はそのバッファーのサイズを示す。 linux_dirent 構造体は以下のように宣言されている。 struct linux_ ...
-
https://man.plustar.jp/manpage/man2/getdents.2.html
- [similar]
- Man page of GETDENTS 10432
- GETDENTS Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 getd
...
書式 long getdents(unsigned int fd , struct linux_dirent * dirp , unsigned int count ); #define _GNU_SOURCE ...
/* feature_test_macros (7) 参照 */ #include < dirent.h > ssize_t getdents64(int fd , void * dirp , size ...
ィスクリプター fd で参照されるディレクトリから linux_dirent 構造体をいくつか読み出し、 dirp が指しているバッフ ...
。 count 引数はそのバッファーのサイズを示す。 linux_dirent 構造体は以下のように宣言されている。 struct linux_ ...
-
https://man.plustar.jp/manpage/man2/getdents64.2.html
- [similar]
- Man page of READDIR 9660
- READDIR Section: Linux Programmer's Manual (3) Updated: 2019-03-06 Index JM Home Page 名前 readd
...
ir - ディレクトリを読み込む 書式 #include < dirent.h > struct dirent *readdir(DIR * dirp ); 説明 read ...
ストリームの中で、 次のディレクトリエントリーを表す dirent 構造体へのポインターを返す。 ディレクトリストリーム ...
ーが発生した場合は、 NULL を返す。 glibc の実装では dirent 構造体は以下のように定義されている。 struct dirent ...
har d_name[256]; /* ヌル終端されたファイル名 */ }; dirent 構造体のフィールドのうち POSIX.1 で要求されているの ...
-
https://man.plustar.jp/manpage/man3/readdir.3.html
- [similar]
- Man page of READDIR 9265
- READDIR Section: Linux Programmer's Manual (2) Updated: 2019-03-06 Index JM Home Page 名前 readd
...
書式 int readdir(unsigned int fd , struct old_linux_dirent * dirp , unsigned int count ); 注 : このシステムコ ...
リプター fd が参照しているディレクトリから old_linux_dirent 構造体をひとつ読み込み、 dirp で指されたバッファー ...
る。 count 引数は無視される。最大で 1 個の old_linux_dirent 構造体が読み出される。 old_linux_dirent 構造体は ( ...
部用として) 以下のように宣言される: struct old_linux_dirent { unsigned long d_ino; /* inode 番号 */ unsigned l ...
-
https://man.plustar.jp/manpage/man2/readdir.2.html
- [similar]
- Man page of READDIR_R 7704
- READDIR_R Section: Linux Programmer's Manual (3) Updated: 2016-03-01 Index JM Home Page 名前 rea
...
ddir_r - ディレクトリを読み込む 書式 #include < dirent.h > int readdir_r(DIR * dirp , struct dirent * ent ...
ry , struct dirent ** result ); glibc 向けの機能検査マクロの要件 ( fe ...
割り当てたバッファーにそのエントリーを格納して返す。 dirent 構造体の詳細は readdir (3) を参照。 結果を返すバッ ...
-
https://man.plustar.jp/manpage/man3/readdir_r.3.html
- [similar]
- Man page of REWINDDIR 7137
- REWINDDIR Section: Linux Programmer's Manual (3) Updated: 2015-08-08 Index JM Home Page 名前 rew
...
ムの初期化 書式 #include < sys/types.h > #include < dirent.h > void rewinddir(DIR * dirp ); 説明 rewinddir () ...
-
https://man.plustar.jp/manpage/man3/rewinddir.3.html
- [similar]