Auxiliary Functions for getting File Size

Source: Internet
Author: User

// The function that returns the file size. If true is returned, the result is obtained successfully. The unit of i64FileSize is KBbool GetFileSize (std: wstring wstrFilePath, LONGLONG & i64FileSize) {DWORD dwFileLengthLowWord = 0; DWORD dwFileLengthHighWord = 0; HANDLE hFile = CreateFile (wstrFilePath. c_str (), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_READONLY, NULL); if (hFile) {dwFileLengthLowWord =: GetFileSize (hFile, & dwFileLengthHighWord ); // close the file handle CloseHandle (hFile); if (dw FileLengthLowWord! = INVALID_FILE_SIZE) & (GetLastError ()! = NO_ERROR) {MessageBox (_ T ("An error occurred while obtaining the file size! "), _ T (" prompt "), MB_ OK); return false;} else {i64FileSize = (LONGLONG) dwFileLengthHighWord <32) | (LONGLONG) dwFileLengthLowWord ); i64FileSize = i64FileSize/1024;} else {MessageBox (_ T ("failed to open the file! "), _ T (" prompt "), MB_ OK); return false;} return true ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.