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()用于搜索路径下所有匹配的文件,便于后续处理。

posted @ 2017-06-11 22:18  yuxi_o  阅读(1099)  评论(0编辑  收藏  举报