2010-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git] / class / corlib / System.IO / ChangeLog
blob553571b1e2bdadef38b2f407b1b1b3efbc55b65c
1 2010-03-11  Zoltan Varga  <vargaz@gmail.com>
3         * Path.cs (GetTempFileName): Fix infinite loop if the process doesn't have
4         write access to /tmp. Fixes #585017.
6 2010-02-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8         * MemoryStream.cs: Don't clear the bytes beyond Length when shrinking
9         it. Instead just save the related information for it and do it when
10         Length grows and touchs that dirty region. Refactor the code where
11         needed to avoid duplication as well.
12         Fixes #327053.
14 2010-02-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
16         * StreamWriter.cs:
17         * FileStream.cs: if flushing fails when disposing the stream, make
18         sure it is closed before throwing the exception. Fixes bug #579146.
20 2010-01-31  Zoltan Varga  <vargaz@gmail.com>
22         * Directory.cs (Exists): Never throw an exception. Fixes #565152.
24 2010-01-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
26         * UnmanagedMemoryStream.cs: Read: don't read bytes one-by-one, read all
27         at once.
29 2009-12-21  Sebastien Pouliot  <sebastien@ximian.com>
31         * File.cs (ReadAllBytes): We cannot assume that a single call to
32         Read will return all the data we require.
33         [Backport r148822]
35 2009-10-29  Sebastien Pouliot  <sebastien@ximian.com>
37         * FileStream.cs: Reduce code duplication by merging FillBuffer 
38         with FillBufferToStream
39         [Backport r145008]
41 2009-10-28  Sebastien Pouliot  <sebastien@ximian.com>
43         * FileStream.cs: Move code to deal with 'anonymous' filenames
44         into two methods (returning the path, fullpath or only the 
45         filename). Default Moonlight to anonymous (not only for isolated
46         storage) unless the coreclr is disable (e.g. smcs)
47         [Backport r144945]
49 2009-10-18  Sebastien Pouliot  <sebastien@ximian.com>
51         * UnmanagedMemoryStream.cs: Allow the use under NET_1_1 so we can
52         remove the internal IntPtrStream from every profile.
54 2009-10-15  Sebastien Pouliot  <sebastien@ximian.com>
56         * UnmanagedMemoryStream.cs: Fix some and add missing validations
57         [Backport r144226]
59 2009-09-23  Sebastien Pouliot  <sebastien@ximian.com> 
61         * StreamReader.cs: Add back UTF32 under NET_2_1 (for smcs)
63 2009-09-23  Sebastien Pouliot  <sebastien@ximian.com>
65         * Directory.cs: Don't expose SearchOption in NET_2_1
66         * DirectoryInfo.cs: Don't expose SearchOption in NET_2_1
67         * MonoIO.cs: Don't throw a DriveNotFoundException under NET_2_1 -
68         an IOExpection will be thrown (like the 1.x profile)
70 2009-09-22  Sebastien Pouliot  <sebastien@ximian.com>
72         * StreamReader.cs: Don't use UTF32 under NET_2_1
74 2009-09-18  Sebastien Pouliot  <sebastien@ximian.com>
76         * Directory.cs: Avoid imperative CAS checks and remove 
77         AccessControl types for NET_2_1
78         * DirectoryInfo.cs: Remove AccessControl types for NET_2_1
79         * File.cs: Remove AccessControl types for NET_2_1
80         * FileInfo.cs: Remove AccessControl types for NET_2_1
81         * FileStream.cs: Remove AccessControl types for NET_2_1
82         * Path.cs: Avoid imperative CAS checks for NET_2_1
84 2009-09-17 Gonzalo Paniagua Javier <gonzalo@novell.com>
86         * DirectoryInfo.cs: throw if FullPath is not a directory.
87         Fixes bug #539791.
89 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
91         * UnmanagedMemoryAccessor.cs: New net 4.0 class.
93 2009-07-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
95         * Path.cs: only trim the end of the file.
96         Fixes bug #521924.
98 2009-05-05  Miguel de Icaza  <miguel@novell.com>
100         * Contribution from David Uvalle <david.uvalle@gmail.com> that
101         implements FileInfo.Replace.
103 2009-04-25  Miguel de Icaza  <miguel@novell.com>
105         * StreamReader.cs (DataAvailable): New internal function to work
106         around the fact that StreamReaders are now blocking on Peek(), and
107         that our own Console.TermInfoDriver used Peek() as a way of
108         probing if there was data on a stream before to avoid blocking. o
110 2009-04-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
112         * StreamReader.cs: if Peek() needs to block, do it.
113         Fixes bug #496905.
115 2009-03-22  Marek Habersack  <mhabersack@novell.com>
117         * FileStream.cs: implemented the SafeFileHandle property.
119 2009-02-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
121         * StringReader.cs: LF followed by CR is 2 lines.
123 2009-02-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
125         * MonoIO.cs:
126         * MonoIOError.cs: enable ERROR_NOT_SAME_DEVICE.
128 2009-02-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
130         * StreamReader.cs: when a LF ends a decoded buffer and is not followed
131         by a CR in the next decoded buffer, we didn't flush the string.
132         Fixes bug #445326.
134 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
136         * DriveInfo.cs: Added GetDiskFreeSpaceInternal
137         to query drive size and free space.
138         Added GetDriveTypeInternal to query type of drive.
140 2008-12-20  Miguel de Icaza  <miguel@novell.com>
142         * FileStream.cs: Found while debugging webcompare, we should add
143         Obsoletes to the FileStream constructors that take IntPtrs.
145 2008-11-27  Sebastien Pouliot  <sebastien@ximian.com>
147         * FileInfo.cs: Change ToString (in 2.1) not to return the full path
148         of the filename (since it's not SecurityCritical).
150 2008-11-09  William Holmes  <billholmes54@gmail.com>
152         * TextReader.cs : Adding the NullTextReader as a private class to
153           the TestReader class for the Null field of the TestReader.
155         Code is contributed under MIT/X11 license.
157 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
159         * MonoIO.cs : Add DuplicateHandle.
161 2008-10-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
163         * Path.cs: clean the path when we're not in windows. 
164         Bug #321706 fixed.
166 2008-10-12  Zoltan Varga  <vargaz@gmail.com>
168         * BinaryReader.cs (Read7BitEncodedInt): Check for an invalid encoding.
169         Fixes #434581.
171 2008-08-22  Sebastien Pouliot  <sebastien@ximian.com>
173         * FileStream.cs, MonoIO.cs: For Silverlight 2.0 (NET_2_1) we always
174         throw IsolatedStorageException instead of FileNotFoundException and
175         DirectoryNotFoundException.
177 2008-08-21  Sebastien Pouliot  <sebastien@ximian.com>
179         * FileStream.cs: Adjust exception being thrown for Silverlight 2.0.
180         * FileSystemInfo.cs: In Silverlight 2 this type does not inherit from 
181         MarshalByRefObject nor does it implement ISerializable.
182         * Stream.cs: In Silverlight 2 this type does not inherit from 
183         MarshalByRefObject.
184         * TextReader.cs: In Silverlight 2 this type does not inherit from 
185         MarshalByRefObject.
186         * TextWriter.cs: In Silverlight 2 this type does not inherit from 
187         MarshalByRefObject.
188         * UnmanagedMemoryStream.cs: For Silverlight 2 add CLSCompliant(false)
189         to the PositionPointer property.
191 2008-08-15  Gert Driesen  <drieseng@users.sourceforge.net>
193         * StreamWriter.cs: Change argument check for buffersize to require
194         positive number. Removed duplicate disposed check for AutoFlush.
195         Removed unnecessary initialization of bools.
197 2008-08-15  Gert Driesen  <drieseng@users.sourceforge.net>
199         * StreamWriter.cs: Removed duplicate argument checks from .ctor taking
200         path, as these checks are already done in FileStream .ctor. Removed
201         parameter name from ArgumentException to match MS.
203 2008-07-28  Marek Safar <marek.safar@gmail.com>
205         * File.cs: Delay DateTime .cctor invocation.
207 2008-07-04  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
209         * File.cs: Fix parameter name
211 2008-07-03  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
213         * TextWriter.cs:
214         * StreamWriter.cs:
215         * StreamReader.cs:
216         * Stream.cs:
217         * MemoryStream.cs:
218         * File.cs:
219         * DriveNotFoundException.cs:
220         * Directory.cs: Fix parameter names
222 2008-06-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
224         * BinaryReader.cs: Fix parameter names
225         * BinaryWriter.cs: Fix parameter names, fix exceptions
226         * BufferedStream.cs: Fix parameter names
227         * Directory.cs: Fix parameter names, fix exceptions, optimize == "" cases
228         * DirectoryInfo.cs:
229         * DirectoryNotFoundException.cs:
230         * FileNotFoundException.cs:
231         * FileStream.cs: Fix parameter names, fix exceptions
232         * IOException.cs: Fix parameter names
234 2008-06-21  Gert Driesen  <drieseng@users.sourceforge.net>
236         * Path.cs: Fixed exception arguments to match MS. Removed obsolete
237         LAMESPEC comment. In GetPathRoot, throw ArgumentException if path
238         is whitespace-only. Throw ArgumentException in HasExtension, if path
239         contains invalid path characters.
241 2008-05-29  Robert Jordan  <robertj@gmx.net>
243         * Path.cs (InsecureGetFullPath): Call CanonicalizePath for
244         UNC paths as well.
245         * Path.cs (GetServerAndShare): New helper method.
246         * Path.cs (SameRoot, CanonicalizePath): Add UNC support.
247         Fixes #394681 and a bunch of TestGetFullPath unit test cases.
248         All changes are Win32 related.
250 2008-05-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
252         * DriveInfo.cs: Fix compiler warning
254 2008-05-07  Sebastien Pouliot  <sebastien@ximian.com>
256         * CheckArgument.cs: Removed. Lots of unused code. The two methods
257         used are now inlined into Path.cs
258         * CheckPermission.cs: Removed. Lots of unused code.
259         * Path.cs: Inlined two checks.
260         [Found using Gendarme]
262 2008-04-18  Sebastien Pouliot  <sebastien@ximian.com>
264         * Path.cs: Change PathSeparatorChars from private to internal since
265         it's needed for IsolatedStorage.
267 2008-04-17  Gert Driesen  <drieseng@users.sourceforge.net>
269         * DirectoryInfo.cs: Added new internal ctor, which takes a bool that
270         indicates whether the original path should only container the last
271         part of the directory. Moved logic for determining the Name and
272         Parent to Initialize method, to allow it to be re-used on
273         deserialization. Renamed argument names to fix corcompare issues.
274         Added missing argument checks.
275         * Directory.cs (CreateDirectoriesInternal): Use internal ctor for
276         DirectoryInfo to ensure OriginalPath only contains last part of
277         the directory. 
278         * File.cs: Removed redundant checks from Create. On 2.0 profile, pass
279         FileOptions to FileStream. Removed redundant directory check from
280         Delete and modified exceptions to more closely match MS.
281         * FileInfo.cs: Added argument check to ctor to match MS. Added missing
282         deserialization ctor. Modified argument checks in MoveTo, and removed
283         redundant checks. Added missing argument checks in CopyTo. Code
284         formatting.
285         * FileSystemInfo.cs: Modified argument checks in CheckPath to more
286         closely match MS.
287         * MonoIO.cs: Added msg that does not disclose filename for 
288         ERROR_FILE_EXISTS. 
289         * Path.cs: Use String.Length instead of comparing with String.Empty.
290         Removed exceptions argument names to match MS.
292 2008-04-16  Gert Driesen  <drieseng@users.sourceforge.net>
294         * File.cs: Changed argument names and thrown exception to better match
295         .NET. Use String.Length instead of comparison with empty string.
296         * DirectoryInfo.cs: Added missing deserialization ctor.
298 2008-04-04  Dick Porter  <dick@ximian.com>
300         * File.cs: Pretty up the file share exception with the path name.
302 2008-03-28  Sebastien Pouliot  <sebastien@ximian.com>
304         * Directory.cs: Exception differs when deleting a directory if it 
305         does not exists or if a file of the same name exists. Also don't 
306         include path in exception if Delete fails.
308 2008-03-20  Marek Safar  <marek.safar@gmail.com>
310         * Path.cs (Combine): Call ToString to optimize concatenation.
312 2008-03-02  Gert Driesen  <drieseng@users.sourceforge.net>
314         * DriveInfo.cs: Removed debug code.
316 2008-02-15  Miguel de Icaza  <miguel@novell.com>
318         * UnmanagedMemoryStream.cs: Implement few missing pieces.
320 2008-02-10  Zoltan Varga  <vargaz@gmail.com>
322         * UnexceptionalStreamReader.cs (Read): Optimize this to avoid making a number of
323         calls + creation of a string for each character read.
325 2008-02-03  Sebastien Pouliot  <sebastien@ximian.com>
327         * MemoryStream.cs: Remove unused code found by Gendarme.
329 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
331         * BinaryReader.cs: Fix ReadCharBytes method to avoid non-linear behavior. 
332         Fixes #352184.
334 2007-12-28  Zoltan Varga  <vargaz@gmail.com>
336         * MemoryStream.cs: Fix crash if internalBuffer is null. Avoid calling
337         unsafe icalls. Fixes #350860.
339 2007-11-21  Atsushi Enomoto  <atsushi@ximian.com>
341         * FileStream.cs : Close() does not exist in 2.0 (Stream does).
342           Move GC.SuppressFinalize() to Dispose(true).
344 2007-11-12  Juraj Skripsky  <js@hotfeet.ch>
346         * Path.cs (GetRandomFileName): Return filenames containing only
347         characters from the range [a..z0..9] as MS.NET does. 
349 2007-11-02  Atsushi Enomoto  <atsushi@ximian.com>
351         * StreamReader.cs : Encoding.GetMaxCharCount() does not always return
352           the maximum max char count for Decoder.GetChars() since it might
353           contain pending buffer by flush. Fixed bug #338370.
355 2007-11-01  Miguel de Icaza  <miguel@novell.com>
357         * Path.cs (GetDirectoryName): The paths returned from this routine
358         should be canonical, not just a substring.   In addition to fixing
359         this, it also fixes #324742.
361 2007-10-26  Atsushi Enomoto  <atsushi@ximian.com>
363         * BinaryReader.cs, BinaryWriter.cs : use unsafe encoding that has ""
364           for replacement fallback. Binary serialization regression is fixed.
366 2007-09-06  Atsushi Enomoto  <atsushi@ximian.com>
368         * Stream.cs, BufferedStream.cs, MemoryStream.cs: in 2.0 override
369           Dispose(bool) rather than Close().
370           Stream.Dispose() is virtual in 2.0.
372 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
374         * BinaryReader.cs: Fixed line endings.
375         * FileStream.cs: Rename name argument to path. Spaces to tabs.
377 2007-08-20  William Holmes  <billholmes54@gmail.com>
379         *File.cs:  Add implementation for IO.File.Replace methods.
380         *MonoIO.cs: Declared an internal call for ReplaceFile
382         Code is contributed under MIT/X11 license.
384 2007-07-31  Dick Porter  <dick@ximian.com>
386         * MonoIO.cs: Fix formatting of 'access denied' exception when the
387         path info isn't known.  Fixes bug 82141.
389 2007-07-08  Gert Driesen  <drieseng@users.sourceforge.net>
391         * Directory.cs: Renamed Move arguments to match MS. Allow Move to be
392         used to move files, patch by Robert Jordan. Fixes bug #81912. Spaces
393         to tabs.
395 2007-06-21  Dick Porter  <dick@ximian.com>
397         * FileStream.cs: Fix FileShare test, fixing better bug 79250.
399 2007-05-28  Atsushi Enomoto  <atsushi@ximian.com>
401         * UnmanagedMemoryStream.cs : added Closed event for sys.Resources use.
402         * IntPtrStream.cs : added internal get_BaseAddress(), for the same.
404 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
406         * UnmanagedMemoryStream.cs: In Read and ReadByte, use Marshal.ReadByte
407         to read bytes as this allows us to start reading from the current
408         position. In Read, return 0 when reading beyond the end of the stream
409         and only read bytes until the end of the stream (not capacity).
410         In ReadByte, return -1 when reading beyond the end of the stream.
411         In SetLength: changed argument validation (and reported exceptions) to
412         match MS, removed duplicate access check and changed the current
413         position if length is less than position. In Write: throw
414         NotSupportedException when attempting to write beyond capacity, use
415         Marshal.WriteByte since that allows us to start writing from the
416         current position. Adjust length when position moves beyond length
417         in both Write and WriteByte. Allow position to be moved beyond
418         capacity of stream. Fixed position using Seek (=+ typo). Changed
419         CanRead to ignore current position. Allow Position to be used to move
420         beyond capacity of stream.
422 2007-05-24  Gert Driesen  <drieseng@users.sourceforge.net>
424         * UnmanagedMemoryStream.cs: Changed argument names and exceptions 
425         (msg, params) to match MS. Verify access argument in ctor. 
427 2007-05-23  Atsushi Enomoto  <atsushi@ximian.com>
429         * UnmanagedMemoryStream.cs : couple of bugfixes. in Read(), don't
430           return buffer beyond the requested length. Fixed .ctor() for wrong
431           capacity initialization.
433 2007-05-12  Jonathan Chambers  <joncham@gmail.com>
435         * FileStream.cs: Implement SafeHandle constructors.
437 2007-05-01  Dick Porter  <dick@ximian.com>
439         * File.cs:
440         * Stream.cs: Missed a few 2.0 methods
442 2007-04-30  Dick Porter  <dick@ximian.com>
444         * Directory.cs: 
445         * FileShare.cs: 
446         * DirectoryNotFoundException.cs: 
447         * SeekOrigin.cs: 
448         * FileAttributes.cs: 
449         * IOException.cs: 
450         * MemoryStream.cs: 
451         * FileMode.cs: 
452         * BinaryWriter.cs: 
453         * TextWriter.cs: 
454         * File.cs: 
455         * BinaryReader.cs: 
456         * TextReader.cs: 
457         * UnmanagedMemoryStream.cs: 
458         * StringWriter.cs: 
459         * FileAccess.cs: 
460         * FileLoadException.cs: 
461         * BufferedStream.cs: 
462         * Stream.cs: 
463         * FileInfo.cs: 
464         * FileStream.cs:
465         * StringReader.cs: 
466         * StreamWriter.cs: 
467         * EndOfStreamException.cs: 
468         * DriveInfo.cs: 
469         * StreamReader.cs: 
470         * PathTooLongException.cs: 
471         * DriveType.cs: 
472         * FileNotFoundException.cs: 2.0 profile updates
474 2007-04-21  Alp Toker  <alp@atoker.com>
476         * FileStream.cs: Respect request for buffering in all cases.
478         Gonzalo added code in r42667 that disables buffering even when it is
479         requested, in the case that ftype != MonoFileType.Disk. This was
480         killing performance for users who do Console.OpenStandardOutput(1024)
481         but were ending up with a non-buffered FileStream.
483         The new behaviour appears correct but we should watch for any
484         regressions.
486 2007-04-05  Dick Porter  <dick@ximian.com>
488         * Directory.cs: Pass combined path and pattern to
489         MonoIO.GetFileSystemEntries()
491 2007-04-03  Alp Toker  <alp@atoker.com>
493         * UnmanagedMemoryStream.cs: Should not have a public Dispose().
494         This behaviour is already provided by the base class.
496 2007-04-03  Alp Toker  <alp@atoker.com>
498         * Stream.cs: CreateWaitHandle() obsolete in 2.0.
500 2007-03-18  Alp Toker  <alp@atoker.com>
502         * UnmanagedMemoryStream.cs:
503         * Directory.cs: Exception message typo fixes.
505 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
507         * UnmanagedMemoryStream.cs: Fix a warning.
509 2007-03-05  Miguel de Icaza  <miguel@novell.com>
511         * Path.cs: Manually call FileStream and pass the new internal
512         FileOptions.1 flag that means "This is a temporary file, use 600
513         permissions". 
515         * FileOptions.cs: Document the new private enum value.
517 2007-02-22  Dick Porter  <dick@ximian.com>
519         * MonoIOError.cs: 
520         * MonoIO.cs: Handle ERROR_CANNOT_MAKE.
522 2007-02-19      Eyal Alaluf <eyala@mainsoft.com>
524         * DirectoryInfo.cs, Directory.cs: Use MonoNotSupported & MonoLimitation
525           attribute to tag that DirectorySecurity is not supported.
527 2007-02-19      Boris Kirzner <borisk@mainsoft.com>
529         * Path.cs: fix order of InvalidPathChars on windows.
531 2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>
533         * StreamReader.cs: Removed checks for non-existing directory or file,
534         since these checks are also performed in FileStream.
536 2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>
538         * FileStream.cs: Always resolve to absolute paths for exceptions, when not
539         in anonymous mode.
541 2007-01-24 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
543         * StreamReader.cs: fix for bug #75526. We return earlier from Read () if
544         the underlying stream might block or end on the next read.
546 2007-01-22  Miguel de Icaza  <miguel@novell.com>
548         * DirectoryInfo.cs: Throw a better exception (accorind go the
549         docs, UnauthorizedAccessException is thrown if the underlying
550         platform does not support it and *also* if there are no
551         permissions to access it, which is more convenient than the
552         PlatformNotSupportedException that only states that it needs Win2k
553         or newer).
555 2006-12-23  Alp Toker  <alp@atoker.com>
557         * Directory.cs: "platfor" typofix
559 2006-12-22  Sebastien Pouliot  <sebastien@ximian.com>
561         * File.cs: Add stubs for Encrypt and Decrypt that throws 
562         NotSupportedException just like non-NTFS file systems would with MS.
563         Remove nested #if NET_2_0.
564         * FileInfo.cs: Add stubs for Encrypt and Decrypt that throws 
565         NotSupportedException just like non-NTFS file systems would with MS.
567 2006-12-22  Atsushi Enomoto  <atsushi@ximian.com>
569         * Directory.cs : non NET_2_0 build fix.
571 2006-12-15  Miguel de Icaza  <miguel@novell.com>
573         * FileInfo.cs: Empty implementations for Encrypt and Decrypt
575 Mon Dec 11 11:40:06 CET 2006 Paolo Molaro <lupus@ximian.com>
577         * FileStream.cs: correct exception message patch from
578         Markus Mauhart <mmauhart@chello.at>.
580 2006-11-28  Duncan Mak  <duncan@novell.com>
582         * TextReader.cs (Dispose): Expose as public in NET_2_0.
584 2006-11-26  Miguel de Icaza  <miguel@novell.com>
586         * DriveInfo.cs, DriveType.cs: Add a couple of classes for
587         CreativeDocs.Net.  
589         Thanks MoMA!  http://www.mono-project.com/Moma
591 2006-11-16  Miguel de Icaza  <miguel@novell.com>
593         * DirectoryInfo.cs (GetFiles): Implement option with SearchOptions
594         == AllDirectories
596 2006-11-13  Dick Porter  <dick@ximian.com>
598         * Directory.cs: Don't follow symlinks when deleting directories.
599         Keeps bug 79733 fixed while fixing bug 79887.
601         * MonoIO.cs: ExistsSymlink() added, which checks for
602         FileAttributes.ReparsePoint.
604 2006-11-07  Dick Porter  <dick@ximian.com>
606         * Directory.cs: CreateDirectory() should only throw IOException in
607         the 2.0 profile if a file already exists with the same name, not a
608         directory.
610 2006-11-03 Jensen Somers <jensen.somers@gmail.com>
612         * Directory.cs: CreateDirectory() should throw IOException if a
613         file or directory with the same name already exists, in the 2.0
614         profile.  Fixes bug 79806.
616 2006-10-30 Joel Reed  <joel.reed@ddiworld.com>
618         * DirectoryInfo.cs: Implement SearchOption.AllDirectories option.
620 2006-10-11  Dick Porter  <dick@ximian.com>
622         * FileStream.cs: Cope with 2.0 FileShare.Delete values.  Patch by
623         Peter Dettman <peter.dettman@iinet.net.au> fixing bug 79250.
625 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
627         * FileInfo.cs: added 2.0 IsReadOnly. Patch by Joel Reed.
629 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
631         * FileInfo.cs: eol-style.
633 2006-09-19  Gert Driesen  <drieseng@users.sourceforge.net>
635         * FileNotFoundException.cs: Changed message for default ctor to match
636         MS. Use internal message field of Exception to check whether Message
637         is null. On 2.0 profile, use file/assembly load failure message when
638         no message is set and a filename was specified. On 1.0 profile,
639         always use file/assembly load failure message when no message is set
640         (regardless of whether a filename was specified or not). Made some
641         cosmetic changes to ToString to have it match MS.
643 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
645         * BinaryReader.cs (Read): Avoid allocating memory when reading a char.
647 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
649         * StreamReader.cs: avoid ArgumentOutRangeException when the underlying
650         stream returns -1 on Read.
652 2006-08-30  Lluis Sanchez Gual  <lluis@novell.com>
654         * FileInfo.cs: OpenRead should open the file using the Read share mode.
656 2006-08-21  Sebastien Pouliot  <sebastien@ximian.com>
658         * Path.cs: Added internal method IsPathSubsetOf required to implement
659         correctly FileIOPermission (better located here).
661 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
663         * File.cs: (Delete) avoid creating the exception object for the 'file
664         not found' case.
666 2006-07-24  Miguel de Icaza  <miguel@novell.com>
668         * FileShare.cs: Add Delete in 2.0
670 2006-07-06  Dick Porter  <dick@ximian.com>
672         * Directory.cs: When creating a directory treat ERROR_FILE_EXISTS
673         (ie a file already exists with that name) the same as
674         ERROR_ALREADY_EXISTS (ie a directory already exists with that
675         name.)  Keeps bug 50753 fixed when I fix the io-layer
676         CreateDirectory() behaviour.
678 2006-06-21  Atsushi Enomoto <atsushi@ximian.com>
680         * Directory.cs : implemented GetFiles() and GetDirectories() which
681           takes SearchOption (as they are used in one of ruby.net stuff).
683 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
685         * File.cs: never throw in Exists.
687 2006-05-18  Miguel de Icaza  <miguel@novell.com>
689         * Directory.cs (Exists): Ignore INVALID_HANDlE, return false.
691 2006-06-03 John Luke <john.luke@gmail.com>
693         * Path.cs: fix typo in [Obsolete] message
694         
695 2006-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
697         * BinaryReader.cs: use BlockCopyInternal.
699 2006-05-01  Daniel Drake  <dsd@gentoo.org>
701         * Directory.cs: Return false (as documented) on ERROR_ACCESS_DENIED in
702         Exists() rather than throwing an exception. Bug #78239.
704 2006-04-29  Atsushi Enomoto <atsushi@ximian.com>
706         * UnexceptionalStreamReader.cs (Read): Fix for #78218, where we
707         consumed characters from the input even when the count was not set
708         to zero, causing some characters to be missing in some
709         circumstances. 
711 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
713         * Directory.cs: make sure the parent directory is not an empty string
714         when a file name with no path is provided. Fixes bug #78209. Patch by
715         Emery Conrad.
717 2006-04-28  Atsushi Enomoto  <atsushi@ximian.com>
719         * StreamReader.cs : implemented EndOfStream property.
720         * File.cs : implemented AppendAllText(), WriteAllLines(),
721           WriteAllBytes() and ReadAllLines(). Bug #77813 fixed.
723 2006-04-28  Robert Jordan  <robertj@gmx.net>
725         * Path.cs (GetPathRoot): Return just the \\server\share
726         part of a UNC. Fixes #78147.
729 2006-04-26  Miguel de Icaza  <miguel@novell.com>
731         * FileStream.cs: Implement the FileOptions usage by passing all
732         the information to the C layer.  Remove the "isAsync" argument for
733         MonoIO.Open, and instead pass it on the FileOptions.
735         * FileOptions.cs: Make it build when including WriteThrough
737         * MonoIO.cs: Update MonoIO.Open signature to drop the async
738         argument and take FileOptions instead. 
740 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
742         * FileStream.cs: Add new net 2.0 ctor.
744         * FileOptions.cs: New file.
746 2006-03-21  Miguel de Icaza  <miguel@novell.com>
748         * Stream.cs: In 2.0 make Close call Dispose(true).
750 2006-03-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
752         * FileStream.cs: Seek() should flush the buffer, if any. Fixes bug
753         #77863.
755 2006-03-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
757         * Stream.cs: Add 2.0 members to Stream.cs (CanTimeout,
758         ReadTimeout and WriteTimeout).
759         
760 2006-02-27  Gert Driesen  <drieseng@users.sourceforge.net>
762         * File.cs: In 2.0 profile, File.Get****Time(Utc) should not throw
763         IOException if specified path does not exist. Fixes bug #77641.
765 2006-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
767         * FileStream.cs: To match MSFT, ignore FileShare.Inheritable on 2.0
768         profile. This fixes bug #77644. Improved usefulness of some existing
769         exception messages.
771 2006-02-22  Joerg Rosenkranz <joergr@voelcker.com>
773         * MonoIO.cs, MonoIOError.cs: Verbose exception for error 39 
774           (disk full).
775           
776 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
778         * Stream.cs FileStream.cs: Add new 2.0 Dispose () method and protected
779         Dispose (bool) method.
781 2006-01-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
783         * TextWriter.cs: Dispose () is public in 2.0.
785 2006-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
787         * UnexceptionalStreamReader.cs: Read (char,int,int) should not
788         return -1. Thanks to Jakob Berkman.
790 2006-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
792         * StreamReader.cs: (ReadToEnd) if Read returns -1 or 0, we're done.
794 2006-01-18  Atsushi Enomoto  <atsushi@ximian.com>
796         * Path.cs : (GetRandomFileName) use random buffer ;-) It somehow
797           caused infinite loop on Windows.
799 2006-01-18  Atsushi Enomoto  <atsushi@ximian.com>
801         * DirectoryInfo.cs : on Windows top directory is something like c:\.
803 2006-01-17  Joshua Tauberer  <tauberer@for.net>
805         * StreamReader.cs: Avoid two totally unnecessary string creations.
806           (kind of pedantic)
808 2006-01-13  Ben Maurer  <bmaurer@andrew.cmu.edu>
810         * TextWriter.cs: Call char[],int,int from the Write(char[]) method
811         both for msft compat and for performance. Thanks to "Mike Glenn" 
812         <mglenn@zoominternet.net> for pointing.
814 2006-01-12  Ben Maurer  <bmaurer@andrew.cmu.edu>
816         * File.cs: Support for Read/WriteAllText
818 2006-01-11  Sebastien Pouliot  <sebastien@ximian.com>
820         * Path.cs: Previous fix caused regression of bug #76191. Fixed (again)
822 2006-01-09  Sebastien Pouliot  <sebastien@ximian.com>
824         * Path.cs: Fix c14n on Windows when the first separator after the root
825         isn't '\'. Fix problems for XSP with 1.1.13.
827 2006-01-07  Miguel de Icaza  <miguel@novell.com>
829         * Path.cs (GetTempFilename): Append ".tmp" to the path, some
830         external application expect this extension.
832 2006-01-05  Kornél Pál  <kornelpal@hotmail.com>
834         * DriveNotFoundException.cs: Added.
835         * MonoIO.cs: Added ERROR_INVALID_DRIVE handling. Pass HResult to
836           IOException constructors.
837         * MonoIOError.cs: Expose ERROR_INVALID_DRIVE.
839 2006-01-02  Sebastien Pouliot  <sebastien@ximian.com>
841         * UnexceptionalStreamReader.cs: Re-implemented the Read method to fix 
842         the new line handling when reading from the Console (bug #77108).
844 2005-12-24  Kornél Pál  <kornelpal@hotmail.com>
846         * FileStream.cs: Set buf_start to actual initial position when creating
847           FileStreams from handles.
849 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
851         * DirectoryInfo.cs: Fixed #77090 to fix /home parent to be / (and not
852         null).
854 2005-12-21  Sebastien Pouliot  <sebastien@ximian.com>
856         * Path.cs: Fixed #77058 where a Windows drive wasn't considered during
857         path canonalization.
859 2005-12-20  Sebastien Pouliot  <sebastien@ximian.com>
861         * Path.cs: Fixed #77007 where a Windows drive is specified with a 
862         partial path.
864 2005-12-15  Sebastien Pouliot  <sebastien@ximian.com>
866         * DirectoryInfo.cs: Fixed #76903 where the Name property wasn't 
867         correct in some cases. Added special case for Windows drives. Reduced
868         temporary allocations in Get* methods (removed ArrayList). Added some
869         new 2.0 methods (partial).
870         * MonoIO.cs: Removed InvalidPathChars icall as the return value is 
871         different from 1.x and 2.0. The values are now defined in Path.cs.
872         * Path.cs: Fixed #76191 so that GetFullPath on a Windows drive returns
873         the current directory (if it's on the specified drive). Fixed 2.0 API
874         changes (e.g. static class).
875         * SearchOption.cs: Added missing [Serializable] (2.0).
877 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
879         * Directory.cs: Fix a warning.
881 2005-11-10  Dick Porter  <dick@ximian.com>
883         * DirectoryInfo.cs: Fix endless recursion problem with root
884         directory on windows too.  Fixes bug 76191.
886 2005-11-06  Zoltan Varga  <vargaz@freemail.hu>
888         * Directory.cs: Add stub for net 2.0 GetFiles method.
890         * SearchOption.cs: New file.
892 2005-10-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
894         * StreamReader.cs: made ReadLine() less memory-hungry. Fixes bug #76399.
896 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
898         * MonoIO.cs: replace FindFirst/FindNext/FindClose with
899         GetFileSystemEntries.
900         * Directory.cs: simplify GetFileSystemEntries by using the new icall.
902 2005-10-01  Ben Maurer  <bmaurer@ximian.com>
904         * BinaryReader.cs: The patch below had a nasty little bug with
905         long strings that had non-ascii chars in it, because it was
906         looking at the char count, not the byte count.
908 2005-09-11  Ben Maurer  <bmaurer@ximian.com>
910         * BinaryReader.cs: An optimization for ReadString that had been
911         approved/well tested for a while but never gotten in. Bug #52754.
913 2005-09-05  Miguel de Icaza  <miguel@novell.com>
915         * MonoIOError.cs: expose the ERROR_DIR_NOT_EMPTY as we are
916         throwing it. 
918         * MonoIO.cs: Return a properly named error.
920 2005-08-23  Raja R Harinath  <rharinath@novell.com>
922         Fix #75679.
923         * StreamReader.cs (DiscardBufferedData): Reset the decoder too.
925 2005-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
927         * BinaryReader.cs: use Buffer.BlockCopy instead of Array.Copy when
928         expanding the buffer.
930 2005-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
932         * Directory.cs: don't leak 'find' handles.
934 2005-07-05  Dick Porter  <dick@ximian.com>
936         * MonoIO.cs:
937         * MonoIOError.cs: Add error message for ERROR_WRITE_FAULT.
939 2005-07-04  Sebastien Pouliot  <sebastien@ximian.com>
941         * DirectoryInfo.cs: Fixed recursion problem with root directory 
942         introduced when fixing bug #75443.
944 2005-07-02  Sebastien Pouliot  <sebastien@ximian.com>
946         * FileSystemInfo.cs: Fixed exception arguments. Added ComVisible for
947         NET_2_0.
948         * DirectoryInfo.cs: Fixed bug #75443 when the directory ends with a
949         separator. Added ComVisible for NET_2_0. Normalized line endings.
951 2005-05-26  Miguel de Icaza  <miguel@novell.com>
953         * File.cs (ReadAllBytes): add.
955 Tue May 17 10:54:18 CEST 2005 Paolo Molaro <lupus@ximian.com>
957         * FileStream.cs: complete fix for #74971.
959 2005-05-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
961         * FileStream.cs: make WriteByte work in all cases when no buffer is
962         being used. Fixes bug #74971.
964 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
966         * Directory.cs: if the pattern is just a file name and it exists, return
967         it right away. Fixes bug #72143.
969 2005-05-06  Ben Maurer  <bmaurer@ximian.com>
971         * File.cs (Open): If a stream is opened with Append access, you
972         only want Write access. Fixes bug #71088.
974 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
976         * UnexceptionalStreamWriter.cs: don't throw anything on Flush. Closes
977         bug #74190.
979 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
981         * Path.cs: don't trim the path in CanonicalizePath on non-windows
982         systems. Fixes bug #53173.
984 2005-04-09  Miguel de Icaza  <miguel@novell.com>
986         * StreamWriter.cs (Initialize): Avoid echoing the preamble to a
987         file if the position of the stream is not at the beginning.  Fixes
988         bug #74513
990 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
992         * FileStream.cs:
993         * MonoIO.cs: remove dead code related to async IO.
995 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
997         * Directory.cs: Added a Demand for Read/Write when creating a new 
998         directory.
999         * FileSystemInfo.cs: Added an InheritanceDemand for Unrestricted on 
1000         the class.
1001         * Path.cs: Added a Demand for PathDiscovery in GetFullPath method.
1002         Added an Assert for unrestricted file access to GetTempFilename as
1003         the method must create the (zero-length) file and can be called from
1004         partially trusted code. Added a Demand for unrestricted environment
1005         access to GetTempPath method.
1006         * FileStream.cs: Added a Demand for UnmanagedCode for all constructors
1007         accepting a file handle. Added LinkDemand and InheritanceDemand for 
1008         UnmanagedCode to get Handle and SafeFileHandle (2.0) properties.
1010 2005-03-16  Lluis Sanchez Gual  <lluis@novell.com>
1012         * BinaryReader.cs, BinaryWriter.cs: Read/write dobules, floats and
1013         decimals in little endian format.
1015 2005-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1017         * MonoIO.cs:
1018         * MonoIOError.cs: handle ERROR_LOCK_VIOLATION.
1020 2005-03-15  Sebastien Pouliot  <sebastien@ximian.com>
1022         * FileStream.cs: Anonymize part of the path when exceptions are throw
1023         by a FileStream is used for isolated storage. Throw a DirectoryNotFound
1024         Exception for any FileMode not just CreateNew (see new unit tests).
1026 2005-03-09  Dick Porter  <dick@ximian.com>
1028         * MonoIOError.cs: 
1029         * MonoIO.cs: Add a few more exception messages
1031 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
1033         * CheckPermission.cs: Fix warning.
1035 2005-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1037         * File.cs: Exists does not throw when there are invalid characters in
1038         the file name.
1039         * MonoIOError.cs: uncommented INVALID_NAME.
1041         Patch by Gert Driesen.
1043 2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>
1045         * FileStream.cs: Added new constructor to allow anonymous files (i.e.
1046         when Name property is "[Unknown]") for IsolatedStorage. Added
1047         SafeFileHandle property and a reference to Microsoft.Win32.SafeHandles
1048         for the NET_2_0 profile.
1050 2005-01-28  Sebastien Pouliot  <sebastien@ximian.com>
1052         * FileNotFoundException.cs, FileLoadException.cs: Fixed bad "if ();".
1054 2005-01-27  Sebastien Pouliot  <sebastien@ximian.com>
1056         * FileNotFoundException.cs, FileLoadException.cs: Protect the fusion
1057         (GAC) log from being disclosed unless code has ControlPolicy and 
1058         ControlEvidence. Added missing HResult value. Fixed Message property 
1059         to match MS results. Changed ToString to use a StringBuilder.
1061 2005-01-24  Sebastien Pouliot  <sebastien@ximian.com>
1063         * Directory.cs: Added CAS security to Get|SetCurrentDirectory to 
1064         complete Environment security checks.
1066 2004-12-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1068         * BufferedStream.cs: use Buffer.BlockCopyInternal instead of Array.Copy.
1070 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1072         * File.cs: delegate to the runtime the task of checking for destination
1073         file existence in Move.
1075 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
1077         * BinaryReader.cs (ReadByte): Check for exceptions here.
1079 2004-12-06  Atsushi Enomoto  <atsushi@ximian.com>
1081         * TextWriter.cs : create CoreNewLine in another .ctor().
1083 2004-12-05  Ben Maurer  <bmaurer@ximian.com>
1085         * TextWriter.cs (WriteLine): Use CoreNewLine so that this does
1086         not make a string out of the array every time it is called.
1088         Thanks to Atsushi for the idea.
1090 2004-12-04  Ben Maurer  <bmaurer@ximian.com>
1092         * DirectoryInfo.cs (CreateSubDirectory): Check the input here.
1093         
1094         * FileSystemInfo.cs (CheckPath): Empty paths are invalid.
1096 2004-11-19  Dick Porter  <dick@ximian.com>
1098         * MonoIOError.cs: 
1099         * MonoIO.cs: Add a proper message for sharing violation
1101 2004-11-01  Ben Maurer  <bmaurer@ximian.com>
1103         * MonoIOError.cs: All of these fields just take up room in corlib,
1104         bloating things up. To make it worse, we need to malloc data at
1105         runtime about them. Since most are not used, am commenting them
1106         out
1108 2004-09-19  Dick Porter  <dick@ximian.com>
1110         * UnexceptionalStreamWriter.cs: 
1111         * UnexceptionalStreamReader.cs: Wrappers around StreamWriter and
1112         StreamReader that catch IOException.  Used by System.Console so
1113         that graphical applications dont get IO errors when their
1114         stdin/out/err vanishes (ie when they spew debug output.)
1116 2004-09-12 Ben Maurer  <bmaurer@ximian.com>
1118         * BinaryReader.cs: Use ReadByte when possible. Gives a tad
1119         of perf, and fixes a bug reported on mono-patches-list
1121 2004-09-08  Miguel de Icaza  <miguel@ximian.com>
1123         * File.cs: Added Gettextification, provide a better error message
1124         for #62112
1126 2004-09-08  Marek Safar  <marek.safar@seznam.cz>
1128         * Directory.cs,
1129         * File.cs: Class is static for NET_2_0.
1131 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1133         * MemoryStream.cs (SetLength): Use Array.Clear here
1135 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
1137         * Path.cs (Combine): Array.IndexOf is slow (because of the
1138         special cases it must handle). So, rather than doing IndexOf
1139         just check each type of seperator.
1141 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
1143         * StringReader.cs (StreamReader): remove sourceChars and disposed
1144         variables
1145         (Read): Copy directly from the string, rather than a char []
1146         (Dispose, CheckObjectDisposedException): the flag for being
1147         disposed is now source == null.
1149 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1151         * Stream.cs: Close() does not call Flush(). Fixes bug #65340.
1153 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
1155         * StreamWriter.cs: avoid String.ToCharArray for perf.
1157 2004-08-18  Dick Porter  <dick@ximian.com>
1159         * StreamWriter.cs: Flush the buffer if AutoFlush is set to true.
1160         Fixes bug 63063, patch by Laurent Debacker (debackerl@yahoo.com).
1162 2004-08-13  Dick Porter  <dick@ximian.com>
1164         * StreamWriter.cs: Allow FileShare.Read access to the underlying
1165         FileStream, to be compatible with MS.  Fixes bug 62152.
1167 2004-07-06  Dick Porter  <dick@ximian.com>
1169         * MonoIO.cs: Add ERROR_INVALID_PARAMETER to the exception list.
1170         Don't blow away the SetFileTime() error before the caller gets to
1171         see it.  Part of the bug fix to 60970.
1173 2004-07-05  Dick Porter  <dick@ximian.com>
1175         * CheckPermission.cs:
1176         * File.cs:
1177         * FileInfo.cs:
1178         * MonoIO.cs:
1179         * FileStream.cs: Give the filename when throwing
1180         FileNotFoundException.  Fixes bug 61120, based on patch from
1181         Carlos Alberto Cesario <carloscesario@gmail.com>.
1183 2004-07-05  Dick Porter  <dick@ximian.com>
1185         * File.cs: File.Move() should check that the destination doesn't
1186         already exist.  Fixes bug 60915, patch based on one from Carlos
1187         Alberto Cesario <carloscesario@gmail.com>.
1189 2004-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1191         * Directory.cs: implemented GetLogicalDrives.
1193 2004-06-24  Lluis Sanchez Gual  <lluis@novell.com>
1195         * StreamReader.cs: In DiscardBufferedData(), reset the mayBlock flag.
1197 2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
1199         * FileStream.cs :
1200           .ctor() should block write access when created with FileAccess.Write.
1202 2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
1204         * FileStream.cs : Check buffer size before creating file.
1205         * StreamReader.cs : Check encoding!=null before creating file.
1206         * File.cs,
1207           MonoIO.cs : Convert DateTime to FileTime after checking
1208           file IO sharing violation (it just fixes the type of exception).
1210 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
1212         * MemoryStream.cs: added TODO for serialization
1213         * StringWriter.cs: added TODO for serialization
1215 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
1217         * TextWriter.cs: fixed CoreNewLine to return char[]
1219 2004-06-14  Dick Porter  <dick@ximian.com>
1221         * Directory.cs:
1222         * File.cs: Catch PATH_NOT_FOUND errors in Exists() too.  Fixes bug
1223         59354.
1225 2004-06-09  Duncan Mak  <duncan@ximian.com>
1227         * BufferedStream.cs (SetLength): Add checks and throw the
1228         appropriate Exceptions here instead.
1230         * FileStream.cs (SetLength): Revert part of my last patch, we're
1231         throwing ObjectDisposedException instead of IOException again.
1233 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1235         * FileStream.cs: re-enabled ignoring broken pipe errors when reading.
1236         Fixes bug #59639.
1238 2004-06-08  Duncan Mak  <duncan@ximian.com>
1240         * Directory.cs (IsRootDirectory): New helper method for
1241         determining if a path is the root directory. Handles both Unix as
1242         well as Windows.
1243         (GetParent): Use IsRootDirectory for the check.
1245 2004-06-08  Duncan Mak  <duncan@ximian.com>
1247         * File.cs: Fix line endings, took out ^Ms.
1249         * Directory.cs (GetParent): Return null if the specified path is
1250         the root directory.
1252         * StreamReader.cs (StreamReader):
1253         (Initialize): Add a check that buffer_size must not be less than
1254         or equal to zero.
1256 2004-06-07  Duncan Mak  <duncan@ximian.com>
1258         * FileStream.cs (SetLength): The other exceptions have precendence
1259         over ObjectDisposedException, which is not one of the exceptions
1260         listed in the documentation). Also, instead of throwing an
1261         ObjectDisposedException, throw an IOException.
1263 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1265         * BufferedStream.cs: fixed typo that prevented Read() from working.
1266         This went out with beta 2. Closes bug #59534.
1268 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
1270         * Directory.cs, File.cs : Fixed Exists() that raised 
1271           DirectoryNotFoundException. Quick fix for bug #59354.
1273 2004-05-30  Sebastien Pouliot  <sebastien@ximian.com>
1275         * BinaryReader.cs: Added missing disposed check for most methods. 
1276         Reordered some exceptions to match MS implementation. 
1277         * BufferedStream.cs: Fixed Seek logic (check for CanSeek and dispose).
1278         SetLength must also reset Position and check for dispose.
1279         * FileStream.cs: Added missing check for invalid SeekOrigin. Added
1280         missing validations.
1282 2004-05-27  Dick Porter  <dick@ximian.com>
1284         * FileSystemInfo.cs: Take out the error checking in Refresh(), it
1285         broke other stuff
1286         
1287 2004-05-27  Dick Porter  <dick@ximian.com>
1289         * MonoIO.cs: Define icalls for Lock() and Unlock()
1290         
1291         * FileStream.cs: Implement Lock() and Unlock().  Also improve IO
1292         error reporting.
1294         * FileSystemInfo.cs:
1295         * File.cs:
1296         * Directory.cs: Improve IO error reporting
1298 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1300         * FileStream.cs: delay seeking to the end when FileMode.Append is
1301         specified until after buffer initialization. Fixes bug #59151.
1303 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1305         * BufferedStream.cs: Added globalization and fixed exceptions and 
1306         possible integer overflow.
1307         * FileStream.cs: Fixed possible integer overflow.
1308         * MemoryStream.cs: Fixed possible integer overflow.
1309         * StringReader.cs: Fixed possible integer overflow.
1310         * TextWriter.cs: Fixed possible integer overflow.
1312 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1314         * FileInfo.cs,
1315           DirectoryInfo.cs : ToString() should return constructor arg as is.
1316           This fixes bug #58804.
1318 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1320         * Directory.cs: ERROR_FILE_NOT_FOUND in FindFirstFile means there are
1321         no files, but the directory was found. Fixes bug #58875.
1323 2004-05-24  Duncan Mak  <duncan@ximian.com>
1325         * StreamWriter.cs (Close): Remember to set the 'closed' flag.
1327         * DirectoryInfo.cs: 
1328         * FileInfo.cs: Reformat the whole file to use DOS line endings.
1329         (MoveTo): Return if the destination of Move is the
1330         same as the file's current location.
1332 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
1334         * MemoryStream.cs: Fixed exception reporting to match MS Fx. Fixed the
1335         condition to allow zeroization of existing data when we shrink the 
1336         stream.
1337         * StreamReader.cs: Add checks for null encoding. Fixed possible integer
1338         overflow and ArgumentNullException in Read.
1339         * StreamWriter.cs: Add dispose check to Write(char) and Write(char[]),
1340         AutoFlush. Fixed possible integer overflow in Write(char[],int,int).
1341         * StringWriter.cs: Fixed possible integer overflow in Write. Changed
1342         spaces for tabs.
1344 2004-05-22  Duncan Mak  <duncan@ximian.com>
1346         * Directory.cs: Reformat the whole file to use Unix line endings
1347         for consistency.
1348         (GetFileSystemEntries): If pattern is String.Empty, always
1349         return an empty string array. Throw the ArgumentException if path
1350         is an empty string (determined using the new helper method)
1351         (IsEmptyString): Returns true on an empty string or a string with
1352         only whitespace characters.
1354         * Path.cs (GetPathRoot): Throw an ArgumentException if the path
1355         argument is String.Empty.
1357 2004-05-20  Jackson Harper  <jackson@ximian.com>
1359         * DirectoryInfo.cs: Create subdirectories correctly if more then
1360         one is supplied.
1361         
1362 2004-05-16  Atsushi Enomoto  <atsushi@ximian.com>
1364         * DirectoryInfo.cs: Fixed ToString() as well as FileInfo.
1366 2004-05-16  Atsushi Enomoto  <atsushi@ximian.com>
1368         * FileInfo.cs: ToString() returns not full path but just the file name.
1370 2004-05-14  Marek Safar  <marek.safar@seznam.cz>
1372         * TextWriter.cs: Removed useless [CLSCompliant (false)]
1374 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1376         * Directory.cs: use the real wildcard for file names as it is supported
1377         now in io-layer. SearhPattern is not needed now.
1379 2004-04-30 Ben Maurer  <bmaurer@users.sourceforge.net>
1381         * BinaryWriter.cs, Stream.cs: ensure we have beforefieldinit.
1383 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1385         * Path.cs: readonlyificate.
1387 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1389         * FileStream.cs: constify.
1391 2004-04-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1393         * SearchPattern.cs: Call invariant String.ToLower
1395 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1397         * FileStreamAsyncResult.cs: invoke the callback if set as completed
1398         before the asynchronous stuff jumps in.
1400 2004-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1402         * FileStream.cs: only pass the async flag set to true when opening the
1403         file and AIO is supported by the underlying system. Fixes bug #56883.
1405 2004-04-12  Gert Driesen (drieseng@users.sourceforge.net)
1407         * FileSystemInfo.cs: Implemented ISerializable, corrected COM 
1408         visibility of UTC properties
1410 2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
1412         * BufferedStream.cs: On Position change, do not reset the buffer if the
1413         new position is in the limits of the buffer. This fixes #49403.
1415 2003-04-03  Atsushi Enomoto <atsushi@ximian.com>
1417         * Path.cs : ChangeExtension() does not remove dot(.) when extension is
1418           an empty string.
1420 2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
1422         * FileSystemInfo.cs: Added InternalRefresh, a virtual method that derived
1423           classes can override to perform class specific refreshing.
1424         * FileInfo.cs: Refresh existence flag when Refresh is called.
1425         * TextWriter.cs: Applied patch by Benjamin Jemlich for bug #52512.
1426           The method Write(char) should do nothing by default.
1428 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1430         * BinaryReader.cs: don't modify the underlying stream in Peek(). Fixes
1431         bug #51741. Patch by Nick Vaughan.
1433 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
1435         * FileStream.cs: ReadByte(): when buffering is disabled, read the byte
1436         with a direct call to ReadData. In InitBuffer(), if buffering is
1437         disabled, create a buffer of one byte, to be used in ReadByte.  This
1438         fixes bug #52361.
1440 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
1442         * Path.cs: In GetDirectoryName, fixed check for volumeSeparator. This
1443           fixes bug #53892.
1445 2004-03-24  Lluis Sanchez Gual  <lluis@ximian.com>
1447         * File.cs: In Move, throw IOException instead of ArgumentException if 
1448           destination is a directory.
1449         * MonoIO.cs: In ExistsDirectory, return ERROR_PATH_NOT_FOUND instead of
1450         ERROR_FILE_NOT_FOUND, since we are looking for a directory, not a file.
1451         
1452 2004-03-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1454         * StreamWriter.cs: Removed unneeded function
1456 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1458         * FileStream.cs: added support for asynchronous I/O without using the
1459         OS native libraries if available.
1461         * FileStreamAsyncResult.cs: IAsyncResult for asynch. I/O.
1463         * MonoIO.cs: added BeginRead/Write, GetSupportsAsync. Open has now a
1464         new parameter to tell ifthe file will be used for asynch operations.
1466         * Stream.cs: BeginRead/Write do not use delegates. They just are
1467         actually synchronous.
1469         * StreamAsyncResult.cs: IAsyncResult for Stream.
1471 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1473         * Directory.cs: check if the error returned in Exists is different
1474         from 'path not found' and throw the appropiate exception in that case.
1475         See #55160.
1477 2004-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1479         * MonoIO.cs: added case for ERROR_FILENAME_EXCED_RANGE.
1481 2004-02-25  Jackson Harper <jackson@ximian.com>
1483         * File.cs: Report the filename when deleting a file fails. Patch
1484         by Gert Driesen. Fixes bug #54855.
1485         
1486 2004-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1488         * FileStream.cs: remove dangling ^Ms.
1490 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1492         * FileStream.cs: (.ctor) Path.DirectoryName can be empty and make
1493         Path.GetFullPath crash. Fixed it.
1495         * MonoIO.cs: fixed typo.
1497 2004-02-13  Jackson Harper  <jackson@ximian.com>
1499         * FileStream.cs: Throw some more exceptions for invalid
1500         params. Fixes some unit test failures.
1501         * BufferedStream.cs: If the stream is closed (can't read from it
1502         or write to it) throw an ObjectDisposedException.
1503         
1504 Tue Jan 20 23:10:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1506         * StreamWriter.cs, TextWriter.cs: comply with the documented
1507         behaviour and use a decode buffer to improve performance.
1509 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1511         * Path.cs: now Path.GetFullPath ("/") returns "/" instead of "".
1513 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1515         * Path.cs: add the trailing directory separator only for volumes.
1516         Fixes bug #53035.
1518 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
1520         * IntPtrStream.cs: Fix build bustage.
1521         
1522         * IntPtrStream.cs: Add a 'Closed' event. Also throw exceptions after
1523         the stream is closed.
1525 2004-01-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1527         * FileStream.cs: Locking from bug #32344 removed. This is not
1528         necessary because the correct fix was actually in the console.
1529         This fixes bug #53026. Miguel de Icaza reviewed/approved this
1530         patch.
1532 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
1534         * FileStream.cs (.ctor): Avoid allocating a large buffer when reading
1535         from small files.
1537 2004-01-10  Atsushi Enomoto <atsushi@ximian.com>
1539         * Path.cs : GetDirectoryName ("c:\readme.txt") should return "c:\"
1540           instead of "c:" . This fixed bug #52735.
1542 2004-01-04  Nick Drochak <ndrochak@gol.com>
1544         * Path.cs: Remove defined but unused variable, and also got rid of
1545         some unreachable code.  Eliminates some build warnings.
1547 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
1549         * BinaryWriter.cs: use one encoding buffer for writing
1550         strings rather than allocting one/string. HUGE perf
1551         boost when writing many strings.
1553 2003-12-25  Atsushi Enomoto <atsushi@ximian.com>
1555         * Path.cs : Fixed GetFullPath() (and CanonicalizePath()), 
1556           HasExtension(), GetPathRoot() and IsPathRooted() to fit with tests.
1558 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
1560         * FileStream.cs: (.ctor) do not set handle
1561         in object until after it is validated via
1562         GetFileType so finalizer doesn't see bad handles and
1563         initialize this.handle to InvalidHandle
1565 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
1567         * MonoIO.cs: SetFileTime() Failed Open returns InvalidHandle
1568         not Zero
1570 2003-12-17  Atsushi Enomoto <atsushi@ximian.com>
1572         * Directory.cs : SetCurrentDirectory() should raise errors for
1573           some kind of arguments.
1575 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1577         * Path.cs: GetTempPath () ends with DirectorySeparatorChar. Fixes bug
1578         #52056.
1580 2003-12-06  Ravindra  <rkumar@novell.com>
1581         *MonoIO.cs: Added a new exception case. It is thrown 
1582         when a directory creation is attempted with a name that
1583         is already used by an existing file.
1585 2003-11-28  Dick Porter  <dick@ximian.com>
1587         * Path.cs: Use the char form of LastIndexOf, so that the
1588         comparison is done with the Invariant culture.
1590 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1592         * Directory.cs: provide the path when getting the IOException.
1594 2003-11-18  John Luke  <jluke@cfl.rr.com>
1596         * CheckArgument.cs:
1597         (PathLength): fix recursion found by JonK
1598         
1599 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1601         * Directory.cs:
1602         (GetCurrentDirectory):
1603         (SetCurrentDirectory): moved here from Environment. Handle error cases.
1605         * MonoIO.cs: add path to the default error message.
1607 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1609         * StringReader.cs: fixed ReadLine for some cases where there are mixed
1610         '\r' and '\n'. Closes bug #51020.
1612 2003-11-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1614         * MemoryStream.cs (.ctor): We need to check if buffer is null
1615         before we get the Length of it.
1617 2003-11-14  Miguel de Icaza  <miguel@ximian.com>
1619         * StreamReader.cs, TextReader, StreamReader (Read): Add [Out]
1621 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1623         * Directory.cs: allow directory names without wildcards in the pattern.
1624         Fixes bug #3 50969.
1626         * SearchPattern.cs: made InvalidChars and WildcardChars internal.
1628 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1630         * FileStream.cs: use the argument name when throwing exception.
1632         * StreamReader.cs:
1633         * StringReader.cs:
1634         * TextReader.cs: added [In] attribute for the array in Read.
1636 2003-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1638         * DirectoryInfo.cs: fixed ToString. Closes bug #50842.
1640 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
1642         * Directory.cs: Adjust for missing PlatformID.Unix.
1644 2003-10-28  Miguel de Icaza  <miguel@ximian.com>
1646         * StreamReader.cs: Add checks for disposed stream from bug report
1647         #48696 (Patrik Reali)
1649         * TextReader.cs (Read): Return the total number of bytes read, 
1650         patch from Patrik Realli.
1652 2003-10-20  Miguel de Icaza  <miguel@ximian.com>
1654         * FileStream.cs public FileStream (string name, FileMode mode)
1655         constructor: If we pass FileMode.Append, we can not pass
1656         FileAccess.ReadWrite.  This fixes bug 44959
1658 2003-09-26  Miguel de Icaza  <miguel@ximian.com>
1660         * BufferedStream.cs (Write): Use CanWrite in Write.  Patch from
1661         Francisco Figueiredo Jr.
1663 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1665         * BinaryReader.cs: return the correct number of bytes read when there
1666         are some bytes from peeking.
1668 2003-09-11  Lluis Sanchez Gual  <lluis@ximian.com>
1670         * BufferedStream.cs, FileStream.cs, MemoryStream.cs, Stream.cs:
1671           Added [In,Out] attributes to Read method.
1673 2003-08-05  Martin Baulig  <martin@ximian.com>
1675         * StreamReader.cs (DiscardBufferedData): Do the same like on the
1676         ms runtime: just discard the buffered data, but don't modify the
1677         BaseStream.Position.
1679 2003-08-04  Martin Baulig  <martin@ximian.com>
1681         * StreamReader.cs (DiscardBufferedData): Implemented.
1683 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
1685         * IntPtrStream.cs (Read): Use correct offset here;  Change the
1686         code to use a byte* instead of an IntPtr to reduce the number of
1687         casts used. 
1689         (Read): Use Marshal.Copy instead of the now
1690         deprecated MemCopy.
1692         (IntPtrStream): New stream implementation, it maps to a region in
1693         memory.
1695 2003-07-23  Duncan Mak  <duncan@ximian.com>
1697         * StreamReader.cs (Initialize): This method is not exposed in the
1698         API, mark as internal.
1700 Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1702         * MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>.
1704 2003-07-16  Dick Porter  <dick@ximian.com>
1706         * FileInfo.cs: Update path info when a file is moved.  Patch by
1707         John Luke <jluke@cfl.rr.com>, fixes bug 44253.
1709 2003-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1711         * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
1713 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
1715         * FileStream.cs (Dispose): Flush the buffer even if we don't own the
1716         handle.
1717         * FileStream.cs: Add a new constructor parameter to turn off buffering.
1718         This is used by the Console.OpenStandard...() methods. Also fix
1719         argument checking in InitBuffer(), so a zero buffer size is also 
1720         rejected.
1722 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
1724         * Stream.cs: use async.delegate invoke 
1726 2003-06-18  Nick Drochak <ndrochak@gol.com>
1728         * FileSystemInfo.cs: Refresh cache when changeing file times.
1730 2003-06-11  Zoltan Varga  <vargaz@freemail.hu>
1732         * FileStream.cs: Fix errors in previous checkins:
1733         (Write): Only take the shortcut route if the data is longer than the
1734         buffer length.
1735         (Write): Flush the buffer before writing out the new data
1736         (Write): Flush the buffer after writing out a segment since otherwise
1737         we will go into an infinite loop.
1738         (FlushBuffer): Remove my last change since it was clearly wrong.
1739         (Seek): Run FlushBuffer () after the in-buffer seek optimization.
1740         (Seek): Only use the in-buffer optimization if the buffer is not
1741         empty.
1742         (Length): Call FlushBuffer () since buffer data might change the size
1743         of the stream.
1745 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1747         * FileStream.cs:
1748         - removed unusefull bugfix (DirectoryNotFoundException)
1749         - Flush before seek.
1750         
1751 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1753         * FileStream.cs: Check buffer size before append/read -exceptios
1754         
1755 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1757         * FileStream.cs: Check DirectoryNotFound before FileNotFound.
1758         
1759 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1761         * FileStream.cs: Does not anymore flush while writing
1762         
1763 2003-06-02  Nick Drochak <ndrochak@gol.com>
1765         * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
1766         for null too.
1768 2003-05-27  Lluis Sanchez Gual <lluis@ximian.com>
1770         * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
1772 2003-05-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1774         * Path.cs: fixed bug #42631.
1776 2003-05-22  Zoltan Varga  <vargaz@freemail.hu>
1778         * File.cs (Move): Allow moving of directories.
1779         Fix 'destination is a directory' test.
1781 2003-05-21  Ben Maurer  <bmaurer@users.sourceforge.net>
1783         * StringWriter.cs: Fixed bug #43431: "StringWriter
1784         .ctor(CultureInfo) does not create a new StringBuilder ()"
1786 2003-05-11  Zoltan Varga  <vargaz@freemail.hu>
1788         * FileStream.cs (FlushBuffer): After a flush, the buffer is
1789         advanced by buf_offset bytes, not buf_length bytes.
1791 2003-05-16  Dick Porter  <dick@ximian.com>
1793         * MonoIO.cs: Implement GetTempPath
1795 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1797         * DirectoryInfo.cs: fixed bug #42991.
1798         * Path.cs:
1799         (CanonicalizePath): store the value of the trimmed input string. Make it
1800         work with paths such as "/home/xxx/.".
1802 2003-05-08  Ben Maurer <bmaurer@users.sourceforge.net>
1803         * Path.cs 
1804         (CanonicalizePath) Fixed bug #42631, which duplicated the
1805         root part of the path under Windows.
1807 2003-05-08  Ville Palo <vi64pa@kolumbus.fi>
1809         * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc, 
1810         LastWriteTimeUtc and CreationTimeUtc
1811         
1812 2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
1813         * Path.cs 
1814         (GetPathRoot) Added support for UNC paths.
1815         (CanonicalizePath) Added optimizations per Miguel's requests.
1817 2003-05-06  Ville Palo <vi64pa@kolumbus.fi>
1819         * BufferedStream.cs: 
1820           - Removed unusefull code.
1821           - Added ObjectDisposedException to Position
1822           - Dont flush if stream is allready closed.
1823           - Flush throws also ObjectDisposedException.
1824         * Directory.cs:
1825           - GetFileSystemEtries: ArgumentNullException if pattern is null
1826         * DirectoryInfo.cs: Fixed little MoveTo () bug.
1827         * FileInfo.cs:
1828           - Exists: If file does not exists when instance is created the
1829           value of the Exists property does not change even if file is created
1830           afterwards.
1831           - Delete: If path is a directory UnauthorizedException is thrown.
1832           - CopyTo: Now we can overwrite file if wanted.
1833         * Path.cs: 
1834           - GetFullPath: Now throws exception when path is "   ".
1835         
1836 2003-05-04  Ben Maurer <bmaurer@users.sourceforge.net>
1837         * Directory.cs (GetLogicalDrives) Marked as MonoTODO
1838         because we need to implement the method on Windows.
1839         * Path.cs 
1840         (CanonicalizePath) Added new function to get
1841         rid of . and .. in path names. Need to figure out what
1842         other functions should call this.
1843         (GetFullPath) Added call to the above function.
1844         
1845 2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1847         * StreamReader.cs:
1848         (.ctor): fixed parameters passed to FileNotFoundException.
1850 2003-04-25  Dietmar Maurer  <dietmar@ximian.com>
1852         * BinaryReader.cs (Read): make sure the buffer is big enough (fix
1853         bug # 40702)
1855 2003-04-24  Pedro Martinez Julia  <yoros@wanadoo.es>
1857         * BufferedStream.cs: Test if it's possible to seek in a Stream
1858         before access to Position. This prevents the exception thrown when
1859         the stream is System.Net.Sockets.NetworkStream.
1861 2003-04-22  Ville Palo <vi64pa@kolumbus.fi>
1863         * Directory.cs: clean up --> performance improvment. Some exceptions
1864         are now checked in File.cs.
1865         * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
1866         
1867 2003-04-21  Ville Palo <vi64pa@kolumbus.fi>
1869         * Directory.cs: lots of fixes. 
1870           - Added GetXXXtimeUtc () (v1.1) methods.
1871           - Added SetXXXtimeUtc () (v1.1) methods.      
1872         
1873 2003-04-20  Igor Nosyryev <nosyryev@attbi.com>
1875         * StringReader.cs (Read): Increment nextChar by charsToRead
1876         instead of count, that will guarantee that the next time the
1877         method is called, it will return 0 on an empty string rather than
1878         throwing an exception
1880 2003-04-19  Ville Palo <vi64pa@kolumbus.fi>
1882         * BufferedStream.cs: Some fixes, mostly throwing exceptions.
1883         * MemoryStream.cs: Changed the order of exception checking
1884         * StringReader.cs: little clean up
1885         
1886 2003-04-14  Ville Palo <vi64pa@kolumbus.fi>
1888         * BinaryWriter.cs: Fixed decimal writing and lots of 
1889         ObjectDisposedExceptions added.
1890         
1891 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
1893         * BinaryReader.cs: Fix to ReadDecimal() method.
1894         
1895 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
1897         * StringReader.cs: Added some ObjectDisposedExceptions.
1898         * StringWriter.cs: Added some ObjectDisposedExceptions.
1899         * BinaryReader.cs: Added some ObjectDisposedExceptions.
1900         
1901 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1903         * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
1904         fill a bug report.
1906 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1908         * FileStream.cs: fixed bug #40182 and made more unit test pass.
1910 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1912         * FileStream.cs: Added new methods Lock () and Unlock ()
1913         
1914 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1916         * StringReader.cs: Throws exceptions if constructor parameter is null.
1917         
1918 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1920         * StringWriter.cs: Now throws an exception if StringBuilder parameter
1921         is null
1922         
1923 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
1925         * TextWriter.cs: Implemented Synchronized method.
1927         * TextReader.cs: Implemented Synchronized method.
1929 2003-04-04  Miguel de Icaza  <miguel@ximian.com>
1931         * FileStream.cs (Read, ReadByte, Seek): throw
1932         ObjectDisposedException if the handle has been released.
1933         
1934         (Read): Throw exceptions specified in the spec.
1936         (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
1937         instance methods of FileStream to be thread safe, so remove all
1938         the calls to lock on the object
1940 2003-03-31  Nick Drochak <ndrochak@gol.com>
1942         * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
1944 2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>
1946         * FileNotFoundException.cs: fixed serialization bug.
1948 2003-03-18  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
1950         * StringWriter.cs : don't release internalString on Dispose().
1952 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1954         * StreamReader.cs: fixed bug #39280.
1956 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1958         * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
1959         pointing it out.
1961 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1963         * MemoryStream.cs: general fixes and reformatted. Passes all tests in
1964         the new MemoryStreamTest.
1966 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1968         * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
1969         ToArray even after closing the stream.
1971 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1973         * Directory.cs:
1974         (Move): don't use File.Move.
1975         * DirectoryInfo.cs: fixed Name property.
1976         
1977         Fixes bug #37755.
1979 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1981         * DirectoryInfo.cs: changed ToString to match MS behavior.
1982         * Path.cs: further fixes to GetDirectoryName to return null in the
1983         same cases that MS does.
1985         Fixes bug #38387.
1987 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1989         * Path.cs: fixed a couple of bugs reported in #35906.
1991 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1993         * Directory.cs: fixed bugs #38939 and #38940. No need for separate
1994         unix/windows/unc shares code paths.
1996 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1998         * File.cs: fix by Elan Feingold <efeingold@mn.rr.com> for
1999         SetCreationTime, SetLastAccessTime and SetLastWriteTime.
2001 2003-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2003         * MemoryStream.cs:
2004         (ToArray): return only the portion of the buffer that contains
2005         data, not the whole buffer. (note: this makes XmlDocument.Load work
2006         again with documents that have a <?xml without the 'encoding'
2007         attribute, which makes gtk-sharp generator work again).
2009 2003-02-25  Nick Drochak <ndrochak@gol.com>
2011         * File.cs (GetCreationTime): Throw proper execption when path is not
2012         found.
2014 Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <lupus@ximian.com>
2016         * MemoryStream.cs: make it behave sanely when the stream is
2017         incrementally expanded.
2019 2003-02-21  Dick Porter  <dick@ximian.com>
2021         * FileStream.cs: Use locks around buffer manipulations.  Fixes bug
2022         32344
2024 2003-02-18  Dick Porter  <dick@ximian.com>
2026         * FileStream.cs: Make FileMode.Append work, and check for Seeking
2027         back over old data (undocumented ms behaviour, throws an exception
2028         if you try).  Fixes bug 35975.
2030 2003-02-17  Dick Porter  <dick@ximian.com>
2032         * FileStream.cs: Don't close the handle if the stream doesn't own
2033         it.  Patch from Raymond Penners (raymond@dotsphinx.com), bug
2034         35623.
2036 2003-02-14  Zoltan Varga  <vargaz@freemail.hu>
2038         * FileStream.cs (Write): flush after writing the last segment as well.
2040 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2042         * StringReader.cs:
2043         (ReadLine): fixed the case when the string ends with a '\n'.
2045 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2047         * MemoryStream.cs: create the buffer of the specified capacity.
2049 2003-01-31  Patrik Torstensson
2051         * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
2052         the same way as MS does it (performance improvement)
2054 2003-01-29  Zoltan Varga  <vargaz@freemail.hu>
2056         * Directory.cs (GetFileSystemEntries): moved error handling to the
2057         correct instance of GetFileSystemEntries so all callers can enjoy it.
2059 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
2061         * File.cs: add error handling to Get...Time methods.
2063 2003-01-26  Zoltan Varga  <vargaz@freemail.hu>
2065         * Directory.cs: fix GetParent so it actually works.
2067 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2069         * Path.cs: fixlet to ChangeExtension for the case when the path is
2070         empty.
2072 2003-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2074         * BufferedStream.cs: don't try to write a 0 sized array on when
2075         flushing the stream.
2076         
2077         Fixes bug #37045.
2079 2003-01-18  Jonathan Pryor <jonpryor@vt.edu>
2081         * FileStream.cs: Add IsAsync property.  (Documented in "C# In A Nutshell".)
2083 2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2085         * MemoryStream.cs: fixed bug #36319.
2087 2002-12-16  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
2088         
2089         * Directory.cs: Some fixes to SMB shares handling, and not compiling 
2090         with csc, mcs compiles it correctly (mcs bug 35652)
2092 2002-12-14  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
2094         * Directory.cs: Some fixes related to correct some exceptions thrown
2096 2002-12-11  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
2098         * Directory.cs: Some Exceptions added, fixed GetParent(),
2099         CreateDirectory() should work with unix, native windows and
2100         windows samba shares. Converted end-lines from dos-mode to unix-mode
2102 2002-12-08  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
2104         * Directory.cs: CreateDirectory  works now with Absolute paths
2105         too, not only with relative ones.
2107 2002-12-07  Peter Williams  <peterw@ximian.com>
2109         * Directory.cs: Don't use the uninitialized pathsumm here.
2110         Don't try and create "" if we're using an absolute path.
2112 2002-12-07  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
2114         * Directory.cs: Now the creation of a new directory works recursively
2115         it will make parents as needed.
2117 2002-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2119         * BufferedStream.cs: applied patch from <carlosga@telefonica.net> that
2120         fixes Flush ().
2122 Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <lupus@ximian.com>
2124         * StreamWriter.cs: output the encoding preamble at the start of a
2125         stream if needed.
2127 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2129         * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
2131 2002-11-06  Miguel de Icaza  <miguel@ximian.com>
2133         * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
2135 2002-10-31  Dick Porter  <dick@ximian.com>
2137         * FileStream.cs: Fix buffering properly this time.  Also kludge
2138         around broken pipe errors, treating them as EOF instead of
2139         throwing an IO exception.
2141         * MonoIO.cs: Return the error status in a parameter, as the
2142         GetLastError() value has long since been blown away if we try and
2143         look it up in a subsequent internal call invocation.
2145         * FileSystemInfo.cs: 
2146         * FileInfo.cs: 
2147         * File.cs: 
2148         * Directory.cs: MonoIO methods now have an error parameter
2150 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2152         * TextReader.cs: implemented ReadBlock ().
2154 2002-10-30  Miguel de Icaza  <miguel@ximian.com>
2156         * StreamWriter.cs: Ditto for Null stream.
2158         * BinaryReader.cs: Use Unmarked here too.
2160         * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
2161         is what .NET does.
2163 2002-10-23  Dick Porter  <dick@ximian.com>
2165         * FileStream.cs: Implemented CanSeek, and used it around all the
2166         calls to MonoIO.Seek.  Fixed buffering in Read() so that it
2167         doesn't block forever on short reads.
2169         * MonoFileType.cs: New enum for GetFileType
2170         
2171         * MonoIO.cs: Added GetFileType
2173 2002-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2175         * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
2176         \n (this is what MS does).
2178 2002-10-18  Dick Porter  <dick@ximian.com>
2180         * FileStream.cs: SeekOrigin.End still calculates the offset from
2181         the end of the file with positive values extending the length.
2182         Fixes bug 32471.
2184 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2186         * Path.cs: some cleanup. Thanks to Martin Aliger.
2188 2002-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2190         * FileStream.cs: throw an exception if trying to open a directory.
2191         Thanks to Martin Aliger.
2193 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2195         * Path.cs: fixes bug #28046.
2197 2002-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2199         * StreamReader.cs: give more information when wrong parameters passed.
2201 2002-09-21  Miguel de Icaza  <miguel@ximian.com>
2203         * FileStream.cs: Do not call FSync on the file.
2205 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
2207         * TextWriter.cs (Null): The Null field should be an instance of a
2208         TextWriter class that does nothing, so it is an instance of the
2209         NullTextWriter class.
2211 2002-09-16  Nick Drochak  <ndrochak@gol.com>
2213         * MemoryStream.cs (Close): Don't throw an exception if the stream
2214         is already closed.
2216 2002-09-15  Miguel de Icaza  <miguel@ximian.com>
2218         * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
2219         Flush calls fsync().  
2221         The API docs show no explicit mention that Flush() should even do
2222         an fsync, I am thinking that we should drop that from the
2223         runtime. 
2225 2002-09-09  Miguel de Icaza  <miguel@ximian.com>
2227         * StreamWriter.cs: When no encoding is provided, create an
2228         encoding without markers, this is what MS does.
2230 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
2232         * StreamReader.cs: Implement detection of byte marks and skipping
2233         of byte marks at the beginning of the stream.
2235         (ReadToEnd): Use buffered read instead of char-by-char
2236         processing. 
2238         Correct the default arguments for creating the StreamReader.
2240 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2242         * CheckArgument.cs: fixed check for empty string.
2243         * Path.cs: various fixes. It passes all the tests in new PathTest.
2245 2002-08-29  Duncan Mak  <duncan@ximian.com>
2247         * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
2248         the build for gtk#.
2250 2002-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2252         * BinaryReader.cs:
2253         * BinaryWriter.cs:
2254         * MemoryStream.cs:
2255         * StreamReader.cs:
2256         * StreamWriter.cs:
2257         * StringReader.cs:
2258         * StringWriter.cs:
2259         * TextWriter.cs: IDisposable fixes.
2261 2002-08-24  Miguel de Icaza  <miguel@ximian.com>
2263         * StreamReader.cs: Removed TODOs, as the code seems to be
2264         complete. 
2266         * Path.cs (GetTempFileName): Make this routine atomic by not
2267         testing and then creating, but using the create call to ensure
2268         that we own the filename.
2270 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2272         * FileLoadException.cs: implemented ToString.
2274         * StreamWriter.cs: added Null field and implemented Write (char) and
2275         Write (char []).
2277 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2279         * StreamReader.cs: implemented NullStreamReader.
2281 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
2283         * Path.cs (GetDirectoryName): Fix for filenames with size = 1
2285         * File.cs: Removed all references that threw exceptions when the
2286         paths contains a colon, as this is a valid part of an identifier
2287         on Unix.
2289         Everywhere: The String.Empty return from GetDirectoryName means
2290         that there is no directory information about the path.
2292 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2294         * FileNotFoundException.cs: use Message and InnerException from base
2295         class. Changed Message and ToString ().
2297 2002-08-19  Dick Porter  <dick@ximian.com>
2299         * BinaryWriter.cs: The length of a string is counted in bytes, not
2300         chars
2302 2002-08-18  Dick Porter  <dick@ximian.com>
2304         * BinaryReader.cs: Fixed buffering
2306 2002-08-09  Nick Drochak  <ndrochak@gol.com>
2308         * BinaryReader.cs: added virtual to Dispose(bool).
2310 2002-08-03  Jason Diamond  <jason@injektilo.org>
2312         * StringWriter.cs: Return UnicodeEncoding for Encoding property.
2314 2002-08-03  Jason Diamond  <jason@injektilo.org>
2316         * StreamWriter.cs: Use GetByteCount() to get exact length instead
2317         of GetMaxByteCount when converting chars to bytes.
2319 2002-07-31  Duncan Mak  <duncan@ximian.com>
2321         * StreamReader.cs: 
2322         (Dispose): Added and implmented.
2324         * StreamWriter.cs: 
2325         (Dispose): Fixed visibility.
2326         (Initialize): Fixed visibility, made internal.
2328         * BinaryReader.cs:
2329         (Dispose): Fixed visibility.
2331 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2333         * File.cs:
2334         (Create): allow file names without path.
2336 Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
2338         * FileStream.cs: patch from erik@bagfors.nu to add
2339         Name property support.
2341 2002-07-20  Dick Porter  <dick@ximian.com>
2343         * MonoIO.cs: Added icall to CreatePipe
2345 2002-07-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2347         * FileInfo.cs: fixes buglet #27940
2349 2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2351         * Path.cs: removed unneeded line from GetExtension.
2353 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2355         * FileStream.cs:
2356         (.ctor): call MonoIO.GetException with the file name.
2358 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
2360         * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
2362 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
2364         * StreamReader.cs: Revert the last Peek change and fix the ReadLine
2365         end of line detection code instead.
2367 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2369         * StreamReader.cs:
2370         (Peek): no need to have seek capabilitites. 
2372 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
2374         * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
2376         * File.cs (Delete): only call Directory.Exists() if DirName != ""
2378 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380         * Directory.cs: fixed bug #26133 and also test if the directory exist
2381         before performing the search.
2383 2002-06-12  Nick Drochak  <ndrochak@gol.com>
2385         * StringReader.cs (ReadLine): Return null when we get to end of the
2386         string.
2388 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
2390         * StreamWriter.cs: added ability to write null value
2391         
2392 2002-05-19  Lawrence Pit  <loz@cable.a2000.nl>
2394         * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
2395         prevent endless loops.
2397 2002-05-17  Dan Lewis  <dihlewis@yahoo.co.uk>
2399         * FileStream.cs: Enforce lower bound on buffer size.
2401 2002-05-16  Piers Haken <piersh@friskit.com>
2403         * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
2405 2002-05-17  Nick Drochak  <ndrochak@gol.com>
2407         * StreamWriter.cs: Implement buffering.  Also implemented dispose
2408         pattern as recommended by the MS docs.  Must call Close() now
2409         to ensure the buffer is flushed.
2411 2002-05-15  Nick Drochak  <ndrochak@gol.com>
2413         * Path.cs (GetDirectoryName): Return String.Empty if there is no
2414         directory
2416         * StreamReader.cs: Add some parameter checking on file names.
2418         * StreamWriter.cs: Add some parameter checking on file names.
2420 2002-05-14 Nick Drochak  <ndrochak@gol.com>
2422         * File.cs: Add parameter checks to most methods. Not completely done,
2423         but all current unit tests pass.
2425         * Path.cs: Implement GetTempFileName().
2427 2002-05-10  Nick Drochak  <ndrochak@gol.com>
2429         * StreamWriter.cs (Flush): Throw proper exception if internal stream
2430         has already been closed when we try to flush.
2432 2002/05/10  Nick Drochak <ndrochak@gol.com>
2434         * FileNotFoundException.cs (ToString): Don't try to use the inner
2435         exception, because it might be null.  Use the message instead.
2437 2002-05-09  Nick Drochak  <ndrochak@gol.com>
2439         * File.cs (Delete): Do not throw an exception if the file does not
2440         exist.
2442 2002-05-08  Mike Gray     <mikeg@mikegray.org>
2444         * File.cs: According to ECMA spec and MS docs Copy(src, dest)
2445         should not overwrite dest by default.
2447 2002-05-08  Nick Drochak  <ndrochak@gol.com>
2449         * StreamWriter.cs: Add paramter check to constructors and throw
2450         exceptions where appropriate.
2452 Tue May 7 11:47:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2454         * StreamReader.cs: return the number of chars read even if we diddn't
2455         fill the whole buffer (makes Sergey's ilasm work with mono).
2457 2002-05-07  Mike Gray     <mikeg_us@hotmail.com> 
2459         * FileInfo.cs (Create): Implement missing method.
2461 2002-05-07  Mike Gray     <mikeg_us@hotmail.com>
2463         * File.cs: Implemented CreateText method, and fixed dst compares
2464         to compare against "" instead of null twice.
2466 2002-05-05  Nick Drochak  <ndrochak@gol.com>
2468         * StreamReader.cs: Throw exceptions where needed. Changed Null field to
2469         use new internal class since null cannot be passed to constructor 
2470         anymore. Also, fix a coule of small bugs.
2472 2002-05-03  Nick Drochak  <ndrochak@gol.com>
2474         * MemoryStream.cs: Refrain from allocating array until the space is
2475         really needed. This fixes a bug in the Length property when the
2476         constructor without the byte array is used.
2478 2002-05-01  Duncan Mak  <duncan@ximian.com>
2480         * DirectoryNotFoundException.cs (constructor): Added missing
2481         serialization constructor.
2483 2002-04-30  Duncan Mak  <duncan@ximian.com>
2485         * FileLoadException.cs (constructors): Added missing (string,
2486         string) ctor, as well as (string, string, Exception) ctor.
2488         (Message): Added more info to the error message
2490         (ToString): Added. We'll need to add the StackTrace stuff when
2491         that works.
2493         * FileShare.cs: Add a missing field, Inheritable.
2494         
2495         * TextReader.cs: Renamed Synchronised method to Synchronized.
2497         * TextWriter.cs: Renamed Synchronised method to Synchronized.
2498         Renamed protected member coreNewLine to CoreNewLine.
2500 2002-04-30  Sergey Chaban  <serge@wildwestsoftware.com>
2502         * BinaryReader.cs: Allocate buffer before its first use.
2503         Handle end of stream properly. Methods to read native types
2504         (ReadInt* etc.) are little-endian (see Compact Framework docs).
2506         * BinaryWriter.cs: Store data in little-endian format.
2507         Use internal buffer for conversions.
2509 2002-03-31  Dick Porter  <dick@ximian.com>
2511         * Directory.cs: Strip out "." and ".." from returned list
2513         * FileAttributes.cs: Get the right enum values
2515 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
2517         * TextWriter.cs (write): added check for null
2519 2002-03-28  Dan Lewis  <dihlewis@yahoo.co.uk>
2521         * Directory.cs: Throws DirectoryNotFoundException.
2522         * MonoIO.cs: Fixed to work around enum problem.
2524 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
2526         * StreamReader.cs: Implemented ReadLine() and ReadEnd().
2528 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
2530         * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
2531         DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
2532         wrapper and PAL classes.
2534         * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
2536 2002-03-25  Mike Kestner <mkestner@speakeasy.net>
2538         * MemoryStream.cs (Read): Fixed bug in exception throw.
2540 2002-03-24  Mike Kestner <mkestner@speakeasy.net>
2542         * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
2544 2002-03-23  Martin Baulig  <martin@gnome.org>
2546         * StreamReader.cs: Always do buffered reading, use 4k blocks.
2547         (Read (char[], int, int)): Implemented.
2548         (DiscardBufferedData): Implemented.
2550 2002-03-21  Mike Kestner <mkestner@speakeasy.net>
2552         * StreamReader.cs : Fill out, add buffering, and use encoding.
2554 2002-03-19  Martin Baulig  <martin@gnome.org>
2556         * StreamWriter.cs (StreamWriter (string)): The default is to override
2557         the file, not to append to it.
2558         (StreamWriter (string path, bool append)): When appending, seek to the
2559         end of the file, otherwise truncate the file to zero length.
2560         (Dispose (bool)): Close the internalStream.
2561         (Flush): Flush the interalStream.
2562         (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
2564 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
2566         * FileStream.cs: Flush buffer before FileSetLength.
2568 2002-02-28  Miguel de Icaza  <miguel@ximian.com>
2570         * Stream.cs (NullStream): Do not track position, this beast does
2571         nothing in practice.
2573 2002-03-15  Dan Lewis <dihlewis@yahoo.co.uk>
2575         * SearchPattern.cs: New class. Glob matching code for Directory.
2576         * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
2578 2002/03/15 Nick Drochak <ndrochak@gol.com>
2580         * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
2581         This code seemed to be copied from somewhere, and it was close,
2582         but didn't match the docs.  This was the last bit needed to get
2583         NAnt to compile with our class libs.
2585 2002-03-12  Duncan Mak  <duncan@ximian.com>
2587         * EndOfStreamException.cs:
2588         * FileLoadException.cs:
2589         * FileNotFoundException.cs:
2590         * PathTooLongException.cs: Changed the base classes to IOException
2591         instead of SystemException.
2593         * IOException.cs: Added missing constructors.
2594         
2595 2002-03-07  Nick Drochak  <ndrochak@gol.com>
2597         * FileMode.cs: Docs don't say this should be explicitly derived from
2598         int, so just make it a normal Enum.
2600 2002-03-02  Jason Diamond  <jason@injektilo.org>
2602         * StringReader.cs: Fixed off-by-one error in Peek() and Read().
2604 2002-02-12  Nick Drochak  <ndrochak@gol.com>
2606         * PathTooLongException.cs: put it in the correct namespace
2607         * EndOfStreamException.cs: put it in the correct namespace
2609 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <lupus@ximian.com>
2611         * Directory.cs: handle opendir() return NULL and absolute filenames.
2613 2002-01-31  Duncan Mak  <duncan@ximian.com>
2615         * FileLoadException.cs:
2616         * FileNotFoundException: Added missing bits for serialization.
2618 Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <lupus@ximian.com>
2620         * Directory.cs: allow directories in GetFiles() mask.
2622 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
2624         * FileInfo.c (CopyTo, MoveTo): Implement.
2626         * FileStream.cs: Add argument checking to the constructor.
2628         * File.cs: Rewrote most of the file.  Implement Copy, Open, Create,
2629         OpenText, OpenWrite, Move.  Made pending methods flagged as MonoTODO. 
2630         
2631         * Directory.cs (Delete): reimplement without using DirectoryInfo.
2632         (Delete): Implement the recursive version.
2633         (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
2634         (Move): Reimplement.
2635         (getNames): dead code removal.
2637         * Path.cs: define an internal DirectorySeparatorStr that we use in
2638         a few spots.
2640         * Wrapper.cs: Updated to new version.
2641         
2642         * DirectoryInfo (Delete): Implement using the Directory API.
2644         * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
2645         Delete, Create, Parent, Exists, MoveTo): Implement. 
2647         * Directory.cs (GetListing): implement new utility function.
2648         (GetDirectories): Implement.
2649         (GetFileSystemEntries): Implement.
2650         (GetFiles): Implement.
2652         * CheckArgument.cs (Path): Do not allow null by default.
2654 Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <lupus@ximian.com>
2656         * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
2657         assembly in corlib.
2659 2002-01-20 Nick Drochak  <ndrochak@gol.com>
2661         * SeekOrigin.cs: Added Serializable attribute.
2663 2002-01-19  Duncan Mak  <duncan@ximian.com>
2665         * PathTooLongException.cs: 
2666         * EndOfStreamException.cs: Added to CVS.
2668 Thu Jan 10 12:06:46 MST 2002 Matt Kimball <matt@kimball.net>
2670         * BufferedStream.cs: Initial implemenation.  The synchronous
2671         methods for both reading and writing are implemented.  I'll do the
2672         asynchronous methods in a bit.
2673         
2674 Wed Jan  9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
2676         * BinaryWriter.cs: Initial implementation.  And it's all there.
2678         * BinaryReader.cs: The constructor now uses the passed in encoding,
2679         not UTF8 always.
2681 Wed Jan  9 13:54:28 MST 2002 Matt Kimball <matt@kimbal.net>
2683         * BinaryReader.cs: Initial implementation.  I think it's complete.
2685 2002-01-04  Ravi Pratap  <ravi@ximian.com>
2687         * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
2688         attribute decorations.
2690         * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
2691         Path.cs, TextReader.cs, TextWriter.cs : Ditto.
2693         * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs: 
2694         Ditto.
2696 2001-12-11  Dick Porter  <dick@ximian.com>
2698         * FileStream.cs: Use handles rather than casting file descriptors.
2699         Added Handle property.
2701 Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <lupus@ximian.com>
2703         * CheckPermission.cs: disable ModeAccess() code: it's wrong.
2704         * FileStream.cs: only trow an exception if the read failed in ReadByte().
2705         * StreamReader.cs: implement Peek and Read.
2706         * TextWriter.cs: CLSCompliant updates.
2708 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
2710         * FileNotFoundException.cs: Added some constructors
2712         * Path.cs (GetFullPath): Fixed implementation
2714 Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <lupus@ximian.com>
2716         * DirectoryNotFoundException.cs: implemented.
2718 Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
2720         * File.cs: fix signatures of the Open() and OpenRead() functions
2721         (they are static).
2723 Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
2725         * FileLoadException.cs, FileNotFoundException.cs: added.
2727 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
2729         * TextReader.cs: implemented the Read method
2731         * StreamReader.cs: impl. stubs
2733         * StreamWriter.cs: impl.
2735         * TextWriter.cs: implemented Write and WriteLine methods
2737 Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
2739         * FileAccess.cs, FileMode.cs: change values to be compatible with
2740         the ms ones.
2741         
2742 Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
2744         * IOException.cs: Implemented System.IO.Exception.
2746 2001-07-18  Michael Lambert <michaellambert@email.com>
2748         *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
2750 2001-07-19  Marcin Szczepanski <marcins@zipworld.com.au>
2752         * System.IO.MemoryStream.cs: Added.  Had quite a few cases of
2753         "LAMESPEC", but the tests work against the MS implementation so
2754         the major functions are right (ie. Read/Write/Seek).  Some more
2755         tests required for the various constructors and exceptions.
2757 2001-07-16  Marcin Szczepanski <marcins@zipworld.com.au>
2759         * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
2760         New class implemenations.
2762         * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.