[Mono-list] Directory.cs : PathTooLongException not thrown.

2004-03-02 Thread Rathna N
Hi, I wrote a TestFixture to test PathTooLongException and executed same against .Net and Mono,   In Mono methods in the Directory class, which are expected to throw PathTooLongException are not throwing this exception as it does in .NET.   Different kinds of exceptions are thrown for same inpu

[Mono-list] FileInfo.Exists() returns false after calling FileInfo.Create()

2004-01-29 Thread Rathna N
Hi, FileInfo.Exists() returns false in the below scenario.   1. FileInfo info = new FileInfo (path);2. AssertEquals ("test#01", false, info.Exists); //--> returns "false"3. info.Create();4.  AssertEquals ("Exits - test#02", true, info.Exists); //--> returns "false"   is this the expected behavio