- 论坛徽章:
- 0
|
知道文件名,查看/proc文件中是否存在这个文件。。。
部分代码:
.
.
.
char *q="/proc";
dir=opendir(q);
if(dir==NULL){
perror("fail to open dir");
exit(1);
}
int errno=0;
while((ptr=readdir(dir))!=NULL){
while(ptr->d_type==DT_DIR){
if(strcmp(ptr->d_name,filename)==0){
printf("the %s process existed!\n",filename);}
else
printf("the %s process not existed!\n",filename);
}
}
if(errno!=0)
{
perror("fail to read dir\n");
exit(1);
}
closedir(dir);
exit(0);
.
.
.
执行程序 程序没有错误 但是程序一直运行 不出现结果也不结束。。。
[ 本帖最后由 cyg19860205 于 2009-4-2 13:43 编辑 ] |
|