摘要:
深度优先的遍历网上一大把,就是递归调用,这里就不说了,说点网上找不到的。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 8 typedef int8_t (__stdcall *P_WALKDIR_CALLBACK)(const char *In_pcFilePath); 9 10 int8_t WalkDir(const char *In_pcRootDir, P_WALKDIR_CALLBACK In_pfunCallBack)11 {12 int8_t i8R... 阅读全文
posted @ 2013-08-10 18:37 codeape 阅读(1205) 评论(0) 推荐(0) 编辑