APUE Learning Example Source Code
guowenxue
2023-11-06 7856bf3569cc448fe3b360c3fca836593a0c0c7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
 
#define BUFSIZE 1024
#define MSG_STR "Hello World\n"
 
int main(int argc, char *argv[])
{
    int            fd = -1;
    int            rv = -1;
    char           buf[BUFSIZE];
 
    fd=open("test.txt", O_RDWR|O_CREAT|O_TRUNC, 0666);
    if(fd < 0)
    {
        perror("Open/Create file test.txt failure");
        return 0;
    }
    printf("Open file returned file descriptor [%d]\n", fd);
 
    if( (rv=write(fd, MSG_STR, strlen(MSG_STR))) < 0 )
    {
        printf("Write %d bytes into file failure: %s\n", rv, strerror(errno));
        goto cleanup;
    }
 
    //memset(buf, 0, sizeof(buf));
    if( (rv=read(fd, buf, sizeof(buf))) < 0 )
    {
        printf("Read data from file failure: %s\n", strerror(errno));
        goto cleanup;
    }
 
    printf("Read %d bytes data from file: %s\n", rv, buf);
 
cleanup:
    close(fd);
 
    return 0;
}