NEWCHDIR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <dir.h>
  4. #include <errno.h>
  5. void main (int argc, char *argv[])
  6.   {
  7.     char directory[MAXPATH];
  8.     if (argc == 1)  // Display the current directory
  9.       {
  10.         getcwd(directory, MAXPATH);
  11.         puts(directory);
  12.       }
  13.     else if ((chdir(argv[1])) && (errno == ENOENT))
  14.       puts("Invalid directory");
  15.   }
  16.