blob: 5a5bddd67782cb8636fc917567bb79fd7a546cb6 (
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
34
35
36
37
38
39
40
41
42
43
|
#ifndef file_hh_INCLUDED
#define file_hh_INCLUDED
#include "string.hh"
#include "exception.hh"
namespace Kakoune
{
struct file_access_error : runtime_error
{
public:
file_access_error(const String& filename,
const String& error_desc)
: runtime_error(filename + ": " + error_desc) {}
};
struct file_not_found : file_access_error
{
file_not_found(const String& filename)
: file_access_error(filename, "file not found") {}
};
class Buffer;
// parse ~/ and $env values in filename and returns the translated filename
String parse_filename(const String& filename);
String real_path(const String& filename);
String compact_path(const String& filename);
String read_file(const String& filename);
Buffer* create_buffer_from_file(String filename);
void write_buffer_to_file(Buffer& buffer, const String& filename);
String find_file(const String& filename, memoryview<String> paths);
time_t get_fs_timestamp(const String& filename);
std::vector<String> complete_filename(const String& prefix,
const Regex& ignore_regex,
ByteCount cursor_pos = -1);
}
#endif // file_hh_INCLUDED
|