- 论坛徽章:
- 0
|
#include <stdio.h>
#include <dirent.h>
#include <sys/stat.h>
#include <stdlib.h>
int main( int argc,char *argv[] )
{
int iRet;
struct stat stDir;
char szCommand[512];
//判断命令行参数
if(argc != 2)
{
printf( "\n Plese input your dir \n");
return -1;
}
//检查目录是否存在,这里没有判断它是否可读
iRet = stat( argv[1], &stDir );
if( iRet != 0 )
printf( "Sorry ,The directry of [%s] is not exists !!! \n",argv[1] );
else
{
sprintf( szCommand,"cd %s >/dev/null 2>&1", argv[1] );
iRet = system(szCommand);
if( iRet !=0 )
return -1;
}
return 0;
}
[ 本帖最后由 linux_gao 于 2007-5-10 19:12 编辑 ] |
|