왜 macOS가 표준 C 기능 대신이 기능을 사용하는지 잘 모르겠지만 "Mac OS X Unleashed"에서 몇 년 전에 읽은 내용이 정확하다고 가정하면 새로운 것을 다시 배웠습니다.
다음의 간단한 C 프로그램을보십시오 :
#include <stdio.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
int main()
{
struct timespec ts;
ts.tv_sec = 10;
ts.tv_nsec = 0;
FILE * fp;
fp = fopen("file.txt", "a");
int f = fileno(fp);
if (fp == NULL)
{
printf("Error opening file!\n");
exit(1);
}
struct stat file_stat;
int ret;
ret = fstat (f, &file_stat);
printf("inode number is %d\n", file_stat.st_ino);
nanosleep(&ts, NULL);
printf("Finished sleep, writing to file.\n");
/* print some text */
const char *text = "Write this to the file";
dprintf(f, "Some text: %s\n", text);
/* print integers and floats */
int i = 1;
float py = 3.1415927;
dprintf(f, "Integer: %d, float: %f\n", i, py);
/* printing single characters */
char c = 'A';
dprintf(f, "A character: %c\n", c);
close(f);
}
프로그램을 컴파일하고 백그라운드에서 실행 한 mv file.txt file2.txt
다음 프로그램이 "완료된 절전 모드에서 파일에 쓰기"를 인쇄하기 전에 신속하게 실행 하십시오. (10 초 남았습니다)
공지 사항 file2.txt
텍스트가 파일을 인쇄하기 전에이 (파일 기술자를 통해) 이동되었지만 프로그램의 출력을 가지고있다.
$ gcc myfile.c
$ ./a.out &
[1] 21416
$ inode number is 83956
$ ./mv file.txt file2.txt
$ Finished sleep, writing to file.
[1]+ Done ./a.out
$ cat file2.txt
Some text: Write this to the file
Integer: 1, float: 3.141593
A character: A
면책 조항 : 나는 "포함"목록을 정리하지 않았습니다, 이것은 요점을 증명하기 위해 신속하게 해킹되었습니다.
stat
여기보다 더 유용한 명령ls -di
입니다.