| 551 | } |
| 552 | |
| 553 | bool ProjectControl::isExistFile(const MyGUI::UString& _filePath, const MyGUI::UString& _fileName) |
| 554 | { |
| 555 | common::VectorFileInfo fileInfo; |
| 556 | common::getSystemFileList(fileInfo, _filePath, _fileName, false); |
| 557 | |
| 558 | return !fileInfo.empty(); |
| 559 | } |
| 560 | |
| 561 | void ProjectControl::createProject(const MyGUI::UString& _filePath, const MyGUI::UString& _fileName) |
| 562 | { |
nothing calls this directly
no test coverage detected