1. 목적 binary 및 text 파일을 읽기 및 쓰기 입니다. 파일 복사 및 암호화 파일 읽을때 유용합니다. 2. 필요 헤더 #include 2. 사용함수 1) Read 함수 (1) 함수 명 : ifstream (2) 핵심 옵션 : ifstream 핵심 옵션 std::ifstream::binary (3) 함수 선언 : explicit basic_ifstream( const char* filename, std::ios_base::openmode mode = ios_base::in ); (4) 참조 : https://en.cppreference.com/w/cpp/io/basic_ifstream 2) write 함수 (1) 함수 명 : ofstream (2) 핵심 옵션 : std::ios::out | st..