首页  >  文章  >  后端开发  >  使用C/C++程序创建目录或文件夹

使用C/C++程序创建目录或文件夹

PHPz
PHPz转载
2023-08-28 23:17:061626浏览

使用C/C++程序创建目录或文件夹

在本教程中,我们将讨论使用 C/C++ 程序创建目录或文件夹的程序。

要创建新目录,我们将使用 mkdir() 命令。请注意,给定的代码仅适用于 Windows 编译器。

示例

#include <conio.h>
#include <dir.h>
#include <process.h>
#include <stdio.h>
void main(){
   int check;
   char* dirname = "tutorialspoint";
   clrscr();
   check = mkdir(dirname);
   //checking if directory is created
   if (!check)
      printf("Directory created\n");
   else {
      printf("Unable to create directory\n");
      exit(1);
   }
   getch();
   system("dir/p");
   getch();
}

输出

Directory created

以上是使用C/C++程序创建目录或文件夹的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除