Files
compute-runtime/shared/source/utilities/windows/directory.cpp
Mateusz Jablonski 7df9945ebe Add absolute include paths
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-23 23:49:12 +01:00

41 lines
838 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/utilities/directory.h"
#include "shared/source/os_interface/windows/windows_wrapper.h"
namespace NEO {
std::vector<std::string> Directory::getFiles(const std::string &path) {
std::vector<std::string> files;
std::string newPath;
WIN32_FIND_DATAA ffd;
HANDLE hFind = INVALID_HANDLE_VALUE;
if (path.c_str()[path.size() - 1] == '/') {
return files;
} else {
newPath = path + "/*";
}
hFind = FindFirstFileA(newPath.c_str(), &ffd);
if (INVALID_HANDLE_VALUE == hFind) {
return files;
}
do {
files.push_back(path + "/" + ffd.cFileName);
} while (FindNextFileA(hFind, &ffd) != 0);
FindClose(hFind);
return files;
}
}; // namespace NEO