浏览 8693 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-08-18
一、access函数 功能描述:
例如: #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> int main() { if((access("test.c",F_OK))!=-1) { printf("文件 test.c 存在.\n"); } else { printf("test.c 不存在!\n"); } if(access("test.c",R_OK)!=-1) { printf("test.c 有可读权限\n"); } else { printf("test.c 不可读.\n"); } if(access("test.c",W_OK)!=-1) { printf("test.c 有可写权限\n"); } else { printf("test.c 不可写.\n"); } if(access("test.c",X_OK)!=-1) { printf("test.c 有可执行权限\n"); } else { printf("test.c 不可执行.\n"); } return 0; } 运行结果如下: 二、如果在C中打印当前时间 下面是一个打印系统当前时间的小例子,函数的语法暂时就不列出了,只是会用这些就差不多了 #include <stdio.h> #include <time.h> int main() { time_t now = time(NULL); char buf[25]; strftime(buf,24,"%Y%m%d",localtime(&now)); printf("%s\n",buf); strftime(buf,24,"%Y-%m-%d %H:%M:%S",localtime(&now)); printf("%s\n",buf); strftime(buf,24,"%y%m%d %H:%M:%S",localtime(&now)); printf("%s\n",buf); strftime(buf,24,"%y%m%d",localtime(&now)); printf("%s\n",buf); strftime(buf,24,"%H:%M:%S",localtime(&now)); printf("%s\n",buf); return 0; } 运行结果: 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-09-20
这样是存在打印时间的,你可能还要设置一下打印的时间是多长
|
|
返回顶楼 | |