[질문] C++에서 파일 합치기.. (아직 미해결.... T_T)

bizzare의 이미지

제 설명이 부족했네요 -_-;; (수정했습니다.)

C++로 프로그램을 짜는데..

두개의 바이너리 파일이 있습니다.
A라는 파일과, B라는 파일...

이 두 파일을 하나의 파일로 합치는 프로그램을 짜고고 싶습니다.

A바로 뒤에 B를 붙이는 방식으로요. -_-;;

어떻게 하면 될까요? -_-;;;;

angpoo의 이미지

cat A B > C
또는
cat B >> A

bizzare의 이미지

그냥 프롬프트 상이 아니라..
C++로 코드를 만드는 겁니다. 죄송. T_T

정말 깨끗하고 멋진 프로그램을 짜고 싶습니다.

bizzare의 이미지

bizzare wrote:
제 설명이 부족했네요 -_-;; (수정했습니다.)

C++로 프로그램을 짜는데..

두개의 바이너리 파일이 있습니다.
A라는 파일과, B라는 파일...

이 두 파일을 하나의 파일로 합치는 프로그램을 짜고고 싶습니다.

A바로 뒤에 B를 붙이는 방식으로요. -_-;;

어떻게 하면 될까요? -_-;;;;

정말 깨끗하고 멋진 프로그램을 짜고 싶습니다.

morris의 이미지

file을 하나 열어서,

a를 다 복사하고 그뒤에 b를 다 복사해주면 됩니다.

peccavi의 이미지

1. 파일 A를 쓰기용으로 열고 파일 끝으로 이동한다.

2. 파일 B를 읽기용으로 열고 파일 B의 포인터가 EOF가 될때까지 byte단위로 데이터를 읽어 파일 A에 기록한다.

c++을 사용하신다면 fstream 을 이용하시면 간단할것 같습니다.

고전적인 방법을 사용하신다면 레퍼런스 찾아보시면 금방 해결하실 수 있을것 같구요.. ^^

cpp 레퍼런스 사이트 입니다.

http://www.cppreference.com

----
jai guru deva om...

doldori의 이미지

간단하게 다음의 방법을 쓰면 됩니다.

#include <fstream>
#include <algorithm>
#include <iterator>

using namespace std;

int main()
{
    ifstream fileA("A", ios_base::in | ios_base::binary);
    ifstream fileB("B", ios_base::in | ios_base::binary);
    ofstream fileC("C", ios_base::out | ios_base::binary);
    copy(istreambuf_iterator<char>(fileA), istreambuf_iterator<char>(),
         ostreambuf_iterator<char>(fileC));
    copy(istreambuf_iterator<char>(fileB), istreambuf_iterator<char>(),
         ostreambuf_iterator<char>(fileC));
}
doldori의 이미지

위에 올린 코드가 좀 지저분해 보여서 다른 버전을 올립니다.

#include <fstream> 

using namespace std; 

int main() 
{ 
    ifstream fileA("A", ios_base::in | ios_base::binary); 
    ifstream fileB("B", ios_base::in | ios_base::binary); 
    ofstream fileC("C", ios_base::out | ios_base::binary); 
    fileC << fileA.rdbuf();
    fileC << fileB.rdbuf();
} 

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.