stream<<"abc"<<variable; 질문입니다

minyoung347의 이미지

안녕하세요 c++ 초보입니다
텍스트 파일에 있는 날짜(ex: 01092008)와 코드(ex: 1234)번호를 한 줄씩 읽어와서
./data/01092008/1234 라는 디렉토리를 만들려고 합니다

아래는 해당 코드인데 오류는 나지 않지만 폴더가 만들어지지 않습니다
그런데 주석처리한 cout을 실행하면 ./data/01092008/1234라고 정상적으로 나옵니다
간단한 문제 같아서 하루종일 혼자 해결하려고 했는데 잘 되지 않아서 질문합니다
폴더가 왜 만들어지지 않는지 알려주시면 감사하겠습니다. 꾸벅
(우분투 14.04, g++ 사용하고 있습니다)
그리고 주석처리한 부분을 실행하면 ./data 폴더는 정상적으로 만들어집니다

#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <sys/stat.h>
using namespace std;
 
int main()
{
ostringstream stream;
ifstream datefile("date.txt");
ifstream code("code.txt");
datefile.is_open();
code.is_open();
string date_string;
string code_string;
 
while(getline(datefile,date_string))
{
    while(getline(code,code_string))
    {
        ostringstream stream;
        stream<<"./data/"<<date_string<<"/"<<code_string;
        //stream<<"./data";
        string a=stream.str();
        //cout<<a.c_str()<<endl;
        int b=mkdir(a.c_str(),S_IRWXU);
        stream.clear();
    }
}
datefile.close();
code.clode();
return 0;
}
twinwings의 이미지

1. 주석 부분 지워도 저는 디렉토리 만들어 지지 않네요.

2. 예상대로 작동하지 않는 부분은 에러 메세지 출력해 확인해 보세요.

#include <cstdio>
...
 
if(mkdir(a.c_str(),S_IRWXU) < 0)
{
    perror("mkdir():");
    return -1;
}
...

3. ostringstream stream가 두 번 선언 되었습니다.(10, 22 line)

4. code.txt가 반복문 안에서 열려야 될 듯 하네요.
날짜가 3개, 코드가 3개가 주어지면
질문자가 작성한 코드대로라면, 코드 디렉토리 최초 한번만 생성됩니다.
날짜3개*코드3개 = 9개 의도하신 것 같은데

5. 예외처리가 잘못되었습니다.

ifstream datefile("date.txt");
if(!datefile.is_open() < 0)
{
    perror("datefile("date.txt"): ");
    return -1;
}
 
ifstream code("code.txt");
if(!code.is_open())
{
    perror("code("code.txt"): ");
    return -1;
}

대충 만진 코드는 다음과 같습니다.

돌아가긴 하는데 그다지 좋은 코드는 아닌거 같군요.

#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <sys/stat.h>
#include <cstdio>
using namespace std;
 
int main()
{
    ifstream datefile("date.txt");
    if(!datefile.is_open() < 0)
    {
        perror("datefile('date.txt'): ");
        return -1;
    }
 
    string date_string;
    string code_string;
 
    if(mkdir("./data",S_IRWXU) < 0)
    {
        std:perror("mkdir('./data': ");
        return -1;
    }
 
    while(getline(datefile,date_string))
    {
        if( mkdir((std::string("./data/") + date_string).c_str(),S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < 0)
        {
            std::perror("mkdir(std::string('./data') + date_string,S_IRWXU): ");
            return -1;
        }
 
        ifstream code("code.txt");
        if(!code.is_open())
        {
            perror("code('code.txt'): ");
            return -1;
        }
 
        while(getline(code,code_string))
        {
            ostringstream stream;
            stream<<"./data/" << date_string << "/" << code_string;
            //stream<<"./data";
            string a=stream.str();
            //cout<<a.c_str()<<endl;
            if( mkdir(a.c_str(),S_IRWXU) < 0)
            {
                std::perror("mkdir(a.c_str()): ");
                return -1;
            }
            stream.clear();
        }
        code.close();
    }
    datefile.close();
    return 0;
}
twinwings의 이미지

예외처리 조건식 잘못되서 수정합니다.

ifstream datefile("date.txt");
if(!datefile.is_open()) // datefile.is_open() < 0가 아님. C코드랑 C++코드 섞였더니 헷갈렸네요..
{
    perror("datefile("date.txt"): ");
    return -1;
}
qiiiiiiiip의 이미지

mkdir() 은 intermediate 디렉토리를 자동으로 생성하지 않습니다. (mkdir -p)
즉 mkdir("./A/B/C",...); 라고 하면 ./A/B 는 미리 있어야합니다.

minyoung347의 이미지

두 분 모두 친절한 답변 감사합니다
문제를 해결했습니다
조언 감사드립니다^^

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.