1

所以这是我曾经使用过一些自我创建的错误检查的第一个程序之一,但是由于某种原因,当我编译它并使用它运行它时:

./file test1.txt test2.txt 10

我得到一个绝对错误,提示输出文件存在并且我已经检查了文件,即使我更改输出文件的名称(第二个参数)我什么也没有得到。有谁能帮忙吗?我已经绞尽脑汁好多年了。这是我在 Gentoo 中编译和运行的 UNIX 家庭作业。我让它在 VB 中运行,并且在我的 windows 和 linux 操作系统之间有一个链接文件夹。

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>

#define BUFFT 25

int main (int argc, char *argv[])
{
  int count;
  int readin;
  int writeout;

  printf ("This program was called  \"%s\".\n",argv[0]);

  if (argc > 1)
    {
      for (count = 1; count < argc; count++)
    {
      printf("argv[%d] = %s\n", count, argv[count]);
    }
    }
  else
    {
      perror("The command had no arguments.\n");
      exit(-1);

    }
    // check correct number of arguments parsed //


    if  (argc == 4)
    {
        printf("There are the correct number of arguments(4)\n");

        }
        else
        {
            perror("Not enough arguments! please try again \n");
            exit(-1);
            }
    //Check original file is there//

    int openFD = open(argv[1], O_RDWR);
    if (openFD <0)
    {
        perror("Error unable to read file \n");
        exit(-1);
    }

    //Check existence of output file, if it doesn't exist create it//

    int CheckFile = open(argv[2], O_RDONLY);
    if (CheckFile < 0)
    {
        perror("Error output file already exists \n");
        exit(-1);
        }
     else
     {
     int CheckFile = open(argv[2], O_CREAT);
     printf("The file has successfully been created \n");
     }

    //Create buffer

    int bufsize = atoi(argv[3]);
    char *calbuf;
    calbuf = calloc(bufsize, sizeof(char));

    //Read text from original file and print to output//

    readin = read(openFD, calbuf, BUFFT);
    if (readin < 0){
        perror("File read error");
        exit(-1);
    }
    writeout = write(openFD,bufsize,readin);
    if (writeout <0){
        perror("File write error");
        exit(-1);
    }


  return 0;
}
4

3 回答 3

1
    int CheckFile = open(argv[2], O_RDONLY);
    if (CheckFile < 0)
    {
        perror("Error output file already exists \n");

负返回open意味着文件无法打开,很可能是因为它不存在......这并不意味着文件已经存在。无法打开输入文件当然并不意味着输出文件已经存在。请更仔细地检查您的代码是否有明显的错误,例如,

int CheckFile = open(argv[2], O_CREAT);
printf("The file has successfully been created \n");

在这里你不检查返回码。

于 2012-09-21T05:38:24.853 回答
1

看看你的代码片段:

int CheckFile = open(argv[2], O_RDONLY);
if (CheckFile < 0)
{
    perror("Error output file already exists \n");
    exit(-1);
}

您是说试图以只读模式打开文件。从我在您的问题中读到的内容来看,如果文件不存在,这不是错误,但是在您验证相反的代码中,如果文件不存在,则抛出错误(实际上您的消息错误在这里不正确)。

仔细检查你的逻辑,你会找到你的解决方案。

于 2012-09-21T05:39:20.097 回答
1

对HANDLE CheckFile公开调用正在打印Error File Exists。这是你的问题。当找不到输出文件时,您打印出错误的语句,而且您正在退出,这会阻止代码创建任何语句。

int CheckFile = open(argv[2], O_RDONLY);
if (CheckFile < 0)
{
    //Means the file doesn't exist
    int CheckFile = open(argv[2], O_CREAT);
    // Check for errors  here
}

你为什么要这样做::

writeout = write(openFD,bufsize,readin);

当您的输出文件句柄是 CheckFile

于 2012-09-21T05:51:21.597 回答