0

ユーザーがファイルに何かを書き込めるようにするCプログラムを作成しようとしています。私の問題は、プログラムを作成して実行した後、ファイルが空のままになることです?? どうすればこれを解決できますか。

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>


// the user should give a  file to write the file
int main (int argc , char**argv)
{
    int fd; // file descriptor
    char ret; // the character
    int offset;
    if(argc != 2) {
        printf("You have to give the name or the path of the file to work with \n");
        printf("Exiting the program \n")
        return -1;
    }



    fd = open (argv[1], O_WRONLY/*write*/|O_CREAT/*create if not found */, S_IRUSR|S_IWUSR/*user can read and write*/);
    if (fd == -1) {
        printf("can'T open the file ");
        return -1;
    }

    printf("At wich position you want to start ");
    scanf("%d",&offset);
    lseek(fd,offset,SEEK_SET);
    while(1) {
        ret = getchar();
        if(ret == '1') {
            printf("closing the file");
            close (fd);
            return 1;
        }
        else
            write (fd,red, sizeof(char));
    }

    return 0;
}

助けてくれてありがとう。

4

3 に答える 3

3

私はいくつかの変更を加えましたが、これはうまくいくはずです:

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>

int main (int argc , char**argv) 
{
   int fd; // file descriptor 
   char ret; // the character 
   int offset; 
   if(argc != 2){
     printf("You have to give the name or the path of the file to work with \n");
     printf("Exiting the program \n"); **//There was ';' missing here**
     return -1;
  }
  fd = open (argv[1], O_WRONLY|O_CREAT,S_IRUSR|S_IWUSR);
  if (fd == -1) {
     printf("can'T open the file ");
     return -1;
  }

  printf("At wich position you want to start ");
  scanf("%d",&offset);
  lseek(fd,offset,SEEK_SET);
  while(1){
     ret = getchar();
     if(ret == '1'){
     printf("closing the file");
     close (fd);
     return 1;
  }
  else 
     write (fd,&ret, sizeof(char)); **//red has been changed to &ret**
}

  return 0;

}

于 2013-05-18T13:43:36.273 に答える
2

そのはず:

write (fd,&ret, sizeof(char));

write はメモリ位置へのポインターを受け取ります。ret は単一の文字であるため、ポインターを渡す必要があります。

于 2013-05-18T13:44:13.947 に答える