I always check/test these:
- Does the path + filename contain illegal characters for the given filesystem?
- Does the file already exist? (Bad)
- Does the path already exist? (Good)
- If the path is relative: am I expecting it in the right parent directory (mostly
bin/Debug
;-) )?
- Is the path writable for the program and as which user does it run? (Services can be tricky here!)
- Does the full path really, really not contain illegal chars? (some unicode chars are close to invisible)
I never had any problems with Bitmap.Save()
apart from this list.