I'm trying to copy files and interior directory's using std::filesystem::copy(),
But unfortunately he copy's only the files which inside the fromString path directory and not the directory's there,
What's wrong here?
std::filesystem::copy(fromString,toString);
Do I need to create those folders manually and copy what's inside manually?