Mianowicie jak stworzyć folder za pomocą języka c++ i fajnie by było terz automatycznie otworzyć plik po skąpilowaniu kodu.
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream file;
file.open("tekst.txt", ios::out);
if (file.is_open())
{
file << "tekst" << endl;
file << "test2" << endl;
}
else
{
cout << "Nie udalo sie otworzyc pliku :(" << endl << endl;
}
return 0;
}