newplan

阿基米德在洗澡時發現浮力原理,高興得來不及穿㆖褲子,跑到街㆖大喊:Eureka(我找到了)。
posts - 39, comments - 26, trackbacks - 0, articles - 4
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

 

#include <stdio.h>
#
include <stdlib.h>
#
include <dirent.h>
//#include  "apue.h"//such file can not be found in window

int main(int argc, char *argv[])
{
    
DIR  *dp;
    struct dirent   
*dirp;                             
    
if(argc !=2)
    {
printf("usage :ls directory_name");system("PAUSE"); 
    
exit(1);
   }
    
if((dp=opendir(argv[1]))==NULL)
    {
printf("cant open %s",argv[1]);system("PAUSE"); 
    
exit(1);
    }
    
while((dirp=readdir(dp))!=NULL)
      
printf("%s\n",dirp->d_name);
    
closedir(dp);
    
system("PAUSE"); 
    
system("PAUSE");
    
return 0;
}

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理