스레드 이용하여 파일 복사 하기(2/3) - FILE 스트림 함수(fopen, fwrite, fread 등) 예제 + _beginthreadex 함수
안녕하세요 JollyTree입니다 (•̀ᴗ•́)و
지난번에는 Win32 API인 ① CopyFile 함수를 이용한 파일 복사 방법에 대해 살펴보았습니다. 이번에는 파일 복사하기 두 번째로 스레드를 이용한 ② FILE 스트림 함수를 이용한 파일 복사 예제를 포스팅합니다.
🔗 파일 복사 방법 종류
① CopyFile 함수 이용 ② 파일스트림(FILE 구조체) 함수 이용 ③ 저수준 파일 입출력 함수 이용 |
🔗 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
|
#pragma warning(disable:4996)
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <io.h>
#include <windows.h>
#include <process.h>
#define BUF_SIZE 4096
int copyFile(char* readFilename, char* writeFilename)
{
FILE* readfp = NULL, *writefp=NULL;
char readBuf[BUF_SIZE + 1]="";
int readLen, writeLen;
if( (readfp = fopen(readFilename, "rb"))==NULL)
{
puts("fopen 에러1");
return -1;
}
if ((writefp = fopen(writeFilename, "wb")) == NULL)
{
puts("fopen 에러2");
fclose(readfp);
return -1;
}
while ((readLen = fread(readBuf, sizeof(char), BUF_SIZE, readfp)) > 0)
{
if ((writeLen = fwrite(readBuf, sizeof(char), readLen, writefp)) < readLen)
{
puts("fread / fwrite 에러");
break;
}
else
putchar('.');
}
fclose(readfp);
fclose(writefp);
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(" >> [%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였습니다. (•̀ᴗ•́)و