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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:29:36+00:00 2026-05-16T17:29:36+00:00

how do i load a file into my program so it’s just binary. i

  • 0

how do i load a file into my program so it’s just binary. i want to read the binary from a file then save it to another one so the file will be a clone of the first file (if it’s a exe it will run, etc). i would like to store the data in a array or string so i can edit it before i save it. im using windows 7 , microsoft c++ 2008.

  • 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-16T17:29:37+00:00Added an answer on May 16, 2026 at 5:29 pm

    Something like:

    [Edit: added necessary headers: ]

    #include <fstream>
    #include <algorithm>
    #include <vector>
    #include <ios>
    
    // define some place to hold the data:
    std::vector<char> binary_data;
    
    // open the file and make sure we read it intact:
    std::ifstream file("filename.exe", std::ios::binary);
    file.unsetf(std::ios_base::skipws);
    
    // read data from file into vector:    
    std::copy(std::istream_iterator<char>(file),
              std::istream_iterator<char>(),
              std::back_inserter(binary_data));
    
    // Edit the binary data as needed...
    
    // create new file: 
    std::ofstream new_file("new_file.exe", std::ios::binary);
    
    // Write data from vector to new file:
    std::copy(binary_data.begin(), 
              binary_data.end(),
              std::ostream_iterator<char>(new_file));
    

    This is pretty elementary C++ though — my immediate guess would be that you’re not really ready to deal with encryption if you don’t know this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to load a csv file into R from Java using JRI. For
I want to do two things in my browser: Load a text file into
I read the next answer about load file into java application . I need
When I want to read in an S-expression stored in a file into a
I want to load a txt file into an array like file() does in
I want to save my preferences for a program. I just want to know
I currently have a catalog of files I want to read into my program
I am trying to load some data from a text file into a vector
I have a rather odd program where I need to load a file into
Using COPY statement of PostgreSQL, we can load data from a text file into

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.