첨부 파일을 참고 하세요.
/// @brief 파일이나 디렉토리가 있는지 확인.
bool IsExist(const string & file);
// 파일 경로와 관계된 모든 부모 디렉토리를 만든다.
bool DigPath( const string & fullPath );
// 디렉토리인지 알아냄.
bool IsDirectory( const string & path );
// 조건 1. src_file 및 dst_file은 풀 파일명이여야 함.
bool FileCopy(const string & src_file, const string & dst_file);
bool FileMove(const string & src_file, const string & dst_file);
bool CopyDir(const string & src_dir, const string & dst_dir, const bool src_remove);
bool MoveDir( const string & src_dir, const string & dst_dir );
// . .. 디렉토리인지 검사.
bool IsDotDirectory( const string & x );
/// @brief 파일인지 검사함.
bool IsFile(const string & src);
/// @brief 파일이나 디렉토리가 있는지 확인.
bool IsExist(const string & file);
// 파일 경로와 관계된 모든 부모 디렉토리를 만든다.
bool DigPath( const string & fullPath );
// 디렉토리인지 알아냄.
bool IsDirectory( const string & path );
// 조건 1. src_file 및 dst_file은 풀 파일명이여야 함.
bool FileCopy(const string & src_file, const string & dst_file);
bool FileMove(const string & src_file, const string & dst_file);
bool CopyDir(const string & src_dir, const string & dst_dir, const bool src_remove);
bool MoveDir( const string & src_dir, const string & dst_dir );
// . .. 디렉토리인지 검사.
bool IsDotDirectory( const string & x );
/// @brief 파일인지 검사함.
bool IsFile(const string & src);