If you ask an old-timer how to test for file existence,
they'll say, "Use GetFileAttributes ."
This is still probably the quickest way to test for file existence,
since it requires only a single call.
Other methods such as FindFirstFile or CreateFile
Read More...