How to check which files I fopen'ed on Windows?
Posted
by Igor Oks
on Stack Overflow
See other posts from Stack Overflow
or by Igor Oks
Published on 2010-03-15T09:45:38Z
Indexed on
2010/03/15
9:49 UTC
Read the original article
Hit count: 346
I received a "Too many open files" error when tried to do fopen (C++, Windows XP). Probably it happened because somewhere in my program I open files without closing them.
Is there a way on Windows to see a list of all open file descriptors (or all files that my program fopened)?
© Stack Overflow or respective owner