스레드 이용하여 파일 복사 하기(3/3) - 저수준 파일 입출력 함수(open, write, read 등) 예제 + _beginthreadex 함수
안녕하세요 JollyTree입니다 (•̀ᴗ•́)و
지난번에는 Win32 API인 ① CopyFile 함수를 이용한 파일 복사, ② FILE 스트림 함수를 이용한 파일 복사에 대해 살펴보았습니다. 이번에는 파일 복사하기 마지막 세 번째로 스레드를 이용한 ③ 저수준 파일 입출력 함수를 이용한 파일 복사 예제를 포스팅합니다. 전체적인 유형은 파일 스트림(FILE 포인터) 함수를 이용한 예제와 유사합니다.
🔗 파일 복사 방법 종류
① CopyFile 함수 이용 ② 파일스트림(FILE 구조체) 함수 이용 ③ 저수준 파일 입출력 함수 이용 |
🔗 저수준 파일 입출력 함수를 이용한 파일 복사 예제(Example):
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
|
#pragma warning(disable:4996)
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <io.h>
#include <windows.h>
#include <process.h>
#define FILE_OPEN_RONLY O_RDONLY | O_BINARY
#define FILE_CREATE O_CREAT | O_WRONLY | O_TRUNC | _O_BINARY
#define BUF_SIZE 4096
int copyFile(char* readFilename, char* writeFilename)
{
char readBuf[BUF_SIZE + 1];
int readfd, writefd;
int readLen;
struct stat st;
if ((readfd = open(readFilename, FILE_OPEN_RONLY)) == -1)
{
puts(" >> open 에러1");
return -1;
}
fstat(readfd, &st);
if ((writefd = open(writeFilename, FILE_CREATE, st.st_mode)) == -1)
{
puts(" >> open 에러2");
close(readfd);
return -1;
}
while ((readLen = read(readfd, readBuf, BUF_SIZE)) > 0)
{
if (write(writefd, readBuf, readLen) < readLen)
{
puts(" >> read / write 에러");
break;
}
else
putchar('.');
}
close(readfd);
close(writefd);
return 0;
}
unsigned int WINAPI copyFileService(void* params)
{
char sourceFile[] = "maincodes.zip";
char targetFile[] = "JollyTree.zip";
puts(" >> 스레드 시작");
if (copyFile(sourceFile, targetFile) != 0)
{
puts(" >> CopyFile() 에러");
return -1;
}
printf("\n >> [%s] 파일을 [%s] 파일로 복사하였습니다.", sourceFile, targetFile);
puts("\n >> 스레드 종료!!");
_endthreadex(0);
return 0;
}
int main()
{
unsigned int tid;
HANDLE mainthread;
mainthread = (HANDLE)_beginthreadex(NULL, 0, copyFileService, (void*)0, 0, &tid);
if (mainthread)
{
WaitForSingleObject(mainthread, INFINITE);
CloseHandle(mainthread);
}
puts(" >> 프로그램 종료!!");
return 0;
}
|
cs |
🔗 실행결과(Output):
이상 JollyTree였습니다. (•̀ᴗ•́)و