checking Checking for file existence before trying to access it (instead of IO errors I/O error handling).
Common error of novice programmers. Instead of handling IO I/O exceptions, they check file for existence.
Forget about File.Exists-like methods unless you use files as markers\locking objects. Always handle File IO file I/O errors when trying to read\write read/write some meaningful data.
