Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 654657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:31:05+00:00 2026-05-13T22:31:05+00:00

Is there an easy way to check if a file is empty. Like if

  • 0

Is there an easy way to check if a file is empty. Like if you are passing a file to a function and you realize it’s empty, then you close it right away? Thanks.

Edit, I tried using the fseek method, but I get an error saying ‘cannot convert ifstream to FILE *’.

My function’s parameter is

myFunction(ifstream &inFile)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:31:06+00:00Added an answer on May 13, 2026 at 10:31 pm

    Perhaps something akin to:

    bool is_empty(std::ifstream& pFile)
    {
        return pFile.peek() == std::ifstream::traits_type::eof();
    }
    

    Short and sweet.


    With concerns to your error, the other answers use C-style file access, where you get a FILE* with specific functions.

    Contrarily, you and I are working with C++ streams, and as such cannot use those functions. The above code works in a simple manner: peek() will peek at the stream and return, without removing, the next character. If it reaches the end of file, it returns eof(). Ergo, we just peek() at the stream and see if it’s eof(), since an empty file has nothing to peek at.

    Note, this also returns true if the file never opened in the first place, which should work in your case. If you don’t want that:

    std::ifstream file("filename");
    
    if (!file)
    {
        // file is not open
    }
    
    if (is_empty(file))
    {
        // file is empty
    }
    
    // file is open and not empty
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Java is there an easy way to check whether a given file conforms
Is there any easy way to check whether a path is valid? The file
Is there an easy way to check in a unit test that two arrays
Is there an easy way within C# to check to see if a DateTime
I just want to check if there is any easy way to limit zooming.
Is there an easy/build-in way to have a controller check if a connection is
Is there an easy way to check to see if someone has modified your
Is there an easy way to check an email address is valid using Ajax?
From the WAS admin console, is there an easy way to check which MDB
Is there an easy way to iterate over an associative array of this structure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.