#include <iostream>
#include <string>
#include <windows.h>
using namespace std;
int main(int argc, char *argv[])
{
string szStandartPath;
char path[256];
cout<<"paste standard path"<<endl;
getline(cin,szStandartPath);
string pathWrite;
cout<<"paste path to write"<<endl;
getline(cin,pathWrite);
for(int i = 1;i<argc;i++){
FILE * fp;
if((fp = fopen(argv[i],"r")) == NULL){
continue;
}
while(!feof(fp)){
fgets(path,255,fp);
if(path[0] == ';' || path[0] == '/'){
continue;
}
string tmp = szStandartPath + "\\" + (LPCTSTR)path;
string tmp2 = pathWrite + "\\" + (LPCTSTR)path;
CopyFile(tmp.c_str(),tmp2.c_str(),true);
}
fclose(fp);
}
system("PAUSE");
return EXIT_SUCCESS;
}co program ma robic ? otoz ma odczytywac plik *.res i pliki ktorych sciezki sa tam napisane sa kopiowane do folderu ktory ja podam obecnie pliki nie sa kopiowane


Dodatki SourceMod



Temat jest zamknięty










