Copy Files Project

C++ Source Files in the Project:

cpfiles.cpp | copyfiles_utilities.cpp | filecopy.cpp

C++ Header Files in the Project:

cpfiles.h | copyfiles_utilities.h | filecopy.h

 

 
// =================================================================
// File Name:	filecopy.h
// Created by:	Xuan Sun
// Date:		Jan 2000
// =================================================================				

#ifndef _FILECOPY_H
#define _FILECOPY_H

BOOL copy_file(LPCTSTR szSource, LPCTSTR szDest, BOOL bCopyAttrib);
BOOL copy_file_to_path(LPCTSTR lpszSource, LPCTSTR lpszDestPath, BOOL bCopyAttrib);
BOOL copy_multi_files(LPCTSTR szSource, LPCTSTR szDest, BOOL bCopyAttrib);

#endif // !_FILECOPY_H