我创建了这个函数来打印文件内容:
void afficher (char * nomFichier){
if( nomFichier == NULL )
printf("Erreur : %s\n",nomFichier);
else
{
char buf[15];
int nb;
int fd = open(nomFichier,O_RDONLY);
if(fd == -1) printf ("Erreur ouverture : %s\n",nomFichier);
else
{
printf("Fichier : %s\n",nomFichier);//print the file name
while((nb = read(fd,buf,15)) > 0){
write(1,buf,nb);
}
printf("\n");
close(fd);
}
}
}
问题是,当我在已将标准输出复制到文件的程序中调用此函数时(本例中为 fichierSortie)
int fd = open(fichierSortie, mode, 0666 );
if( fd == -1 ) // erreur
Erreur("Erreur lors de création du fichier : ",2);
printf("%d\n",dup2(fd,1)); // on redirige la sortie standard
close(fd);
afficher(filename);
我懂了 :
line1
line2
last line of the file
Fichier : filename
但通常我应该得到
Fichier : filename
line1
line2
last line of the file
谢谢