본문 바로가기

My Study/Function

CopyFile

BOOL WINAPI CopyFile(
  __in  LPCTSTR lpExistingFileName,
  __in  LPCTSTR lpNewFileName,
  __in  BOOL bFailIfExists
);

파일을 복사하는 함수

lpExistingFileName : 복사할 파일 경로
lpNewFileName  : 새로운 파일 경로
bFailIfExists  : 덮어 쓸지 말지 True면 같은 파일 있으면 Fail, False면 덮어 쓰기

리턴값

성공 : nonzero
실패 : zero

'My Study > Function' 카테고리의 다른 글

SHGetSpecialFolderPath  (0) 2010.02.24
GetModuleFileName  (0) 2010.02.24
GetExitCodeProcess  (0) 2010.02.24
CloseHandle  (0) 2010.02.24
SetThreadPriority  (0) 2010.02.24