mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
add create_dir
This commit is contained in:
parent
9bca440efd
commit
9d18b94917
8
create_dir/main.cpp
Normal file
8
create_dir/main.cpp
Normal 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
5
create_dir/makefile
Normal file
@ -0,0 +1,5 @@
|
||||
dev: compile run
|
||||
compile:
|
||||
g++ -o program main.cpp
|
||||
run:
|
||||
./program
|
||||
BIN
create_dir/program
Executable file
BIN
create_dir/program
Executable file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user