如何编写C中的程序,可以将文件(由源文件路径,例如/输入/输入?TXT)复制到现有目录中?目录中的复制文件必须与输入文件具有完全相同的名称。
这是我目前掌握的一段代码:

int copyfile1(char* infilename, char* outfileDir) {
FILE* infile; //File handles for source and destination.
FILE* outfile;
DIR* outfileDir;

infile = fopen(infilename, "r"); // Open the input and output files.
if (infile == NULL) {
  open_file_error(infilename);
  return 1;
}

outfileDir = opendir(outfilename);
if (outfile == NULL) {
  open_file_error(outfilename);
  return 1;
}

outfile = fopen(infilename, "w");

我被困在这里了。我现在不知道如何处理输出文件,因为它应该在目录中。如果我使用fopen(),它将仅在当前目录中创建。
任何帮助都将不胜感激。
谢谢!

最佳答案

您可以使用basename(3)--http://linux.die.net/man/3/dirname

int copyfile1(char* infilename, char* outfileDir) {
    FILE* infile; //File handles for source and destination.
    FILE* outfile;
    char outfilename[PATH_MAX];

    infile = fopen(infilename, "r"); // Open the input and output files.
    if (infile == NULL) {
      open_file_error(infilename);
      return 1;
    }
    sprintf(outfilename, "%s/%s", outfileDir, basename(infilename))

    outfile = fopen(outfilename, "w");

09-06 04:52