list of files in a directory1 폴더 안의 모든 파일 목록 가져오기 get list of files in a directory http://stackoverflow.com/questions/612097/how-can-i-get-the-list-of-files-in-a-directory-using-c-or-c folder에 경로만 넣어주면 됨. 굳굳#include vector get_all_files_names_within_folder(string folder) { vector names; char search_path[200]; sprintf(search_path, "%s*.*", folder.c_str()); WIN32_FIND_DATA fd; HANDLE hFind = ::FindFirstFile(search_path, &fd); if(hFind != INVALID_HANDLE_VALUE) { do { // read all .. 2015. 7. 15. 이전 1 다음 반응형