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 6880515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:59:03+00:00 2026-05-27T04:59:03+00:00

I have been Googling around, and cannot lock on to what I am trying

  • 0

I have been Googling around, and cannot lock on to what I am trying to do. I get things about reading a ‘binary file’ but in these links, people mention headers and formatting, which seems contrary to what I am after.

end goal: encrypt any file in a picture (assuming the picture is big enough for the file).

starting goal: read in any file of any extension into a c++ vector (or whatever — if something is superior, I am up for suggestions) and then rewrite that same file onto the hard drive under a different name. After, I want to check to see if the file still works/is the same size/etc.

So I am trying to make sure I have the ability to suck in a file into ‘A’ and be able to write a file once it’s in ‘A’ before I splice up the contents of ‘A’ and stick it into an image.

Thank you for your references.

  • 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-27T04:59:03+00:00Added an answer on May 27, 2026 at 4:59 am

    There are better (and more efficient) ways to copy a file. However to answer your specific question:

    #include <fstream>
    #include <vector>
    
    int main()
    {
       std::ifstream in("input_file", std::ios::binary);
    
       auto beg = in.tellg();
       in.seekg(0, std::ios::end);
       auto end = in.tellg();
    
       auto sz = end - beg;
    
       std::vector<char> outbuf;
    
       if(0 != sz)
       {
          in.seekg(0, std::ios::beg);
          outbuf.resize(sz);
    
          in.read(&outbuf[0], outbuf.size());
    
          std::ofstream out("output_file", std::ios::binary);
          out.write(&outbuf[0], outbuf.size());
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been googling around and reading on SO, but nothing worked. I have a
I've been Googling around and looking at Emacs built-in help but I have yet
I am trying run geotools on the web and have been googling around how
Been googling around but I can't find any help on this. I am trying
I have been googling and reading various posts around the net and I've tried:
I have been googling around for about an hour, and I still don't found
I have been googling around this issue, but could not find clear and definitive
I have been Googling a problem that I have with trying to integrate the
Have been trying to encrypt an xml file to a string so that I
Have been reading about async and tasks and been attempting to convert the CopyFileEx

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.