New test.
[mono.git] / mcs / class / corlib / System.IO / ChangeLog
index c6b2af573c49959ac6055686d4d56d791a88a394..8698059b00f6ef70ba2e884779c916d2a06b026f 100644 (file)
@@ -1,3 +1,69 @@
+2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * FileInfo.cs: added 2.0 IsReadOnly. Patch by Joel Reed.
+
+2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * FileInfo.cs: eol-style.
+
+2006-09-19  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * FileNotFoundException.cs: Changed message for default ctor to match
+       MS. Use internal message field of Exception to check whether Message
+       is null. On 2.0 profile, use file/assembly load failure message when
+       no message is set and a filename was specified. On 1.0 profile,
+       always use file/assembly load failure message when no message is set
+       (regardless of whether a filename was specified or not). Made some
+       cosmetic changes to ToString to have it match MS.
+
+2006-09-02  Zoltan Varga  <vargaz@gmail.com>
+
+       * BinaryReader.cs (Read): Avoid allocating memory when reading a char.
+
+2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * StreamReader.cs: avoid ArgumentOutRangeException when the underlying
+       stream returns -1 on Read.
+
+2006-08-30  Lluis Sanchez Gual  <lluis@novell.com>
+
+       * FileInfo.cs: OpenRead should open the file using the Read share mode.
+
+2006-08-21  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * Path.cs: Added internal method IsPathSubsetOf required to implement
+       correctly FileIOPermission (better located here).
+
+2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * File.cs: (Delete) avoid creating the exception object for the 'file
+       not found' case.
+
+2006-07-24  Miguel de Icaza  <miguel@novell.com>
+
+       * FileShare.cs: Add Delete in 2.0
+
+2006-07-06  Dick Porter  <dick@ximian.com>
+
+       * Directory.cs: When creating a directory treat ERROR_FILE_EXISTS
+       (ie a file already exists with that name) the same as
+       ERROR_ALREADY_EXISTS (ie a directory already exists with that
+       name.)  Keeps bug 50753 fixed when I fix the io-layer
+       CreateDirectory() behaviour.
+
+2006-06-21  Atsushi Enomoto <atsushi@ximian.com>
+
+       * Directory.cs : implemented GetFiles() and GetDirectories() which
+         takes SearchOption (as they are used in one of ruby.net stuff).
+
+2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * File.cs: never throw in Exists.
+
+2006-05-18  Miguel de Icaza  <miguel@novell.com>
+
+       * Directory.cs (Exists): Ignore INVALID_HANDlE, return false.
+
 2006-06-03 John Luke <john.luke@gmail.com>
 
        * Path.cs: fix typo in [Obsolete] message