lalala
[mono.git] / mcs / class / corlib / System.IO / ChangeLog
index 6e9b4875131a48858a646ecfd698889fef6e0b41..bb20c936c2068df5435de79c3f4a7b1413911993 100644 (file)
@@ -1,3 +1,79 @@
+2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * BufferedStream.cs: On Position change, do not reset the buffer if the
+       new position is in the limits of the buffer. This fixes #49403.
+
+2003-04-03  Atsushi Enomoto <atsushi@ximian.com>
+
+       * Path.cs : ChangeExtension() does not remove dot(.) when extension is
+         an empty string.
+
+2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * FileSystemInfo.cs: Added InternalRefresh, a virtual method that derived
+         classes can override to perform class specific refreshing.
+       * FileInfo.cs: Refresh existence flag when Refresh is called.
+       * TextWriter.cs: Applied patch by Benjamin Jemlich for bug #52512.
+         The method Write(char) should do nothing by default.
+
+2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * BinaryReader.cs: don't modify the underlying stream in Peek(). Fixes
+       bug #51741. Patch by Nick Vaughan.
+
+2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * FileStream.cs: ReadByte(): when buffering is disabled, read the byte
+       with a direct call to ReadData. In InitBuffer(), if buffering is
+       disabled, create a buffer of one byte, to be used in ReadByte.  This
+       fixes bug #52361.
+
+2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * Path.cs: In GetDirectoryName, fixed check for volumeSeparator. This
+         fixes bug #53892.
+
+2004-03-24  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * File.cs: In Move, throw IOException instead of ArgumentException if 
+         destination is a directory.
+       * MonoIO.cs: In ExistsDirectory, return ERROR_PATH_NOT_FOUND instead of
+       ERROR_FILE_NOT_FOUND, since we are looking for a directory, not a file.
+       
+2004-03-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * StreamWriter.cs: Removed unneeded function
+
+2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * FileStream.cs: added support for asynchronous I/O without using the
+       OS native libraries if available.
+
+       * FileStreamAsyncResult.cs: IAsyncResult for asynch. I/O.
+
+       * MonoIO.cs: added BeginRead/Write, GetSupportsAsync. Open has now a
+       new parameter to tell ifthe file will be used for asynch operations.
+
+       * Stream.cs: BeginRead/Write do not use delegates. They just are
+       actually synchronous.
+
+       * StreamAsyncResult.cs: IAsyncResult for Stream.
+
+2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * Directory.cs: check if the error returned in Exists is different
+       from 'path not found' and throw the appropiate exception in that case.
+       See #55160.
+
+2004-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * MonoIO.cs: added case for ERROR_FILENAME_EXCED_RANGE.
+
+2004-02-25  Jackson Harper <jackson@ximian.com>
+
+       * File.cs: Report the filename when deleting a file fails. Patch
+       by Gert Driesen. Fixes bug #54855.
+       
 2004-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * FileStream.cs: remove dangling ^Ms.