forked from BYOBMO/BMOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCFiles.cpp
More file actions
90 lines (77 loc) · 1.74 KB
/
CFiles.cpp
File metadata and controls
90 lines (77 loc) · 1.74 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include "CFiles.h"
#include <stdio.h>
#include <string.h>
#ifdef WINDOWS
#include <Windows.h>
#else
#include <dirent.h>
#endif
#include <fstream>
#include <iostream>
//#include <filesystem>
#include <algorithm>
#include <boost/filesystem.hpp>
using namespace std;
bool CFiles::Copy(std::string from, std::string to)
{
try
{
std::cout << from << " " << boost::filesystem::file_size(from) << '\n';
std::cout << to + '\n';
boost::filesystem::copy_file(from, to, boost::filesystem::copy_option::overwrite_if_exists);
}
catch (...)
{
return(false);
}
return(true);
}
bool CFiles::Delete(std::string path)
{
try
{
boost::filesystem::remove(path);
}
catch (...)
{
return(false);
}
return(true);
}
CFiles::CFiles()
{
}
void CFiles::GetFiles(std::string path, std::string ext)
{
char* substr = NULL;
mFiles.clear();
mPath = path;
std::string _ext = ext;
if (ext != "" && ext != "*")
{
_ext = "." + ext;
}
boost::filesystem::path p(path);
boost::filesystem::directory_iterator it(p);
boost::filesystem::directory_entry de;
for (; it != boost::filesystem::directory_iterator(); it++)
{
de = (*it);
if (ext == "" || ext == "*")
{
std::string s = de.path().filename().string();
mFiles.push_back(s);
}
else
{
std::string s = de.path().filename().string();
substr = strstr((char*)(s.c_str()), _ext.c_str());
if (substr != NULL)
{
std::string s = de.path().filename().string();
mFiles.push_back(s);
}
}
}
std::sort(mFiles.begin(), mFiles.end());
}