0
#include<stdio.h>
#include <string.h>
int main()
{
 /*The output file*/
FILE *fo;

/*The input file*/
FILE *fi;

/*The current character we are on*/
char c[2];
c[1]=0;

/*The array to build the word we are on*/
char *s=malloc(900000);

/* Opens the file for reading */
fi=fopen("d.txt","r");
c[0]=getc(fi);
/* While loop responsible for reading current character,
 creating the string of directories linked to that character
 , and placing the word at the end*/
while(c[0]!=EOF)
{
strcat(s,"lib\\");
/*While loop that checks the current char for a space or a newline*/
    while((c[0]!=' '&&c[0]!='\n'))
    {


       strcat(s,c);

    strcat(s,"\\");
 c[0]=getc(fi);
    }
    printf(s);
    /*Makes the directory following the string of characters (IE: Character would be c\h\a\r\a\c\t\e\r)*/
    mkdir(s);

    s=malloc(9000);
c[0]=getc(fi);

}


return 0;
}

編集:

解決策は次のようなものであることがわかります。

  char *s=(char* )malloc(600);


   ...
    while(c[0]!=EOF)
    {
    strcpy(s,"lib");
    ...
    strcat(s,"\\");
        strcat(s,c);
...
mkdir(s,0777);
 printf(s);
    s=(char* )realloc(s,600);

ただし、これを行っても、mkdir ステートメントによってディレクトリが作成されないという問題は解決しません。ほとんどのエラーを修正しました。唯一の問題は、すべてを完了するのにかかる時間を短縮し、最初に意図したディレクトリを作成することです。

4

2 に答える 2

0
char c;
...
c=getc(fi);
...
strcat(s,(char*)c);

このコードは機能しませんでした: strcat は 2 つの文字列を検査し、文字列が値 0 で終わることがわかっています。

あなたがしなければなりません

char c[2];
c[1] = 0;
...
c[0] = getc(fi);


   ...

   strcat(s, c);

また、strcat は s を再割り当てしません。s に適切なサイズを割り当てたのはあなたの責任です。

編集:

ループの最後に: s=NULL;=> C != Java.

最初に で s を割り当てmalloc、最終的に で再割り当てしrealloc、 で解放する必要がありfreeます。strcat はメモリを割り当てません。文字列から文字列を含むバッファにバイトをコピーするだけです。

于 2013-10-29T22:00:01.207 に答える