TedN Posted December 12, 2006 Posted December 12, 2006 Is there a way to determine if a FileStream, CryptoStream, etc. is closed or open. I've tried things like: If fs.Closed() = True Then Blah, blah End If But that doesn't work. Thanks, Ted Quote
MrPaul Posted December 12, 2006 Posted December 12, 2006 CanRead and CanWrite I suggest checking both the CanRead and CanWrite properties. If the Stream is closed, they will both return false. If the Stream is open, I would expect at least one of them to return true, otherwise the Stream is essentially useless. If Not (fs.CanRead Or fs.CanWrite) Then 'Assume closed End If Good luck :cool: Quote Never trouble another for what you can do for yourself.
TedN Posted December 29, 2006 Author Posted December 29, 2006 Thanks Paul. That solved my problem Regards, Ted Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.