在本教程中,我们将讨论使用 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中文网其他相关文章!