文件夹c语言,怎么用C读取一个文件夹的所有文件
C/C++ code//获取文件夹下子文件、文件夹std::vector TFile::getsubpath(){std::vector subpath;std::string strfpname;subpath.clear();intptr_t fcode;struct _finddata_t fdata;if (iffdir()){fcode=_findfirst((fpath+"\\*")....