mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Also add the ability to ignore individual tests. This is very useful during development for convenient multi-test runs from within Visual Studio. Example command line: ``` --root pspautotests/tests/../ -o --compare --timeout=30 --graphics=software pspautotests/tests/audio/atrac/... --ignore pspautotests/tests/audio/atrac/second/resetting.prx --ignore pspautotests/tests/audio/atrac/replay.prx ```
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
#include <cstdio>
|
|
#include <cstdint>
|
|
|
|
#include "Common/File/Path.h"
|
|
|
|
namespace File {
|
|
|
|
struct FileInfo {
|
|
std::string name;
|
|
Path fullName;
|
|
bool exists = false;
|
|
bool isDirectory = false;
|
|
bool isWritable = false;
|
|
uint64_t size = 0;
|
|
|
|
uint64_t atime = 0;
|
|
uint64_t mtime = 0;
|
|
uint64_t ctime = 0;
|
|
uint32_t access = 0; // st_mode & 0x1ff
|
|
|
|
bool operator <(const FileInfo &other) const;
|
|
};
|
|
|
|
bool GetFileInfo(const Path &path, FileInfo *fileInfo);
|
|
|
|
enum {
|
|
GETFILES_GETHIDDEN = 1,
|
|
GETFILES_GET_NAVIGATION_ENTRIES = 2, // If you don't set this, "." and ".." will be skipped.
|
|
};
|
|
|
|
// Note: extensionFilter is ignored for directories, so you can recurse.
|
|
bool GetFilesInDir(const Path &directory, std::vector<FileInfo> *files, const char *extensionFilter = nullptr, int flags = 0, std::string_view prefix = std::string_view());
|
|
std::vector<File::FileInfo> ApplyFilter(std::vector<File::FileInfo> files, const char *extensionFilter, std::string_view prefix);
|
|
|
|
#ifdef _WIN32
|
|
std::vector<std::string> GetWindowsDrives();
|
|
#endif
|
|
|
|
} // namespace File
|