Probleme en c

Fermé
fayssal - 19 avril 2009 à 12:21
chuka Messages postés 965 Date d'inscription samedi 11 octobre 2008 Statut Membre Dernière intervention 29 juillet 2010 - 19 avril 2009 à 13:00
Bonjour,
comment copier un fichier dans language c et le coller dans une autre endroit en pricison l'ondroit

3 réponses

Mehdi4.0 Messages postés 52 Date d'inscription mardi 14 avril 2009 Statut Membre Dernière intervention 15 juin 2009 13
19 avril 2009 à 12:30
Jai pas compris ce que tu veut ya khouya !
0
mamiemando Messages postés 33446 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 20 décembre 2024 7 812
19 avril 2009 à 12:54
Peux-tu donner un exemple de ce que tu cherches à faire ?
0
chuka Messages postés 965 Date d'inscription samedi 11 octobre 2008 Statut Membre Dernière intervention 29 juillet 2010 378
19 avril 2009 à 13:00
Salut,
Si c'est sur windows, regarde le msdn à CopyFile().
BOOL WINAPI CopyFile(
__in LPCTSTR lpExistingFileName,
__in LPCTSTR lpNewFileName,
__in BOOL bFailIfExists
);
Parameters
lpExistingFileName [in]
The name of an existing file.

In the ANSI version of this function, the name is limited to MAX_PATH characters. To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path. For more information, see Naming a File.

If lpExistingFileName does not exist, CopyFile fails, and GetLastError returns ERROR_FILE_NOT_FOUND.

lpNewFileName [in]
The name of the new file.

In the ANSI version of this function, the name is limited to MAX_PATH characters. To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path. For more information, see Naming a File.

bFailIfExists [in]
If this parameter is TRUE and the new file specified by lpNewFileName already exists, the function fails. If this parameter is FALSE and the new file already exists, the function overwrites the existing file and succeeds

J'espere ca pourra t'aider!!
@+
0