add create_dir

This commit is contained in:
lucaspalomodevelop 2023-01-07 12:46:16 +00:00
parent 9bca440efd
commit 9d18b94917
3 changed files with 13 additions and 0 deletions

8
create_dir/main.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
#include <filesystem>
int main()
{
std::filesystem::create_directory("sandbox");
return 0;
}

5
create_dir/makefile Normal file
View File

@ -0,0 +1,5 @@
dev: compile run
compile:
g++ -o program main.cpp
run:
./program

BIN
create_dir/program Executable file

Binary file not shown.