[Linux C]-Linux C 確認檔案是否存在
本篇要分享Linux C 確認檔案是否存在的相關範例,歡迎有興趣的同好,一起來(C/P)一下。
#include <sys/stat.h> /* struct stat, fchmod (), stat (), S_ISREG, S_ISDIR */
#include <stdio.h>
int main (int argc, char *argv[])
{
struct stat sts;
if ((stat (argv [1], &sts)) == -1)
{
printf ("The file %s doesn't exist...\n", argv [1]);
}
else
{
printf ("The file %s does exist...\n", argv [1]);
}
return 0;
}
|
沒有留言:
張貼留言