We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to throw in the constructor of my filesystem if the file I'm loading can't be found (e.g. to mount a tar file).
The text was updated successfully, but these errors were encountered:
I don't really understand, could you give a example ?
Sorry, something went wrong.
public class Operations : IDokanOperations public Operations(string TarFile) { if (!File.Exists(TarFile)) { throw new DokanException(...); } ...
Instead I can throw from the mounter exe, it doesn't change much - just wondering.
Ok I see ! I don't this is the purpose of DokanException to be used like in your exemple. It is only used in case the C part of dokan have failed.
No branches or pull requests
I'd like to throw in the constructor of my filesystem if the file I'm loading can't be found (e.g. to mount a tar file).
The text was updated successfully, but these errors were encountered: