A portion of my code is as follows:
int fd_file;
....
while(condition)
{
fd_file = open(path,O_RDONLY);
if(fd_file == -1)
perror("Error opening file");
....
printf("\n %d",fd_file);
close(fd_file);
}
Withing the while, a file gets opened only once..i.e there is no other open() . The prorm opens a lot of files and after a while I get he error
error opening file:Too many open files
so I checked with the printf statement as seen above and see that I had expected the same file descriptor to be resused but no if in the first run fd_file is 2 then on the next it is 3 even if I had called close()
Why is it so and how do i get rid of this problem?
Thanks
if. – cnicutar Jul 13 '11 at 15:40