본문 바로가기

Study Memos/Windows Programming

파일 크기 얻기 (Section 74)

참고> blog.naver.com/tipsware/221150263616

 

1. FindFirstFile 함수: 운영체제의 파일 테이블에서 파일의 상태 값을 가져오기 때문에 "다른 프로그램이 이 파일을 

사용하고 있어도" 잘 동작함.
  => WIN32_FIND_DATA 구조체의 file_info.nFileSizeLow의 값이 파일 크기.
  => 만일 파일 크기가 4GB 이상이라면 file_info.nFileSizeHigh 도 같이 읽어야함.

반응형

'Study Memos > Windows Programming' 카테고리의 다른 글

Resource에 Bitmap 넣고 사용하기 (Section 78)  (0) 2020.12.08
Windows와 Zip 파일 (Section 75)  (0) 2020.12.08
IStream (Section 73)  (0) 2020.12.08
Resource (Section 72)  (0) 2020.12.08
Drag and Drop (Section 71)  (0) 2020.12.08