-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathfilecopy.c
163 lines (141 loc) · 4.47 KB
/
filecopy.c
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/******************************************************************************
* Copyright (c) 2023 Jaroslav Hensl *
* *
* Permission is hereby granted, free of charge, to any person *
* obtaining a copy of this software and associated documentation *
* files (the "Software"), to deal in the Software without *
* restriction, including without limitation the rights to use, *
* copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following *
* conditions: *
* *
* The above copyright notice and this permission notice shall be *
* included in all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, *
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR *
* OTHER DEALINGS IN THE SOFTWARE. *
* *
*******************************************************************************/
#include <windows.h>
#include <string.h>
#include <stdio.h>
#include "filecopy.h"
#include "setuperr.h"
#include "nocrt.h"
BOOL is_dir(const char *path)
{
DWORD atrs = GetFileAttributesA(path);
if(atrs != INVALID_FILE_ATTRIBUTES)
{
return (atrs & FILE_ATTRIBUTE_DIRECTORY) != 0;
}
return FALSE;
}
BOOL is_file(const char *path)
{
DWORD atrs = GetFileAttributesA(path);
return atrs != INVALID_FILE_ATTRIBUTES && (atrs & FILE_ATTRIBUTE_DIRECTORY) == 0;
}
BOOL mkdir_recrusive(const char *path)
{
char atom[MAX_PATH];
size_t pos = 0;
size_t new_pos = 0;
const char *ptr;
while((ptr = strchr(path+pos, '\\')) != NULL)
{
new_pos = ptr - path;
if((new_pos - pos) > 0)
{
memcpy(atom, path, new_pos);
atom[new_pos] = '\0';
if(!is_dir(atom))
{
//printf("Creating atom: %s\n", atom);
if(!CreateDirectoryA(atom, NULL))
{
return FALSE;
}
}
}
pos = new_pos + 1;
}
if(!CreateDirectoryA(path, NULL))
{
return FALSE;
}
return TRUE;
}
void removeROFlag(const char *path)
{
DWORD attrs = GetFileAttributesA(path);
if(attrs != INVALID_FILE_ATTRIBUTES)
{
if(attrs & FILE_ATTRIBUTE_READONLY)
{
SetFileAttributes(path, attrs ^ FILE_ATTRIBUTE_READONLY);
}
}
}
int copydir(const char *from, const char *to)
{
char file_re[MAX_PATH] = {0};
char srcpath[MAX_PATH];
char dstpath[MAX_PATH];
WIN32_FIND_DATAA taa;
int cnt = 0;
HANDLE hdir;
if(!is_dir(to))
{
if(!mkdir_recrusive(to))
{
REPORT("mkdir_recrusive(%s): %ld\n", to, GetLastError());
return 0;
}
}
strcpy(file_re, from);
strcat(file_re, "\\*");
memset(&taa, 0, sizeof(taa));
hdir = FindFirstFileA(file_re, &taa);
if(hdir != INVALID_HANDLE_VALUE)
{
do
{
if(strcmp(taa.cFileName, ".") != 0 && strcmp(taa.cFileName, "..") != 0)
{
strcpy(srcpath, from);
strcat(srcpath, "\\");
strcat(srcpath, taa.cFileName);
strcpy(dstpath, to);
strcat(dstpath, "\\");
strcat(dstpath, taa.cFileName);
if((taa.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
cnt += copydir(srcpath, dstpath);
}
else
{
removeROFlag(dstpath);
if(CopyFileA(srcpath, dstpath, FALSE))
{
removeROFlag(dstpath);
cnt++;
}
}
}
} while(FindNextFileA(hdir, &taa));
CloseHandle(hdir);
}
else
{
REPORT("FindFirstFileA: %ld\n", GetLastError());
}
return cnt;
}