[ xeron @ 09.09.2006. 13:20 ] @
Treba mi objasnjenje (detaljno ako nije prob.) sta radi ova funkcija:

Code:

CopyFile(_argv[0],find.cFileName, 0);


[ Nibble @ 09.09.2006. 19:20 ] @
Code:
CopyFile(Fajl_Koji_Hoces_Kopirati.extenzija,Gdje_Zelis_Kopirati.extenzija,FALSE/TRUE)

Stavi TRUE ako neces da tvoj fajl prepise vec postojeci fajl a FALSE ako to zelis.
evo opis iz MSDN-a

Code:

BOOL CopyFile(
  LPCTSTR lpExistingFileName,
                          // pointer to name of an existing file
  LPCTSTR lpNewFileName,  // pointer to filename to copy to
  BOOL bFailIfExists      // flag for operation if file exists
);
 
Parameters
lpExistingFileName 
Pointer to a null-terminated string that specifies the name of an existing file. 
lpNewFileName 
Pointer to a null-terminated string that specifies the name of the new file. 
bFailIfExists 
Specifies how this operation is to proceed if a file of the same name as that specified by lpNewFileName already exists. If this parameter is TRUE and the new file already exists, the function fails. If this parameter is FALSE and the new file already exists, the function overwrites the existing file and succeeds. 
Return Values
If the function succeeds, the return value is nonzero.
[ xeron @ 09.09.2006. 22:52 ] @
a znacenje ovoga:

Code:

_argv[0]



... i hvala za odgovor !
[ Nibble @ 10.09.2006. 13:37 ] @
Kada kompajliras program i npr. ime tvog programa je test.exe, pozoves iz cmd.exe
Code:
test.exe C:\fajl.exe D:\NoviFajl.exe

u arg[0] ce se nalaziti "C:\fajl.exe" a u arg[1] ce biti "D:\Novifajl.exe" i tako...
[ xeron @ 10.09.2006. 14:26 ] @
ok, hvala puno na pomoci.