使用c从一个txt文件复制到另一个文件

时间:2015-06-30 07:39:54

标签: c copying

我在复制txt文件时遇到问题。我需要从一个文件到另一个文件的信息。

我的代码看起来像这样,

_tprintf (TEXT("%s\n"), FindFileData.cFileName);

memset(fileName, 0x00, sizeof(fileName));
_stprintf(fileName, TEXT("%s\\%s"), path, FindFileData.cFileName); //iegust

FILE *fptr = fopen(fileName, "r");//atver

fscanf(fptr,"%[^\n]",c); //iegust datus no faila
printf("Data from file:\n%s",a);

strcpy(a, c); //nokope datus
buffer2 = strtok (c, ","); //norada partraukumu un tadas lietas
while (buffer2) {
        buffer2 = strtok (NULL, ",");
        if(i<1){ printf("%s\n", c);} 
        i++;
        while (buffer2 && *buffer2 == '\040'){
                buffer2++;
                // TODO ieliec iekavinas
        }
}

然后我使用基本的fputs()。 我的问题是这段代码忽略了新行。它打印出很好的,每个字符串都在它自己的行中,但这不会发生在文件中。 (\ n)的

1 个答案:

答案 0 :(得分:1)

您的问题是您只需要将信息从一个文件复制到另一个文件。那么,为什么你不使用简单的解决方案来做到这一点。我有一个snipet代码可以轻松解决您的问题,如下所示。

如果我对你的问题不对,请给我建议。

#include <stdio.h>
#include <stdlib.h> // For exit()

int main()
{
    FILE *fptr1, *fptr2;
    char filename[100], c;

    printf("Enter the filename to open for reading \n");
    scanf("%s", filename);

    // Open one file for reading
    fptr1 = fopen(filename, "r");
    if (fptr1 == NULL)
    {
        printf("Cannot open file %s \n", filename);
        exit(0);
    }

    printf("Enter the filename to open for writing \n");
    scanf("%s", filename);

    // Open another file for writing
    fptr2 = fopen(filename, "w");
    if (fptr2 == NULL)
    {
        printf("Cannot open file %s \n", filename);
        exit(0);
    }

    // Read contents from file
    c = fgetc(fptr1);
    while (c != EOF)
    {
        fputc(c, fptr2);
        c = fgetc(fptr1);
    }

    printf("\nContents copied to %s", filename);

    fclose(fptr1);
    fclose(fptr2);
    return 0;
}