blob: 382da7de3443fa77f2ee6d13f361d5659c7ef215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* (C) 2015 Jack Lloyd
* (C) 2015 Simon Warta (Kullo GmbH)
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_UTIL_FILESYSTEM_H_
#define BOTAN_UTIL_FILESYSTEM_H_
#include <botan/types.h>
#include <vector>
#include <string>
namespace Botan {
/**
* No_Filesystem_Access Exception
*/
class BOTAN_PUBLIC_API(2,0) No_Filesystem_Access final : public Exception
{
public:
No_Filesystem_Access() : Exception("No filesystem access enabled.")
{}
};
BOTAN_TEST_API bool has_filesystem_impl();
BOTAN_TEST_API std::vector<std::string> get_files_recursive(const std::string& dir);
}
#endif
|