13 lines
222 B
C++
13 lines
222 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <filesystem>
|
|
|
|
using Path = std::filesystem::path;
|
|
|
|
class Directory
|
|
{
|
|
public:
|
|
|
|
static std::vector<Path> getFilesWithExtension(const Path& path, const std::string& extension);
|
|
};
|