PRDir¶
与 目录 I/O 函数 一起使用的目录结构。
语法¶
#include <prio.h>
typedef struct PRDir PRDir;
描述¶
不透明结构 PRDir 表示文件系统中打开的目录。函数 PR_OpenDir 打开指定的目录并返回指向 PRDir 结构的指针,该指针可以重复传递给 PR_ReadDir 以获取连续的条目(打开目录中的文件或子目录)。要关闭目录,请将 PRDir 指针传递给 PR_CloseDir。
与 目录 I/O 函数 一起使用的目录结构。
#include <prio.h>
typedef struct PRDir PRDir;
不透明结构 PRDir 表示文件系统中打开的目录。函数 PR_OpenDir 打开指定的目录并返回指向 PRDir 结构的指针,该指针可以重复传递给 PR_ReadDir 以获取连续的条目(打开目录中的文件或子目录)。要关闭目录,请将 PRDir 指针传递给 PR_CloseDir。