Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

สร้างไดเร็กทอรีหรือโฟลเดอร์ด้วยโปรแกรม 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