glob/globfree--找出匹配模式的路径名
Posted yuxi_o
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了glob/globfree--找出匹配模式的路径名相关的知识,希望对你有一定的参考价值。
语法
#include <glob.h> int glob(const char *pattern, int flags, int (*errfunc) (const char *epath, int eerrno), glob_t *pglob); void globfree(glob_t *pglob);
解析
The glob() function searches for all the pathnames matching pattern according to the rules used by the shell (see glob(7)).
glob()用于搜索路径下所有匹配的文件,便于后续处理。
以上是关于glob/globfree--找出匹配模式的路径名的主要内容,如果未能解决你的问题,请参考以下文章