How can I check if IOException is a "Not enough disk space" exception type?
At the moment I check to see if the message matches something like "Not enough disk space", but I know that this won't work if the OS language is not English.
|
How can I check if At the moment I check to see if the message matches something like "Not enough disk space", but I know that this won't work if the OS language is not English. |
|||||||||||||||||
|
|
You need to check the To get the HResult for an exception use Marshal.GetHRForException
Note that
See also How do I determine the HResult for a System.IO.IOException? |
|||||||||||||||||
|
|
Well, it's a bit hacky, but here we go. First thing to do is to get the
Now, in your catch scope, you can get the
From here, you'll have to interpret the HResult. You'll need this link. We need to get the
Now, refer to the list of system error codes and here we are:
So test it using:
Maybe there are some "higher level" functions to get all this stuff, but at least it works. |
||||
|
|
|
System.IOException has a number of derived Exception types, however none of these derived type sound like your exception. You can look at the HResult or the Data property of the exception, perhaps this will have a more specific error code detailed. According to MSDN both those properties are part of that exception type. Just make sure you are try catching the specific exception type, not just the base Exception type. |
|||||
|
|
It is an implementation detail, but all IOExceptions are raised because of errors returned by pinvoked Windows api functions. Which leave a trace that you can benefit from:
Error codes are documented in the WinError.h SDK header file. Beware that actually using code like this is iffy, it always takes a user intervention to recover from these errors. Nothing you could or should try to handle yourself. |
|||||||||||
|