show/hide this revision's text 2 Minor edit: grammar/spelling/case/punctation/etc.

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.

show/hide this revision's text 1

checking for file existence before trying to access it (instead of IO errors handling).

Common error of novice programmers. Instead of handling IO exceptions, they check file for existence.

Forget about File.Exists-like methods unless you use files as markers\locking objects. Always handle File IO errors when trying to read\write some meaningful data.

    Post Made Community Wiki by Community