продолжение темы www.linux.org.ru/view-message.jsp?msgid=4253320
Следующая нехитрая программа
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
int main(int argc, char* argv[]){
if (argc != 2){
fprintf(stderr, "specify path\n");
exit (-1);
}
struct stat stat_buf;
if (stat(argv[1], &stat_buf) != 0){
perror(NULL);
exit (-1);
}
fprintf(stderr, "success\n");
return 0;
}
Прошу подтвердить или опровергнуть.