Bonjour,
Etant débutant, je suis à la recherche de la bonne écriture sous C pour la création d'un nom de fichier variable
avec la date, du genre nomfic="c:\\ficddmmaa.txt" où :
- dd = jour
- mm = mois
- aa = année (il fallait s'en douter !)
La date est déja dispo par la fonction getdate(&dat) et la structure date dat.
Voici ce que j'ai fait pour l'instant :
1. #include<conio.h>
2. #include<dos.h>
3. #include<stdio.h>
4. #include<time.h>
5. #include<string.h>
6.
7. FILE *fichier;
8. char nomfic,jour,mois,annee;
9. struct date dat;
10.
11.
12. main()
13. {
14. clrscr();
15. getdate(&dat);16.
16. printf("%02d/%02d/%04d",dat.da_day,dat.da_mon,dat.da_year);
17. nomfic="c:\\fic";
18. jour=dat.da_day;
19. strcat(nomfic,jour);
20. mois=dat.da_mon;
21. strcat(nomfic,mois);
22. annee=dat.da_year;
23. strcat(nomfic,annee);
24. strcat(nomfic,".txt" );
25.
26. fichier=fopen(nomfic,"a+t" );
27.
28. /* traitement */
29.
30. fclose(fichier);
31. }
Avez-vous un moyen (très certainement) plus simple pour cette routine ?
Merci pour vos réponses
JB