View Single Post
  #15  
Old 25-04-2004, 13:18
Samva's Avatar
Samva Samva is offline
Niaisüre within
 
Join Date: 24-04-2003
Location: Tours
Age: 41
Posts: 2,320
Send a message via ICQ to Samva Send a message via MSN to Samva
Re: probleme de compil dans une fonction en c

recupere l'erreur retournée par la fonction remove via errno...

extern int errno;
et apres tu fais un truc du genre
remove(NomFicSource);
if (errno==EACCESS) printf("impossible d'acceder...");
if (errno==ENOENT) printf("Fichier introuvable blablabla");


Deja ca peut t'apporter un debug...
__________________
For the End-of-the-World spell, press "Ctrl, Alt, Delete."


Reply With Quote