-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile.h
66 lines (49 loc) · 1.32 KB
/
File.h
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// Created by charles.cxh on 2021/9/4.
//
#ifndef MINIPROJECT_FILE_H
#define MINIPROJECT_FILE_H
#include <fstream>
#include <string>
#include <stdexcept>
#include <memory>
#include <sstream>
#include <unistd.h>
#include<sys/stat.h>
#include "Snapshot.h"
#include "UpdateLevel.h"
#include "DeleteLevel.h"
class File {
protected:
std::fstream fileStream;
std::string fileName;
public:
/**
* 检查文件是否存在
*/
static bool exists(const std::string &filePath);
/**
* 打开文件,返回是否成功打开
*/
bool open(std::ios_base::openmode mode);
/**
* 设置文件的开始读取偏移
*/
void seekInputPosition(std::size_t offsetPosition, std::ios_base::seekdir position = std::ios::beg);
/**
* 是否已经读到end,可用此方法判断文件是否已经读完
*/
bool endOfFile();
/**
* 关闭文件流,如果从未打开,则无任何操作
*/
void close();
/**
* 读取指定数量的字符串,如果内容不够,则读完
* offset参数表示开始读取的偏移
* 读取位置置于本次最后读取的内容的结尾
*/
std::unique_ptr<char[]> read(std::size_t offset = 0, std::streamsize *size = 0);
explicit File(const std::string &fileName);
};
#endif //MINIPROJECT_FILE_H