#include namespace fs = std::filesystem; filesystem 라이브러리를 이용하여 파일을 탐색. const fs::path projectPath = fs::current_path().parent_path().parent_path(); const fs::path modelsPath = projectPath / "models" / "glTF-Sample-Models-master" / "2.0"; SearchModelFiles(modelsPath); std::filesyste::current_path(), parent_path()함수로 경로를 불러오고 파일을 탐색할 경로를 입력해줌 void JsonManager::SearchModelFiles(const filesystem::p..