2007-05-12 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / class / corlib / System.IO / ChangeLog
blobb6b8f209cfcd0e29dd5bacbb10a22120a0edd2aa
1 2007-05-12  Jonathan Chambers  <joncham@gmail.com>
3         * FileStream.cs: Implement SafeHandle constructors.
5 2007-05-01  Dick Porter  <dick@ximian.com>
7         * File.cs:
8         * Stream.cs: Missed a few 2.0 methods
10 2007-04-30  Dick Porter  <dick@ximian.com>
12         * Directory.cs: 
13         * FileShare.cs: 
14         * DirectoryNotFoundException.cs: 
15         * SeekOrigin.cs: 
16         * FileAttributes.cs: 
17         * IOException.cs: 
18         * MemoryStream.cs: 
19         * FileMode.cs: 
20         * BinaryWriter.cs: 
21         * TextWriter.cs: 
22         * File.cs: 
23         * BinaryReader.cs: 
24         * TextReader.cs: 
25         * UnmanagedMemoryStream.cs: 
26         * StringWriter.cs: 
27         * FileAccess.cs: 
28         * FileLoadException.cs: 
29         * BufferedStream.cs: 
30         * Stream.cs: 
31         * FileInfo.cs: 
32         * FileStream.cs:
33         * StringReader.cs: 
34         * StreamWriter.cs: 
35         * EndOfStreamException.cs: 
36         * DriveInfo.cs: 
37         * StreamReader.cs: 
38         * PathTooLongException.cs: 
39         * DriveType.cs: 
40         * FileNotFoundException.cs: 2.0 profile updates
42 2007-04-21  Alp Toker  <alp@atoker.com>
44         * FileStream.cs: Respect request for buffering in all cases.
46         Gonzalo added code in r42667 that disables buffering even when it is
47         requested, in the case that ftype != MonoFileType.Disk. This was
48         killing performance for users who do Console.OpenStandardOutput(1024)
49         but were ending up with a non-buffered FileStream.
51         The new behaviour appears correct but we should watch for any
52         regressions.
54 2007-04-05  Dick Porter  <dick@ximian.com>
56         * Directory.cs: Pass combined path and pattern to
57         MonoIO.GetFileSystemEntries()
59 2007-04-03  Alp Toker  <alp@atoker.com>
61         * UnmanagedMemoryStream.cs: Should not have a public Dispose().
62         This behaviour is already provided by the base class.
64 2007-04-03  Alp Toker  <alp@atoker.com>
66         * Stream.cs: CreateWaitHandle() obsolete in 2.0.
68 2007-03-18  Alp Toker  <alp@atoker.com>
70         * UnmanagedMemoryStream.cs:
71         * Directory.cs: Exception message typo fixes.
73 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
75         * UnmanagedMemoryStream.cs: Fix a warning.
77 2007-03-05  Miguel de Icaza  <miguel@novell.com>
79         * Path.cs: Manually call FileStream and pass the new internal
80         FileOptions.1 flag that means "This is a temporary file, use 600
81         permissions". 
83         * FileOptions.cs: Document the new private enum value.
85 2007-02-22  Dick Porter  <dick@ximian.com>
87         * MonoIOError.cs: 
88         * MonoIO.cs: Handle ERROR_CANNOT_MAKE.
90 2007-02-19      Eyal Alaluf <eyala@mainsoft.com>
92         * DirectoryInfo.cs, Directory.cs: Use MonoNotSupported & MonoLimitation
93           attribute to tag that DirectorySecurity is not supported.
95 2007-02-19      Boris Kirzner <borisk@mainsoft.com>
97         * Path.cs: fix order of InvalidPathChars on windows.
99 2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>
101         * StreamReader.cs: Removed checks for non-existing directory or file,
102         since these checks are also performed in FileStream.
104 2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>
106         * FileStream.cs: Always resolve to absolute paths for exceptions, when not
107         in anonymous mode.
109 2007-01-24 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
111         * StreamReader.cs: fix for bug #75526. We return earlier from Read () if
112         the underlying stream might block or end on the next read.
114 2007-01-22  Miguel de Icaza  <miguel@novell.com>
116         * DirectoryInfo.cs: Throw a better exception (accorind go the
117         docs, UnauthorizedAccessException is thrown if the underlying
118         platform does not support it and *also* if there are no
119         permissions to access it, which is more convenient than the
120         PlatformNotSupportedException that only states that it needs Win2k
121         or newer).
123 2006-12-23  Alp Toker  <alp@atoker.com>
125         * Directory.cs: "platfor" typofix
127 2006-12-22  Sebastien Pouliot  <sebastien@ximian.com>
129         * File.cs: Add stubs for Encrypt and Decrypt that throws 
130         NotSupportedException just like non-NTFS file systems would with MS.
131         Remove nested #if NET_2_0.
132         * FileInfo.cs: Add stubs for Encrypt and Decrypt that throws 
133         NotSupportedException just like non-NTFS file systems would with MS.
135 2006-12-22  Atsushi Enomoto  <atsushi@ximian.com>
137         * Directory.cs : non NET_2_0 build fix.
139 2006-12-15  Miguel de Icaza  <miguel@novell.com>
141         * FileInfo.cs: Empty implementations for Encrypt and Decrypt
143 Mon Dec 11 11:40:06 CET 2006 Paolo Molaro <lupus@ximian.com>
145         * FileStream.cs: correct exception message patch from
146         Markus Mauhart <mmauhart@chello.at>.
148 2006-11-28  Duncan Mak  <duncan@novell.com>
150         * TextReader.cs (Dispose): Expose as public in NET_2_0.
152 2006-11-26  Miguel de Icaza  <miguel@novell.com>
154         * DriveInfo.cs, DriveType.cs: Add a couple of classes for
155         CreativeDocs.Net.  
157         Thanks MoMA!  http://www.mono-project.com/Moma
159 2006-11-16  Miguel de Icaza  <miguel@novell.com>
161         * DirectoryInfo.cs (GetFiles): Implement option with SearchOptions
162         == AllDirectories
164 2006-11-13  Dick Porter  <dick@ximian.com>
166         * Directory.cs: Don't follow symlinks when deleting directories.
167         Keeps bug 79733 fixed while fixing bug 79887.
169         * MonoIO.cs: ExistsSymlink() added, which checks for
170         FileAttributes.ReparsePoint.
172 2006-11-07  Dick Porter  <dick@ximian.com>
174         * Directory.cs: CreateDirectory() should only throw IOException in
175         the 2.0 profile if a file already exists with the same name, not a
176         directory.
178 2006-11-03 Jensen Somers <jensen.somers@gmail.com>
180         * Directory.cs: CreateDirectory() should throw IOException if a
181         file or directory with the same name already exists, in the 2.0
182         profile.  Fixes bug 79806.
184 2006-10-30 Joel Reed  <joel.reed@ddiworld.com>
186         * DirectoryInfo.cs: Implement SearchOption.AllDirectories option.
188 2006-10-11  Dick Porter  <dick@ximian.com>
190         * FileStream.cs: Cope with 2.0 FileShare.Delete values.  Patch by
191         Peter Dettman <peter.dettman@iinet.net.au> fixing bug 79250.
193 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
195         * FileInfo.cs: added 2.0 IsReadOnly. Patch by Joel Reed.
197 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
199         * FileInfo.cs: eol-style.
201 2006-09-19  Gert Driesen  <drieseng@users.sourceforge.net>
203         * FileNotFoundException.cs: Changed message for default ctor to match
204         MS. Use internal message field of Exception to check whether Message
205         is null. On 2.0 profile, use file/assembly load failure message when
206         no message is set and a filename was specified. On 1.0 profile,
207         always use file/assembly load failure message when no message is set
208         (regardless of whether a filename was specified or not). Made some
209         cosmetic changes to ToString to have it match MS.
211 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
213         * BinaryReader.cs (Read): Avoid allocating memory when reading a char.
215 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
217         * StreamReader.cs: avoid ArgumentOutRangeException when the underlying
218         stream returns -1 on Read.
220 2006-08-30  Lluis Sanchez Gual  <lluis@novell.com>
222         * FileInfo.cs: OpenRead should open the file using the Read share mode.
224 2006-08-21  Sebastien Pouliot  <sebastien@ximian.com>
226         * Path.cs: Added internal method IsPathSubsetOf required to implement
227         correctly FileIOPermission (better located here).
229 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
231         * File.cs: (Delete) avoid creating the exception object for the 'file
232         not found' case.
234 2006-07-24  Miguel de Icaza  <miguel@novell.com>
236         * FileShare.cs: Add Delete in 2.0
238 2006-07-06  Dick Porter  <dick@ximian.com>
240         * Directory.cs: When creating a directory treat ERROR_FILE_EXISTS
241         (ie a file already exists with that name) the same as
242         ERROR_ALREADY_EXISTS (ie a directory already exists with that
243         name.)  Keeps bug 50753 fixed when I fix the io-layer
244         CreateDirectory() behaviour.
246 2006-06-21  Atsushi Enomoto <atsushi@ximian.com>
248         * Directory.cs : implemented GetFiles() and GetDirectories() which
249           takes SearchOption (as they are used in one of ruby.net stuff).
251 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
253         * File.cs: never throw in Exists.
255 2006-05-18  Miguel de Icaza  <miguel@novell.com>
257         * Directory.cs (Exists): Ignore INVALID_HANDlE, return false.
259 2006-06-03 John Luke <john.luke@gmail.com>
261         * Path.cs: fix typo in [Obsolete] message
262         
263 2006-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
265         * BinaryReader.cs: use BlockCopyInternal.
267 2006-05-01  Daniel Drake  <dsd@gentoo.org>
269         * Directory.cs: Return false (as documented) on ERROR_ACCESS_DENIED in
270         Exists() rather than throwing an exception. Bug #78239.
272 2006-04-29  Atsushi Enomoto <atsushi@ximian.com>
274         * UnexceptionalStreamReader.cs (Read): Fix for #78218, where we
275         consumed characters from the input even when the count was not set
276         to zero, causing some characters to be missing in some
277         circumstances. 
279 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
281         * Directory.cs: make sure the parent directory is not an empty string
282         when a file name with no path is provided. Fixes bug #78209. Patch by
283         Emery Conrad.
285 2006-04-28  Atsushi Enomoto  <atsushi@ximian.com>
287         * StreamReader.cs : implemented EndOfStream property.
288         * File.cs : implemented AppendAllText(), WriteAllLines(),
289           WriteAllBytes() and ReadAllLines(). Bug #77813 fixed.
291 2006-04-28  Robert Jordan  <robertj@gmx.net>
293         * Path.cs (GetPathRoot): Return just the \\server\share
294         part of a UNC. Fixes #78147.
297 2006-04-26  Miguel de Icaza  <miguel@novell.com>
299         * FileStream.cs: Implement the FileOptions usage by passing all
300         the information to the C layer.  Remove the "isAsync" argument for
301         MonoIO.Open, and instead pass it on the FileOptions.
303         * FileOptions.cs: Make it build when including WriteThrough
305         * MonoIO.cs: Update MonoIO.Open signature to drop the async
306         argument and take FileOptions instead. 
308 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
310         * FileStream.cs: Add new net 2.0 ctor.
312         * FileOptions.cs: New file.
314 2006-03-21  Miguel de Icaza  <miguel@novell.com>
316         * Stream.cs: In 2.0 make Close call Dispose(true).
318 2006-03-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
320         * FileStream.cs: Seek() should flush the buffer, if any. Fixes bug
321         #77863.
323 2006-03-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
325         * Stream.cs: Add 2.0 members to Stream.cs (CanTimeout,
326         ReadTimeout and WriteTimeout).
327         
328 2006-02-27  Gert Driesen  <drieseng@users.sourceforge.net>
330         * File.cs: In 2.0 profile, File.Get****Time(Utc) should not throw
331         IOException if specified path does not exist. Fixes bug #77641.
333 2006-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
335         * FileStream.cs: To match MSFT, ignore FileShare.Inheritable on 2.0
336         profile. This fixes bug #77644. Improved usefulness of some existing
337         exception messages.
339 2006-02-22  Joerg Rosenkranz <joergr@voelcker.com>
341         * MonoIO.cs, MonoIOError.cs: Verbose exception for error 39 
342           (disk full).
343           
344 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
346         * Stream.cs FileStream.cs: Add new 2.0 Dispose () method and protected
347         Dispose (bool) method.
349 2006-01-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
351         * TextWriter.cs: Dispose () is public in 2.0.
353 2006-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
355         * UnexceptionalStreamReader.cs: Read (char,int,int) should not
356         return -1. Thanks to Jakob Berkman.
358 2006-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
360         * StreamReader.cs: (ReadToEnd) if Read returns -1 or 0, we're done.
362 2006-01-18  Atsushi Enomoto  <atsushi@ximian.com>
364         * Path.cs : (GetRandomFileName) use random buffer ;-) It somehow
365           caused infinite loop on Windows.
367 2006-01-18  Atsushi Enomoto  <atsushi@ximian.com>
369         * DirectoryInfo.cs : on Windows top directory is something like c:\.
371 2006-01-17  Joshua Tauberer  <tauberer@for.net>
373         * StreamReader.cs: Avoid two totally unnecessary string creations.
374           (kind of pedantic)
376 2006-01-13  Ben Maurer  <bmaurer@andrew.cmu.edu>
378         * TextWriter.cs: Call char[],int,int from the Write(char[]) method
379         both for msft compat and for performance. Thanks to "Mike Glenn" 
380         <mglenn@zoominternet.net> for pointing.
382 2006-01-12  Ben Maurer  <bmaurer@andrew.cmu.edu>
384         * File.cs: Support for Read/WriteAllText
386 2006-01-11  Sebastien Pouliot  <sebastien@ximian.com>
388         * Path.cs: Previous fix caused regression of bug #76191. Fixed (again)
390 2006-01-09  Sebastien Pouliot  <sebastien@ximian.com>
392         * Path.cs: Fix c14n on Windows when the first separator after the root
393         isn't '\'. Fix problems for XSP with 1.1.13.
395 2006-01-07  Miguel de Icaza  <miguel@novell.com>
397         * Path.cs (GetTempFilename): Append ".tmp" to the path, some
398         external application expect this extension.
400 2006-01-05  Kornél Pál  <kornelpal@hotmail.com>
402         * DriveNotFoundException.cs: Added.
403         * MonoIO.cs: Added ERROR_INVALID_DRIVE handling. Pass HResult to
404           IOException constructors.
405         * MonoIOError.cs: Expose ERROR_INVALID_DRIVE.
407 2006-01-02  Sebastien Pouliot  <sebastien@ximian.com>
409         * UnexceptionalStreamReader.cs: Re-implemented the Read method to fix 
410         the new line handling when reading from the Console (bug #77108).
412 2005-12-24  Kornél Pál  <kornelpal@hotmail.com>
414         * FileStream.cs: Set buf_start to actual initial position when creating
415           FileStreams from handles.
417 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
419         * DirectoryInfo.cs: Fixed #77090 to fix /home parent to be / (and not
420         null).
422 2005-12-21  Sebastien Pouliot  <sebastien@ximian.com>
424         * Path.cs: Fixed #77058 where a Windows drive wasn't considered during
425         path canonalization.
427 2005-12-20  Sebastien Pouliot  <sebastien@ximian.com>
429         * Path.cs: Fixed #77007 where a Windows drive is specified with a 
430         partial path.
432 2005-12-15  Sebastien Pouliot  <sebastien@ximian.com>
434         * DirectoryInfo.cs: Fixed #76903 where the Name property wasn't 
435         correct in some cases. Added special case for Windows drives. Reduced
436         temporary allocations in Get* methods (removed ArrayList). Added some
437         new 2.0 methods (partial).
438         * MonoIO.cs: Removed InvalidPathChars icall as the return value is 
439         different from 1.x and 2.0. The values are now defined in Path.cs.
440         * Path.cs: Fixed #76191 so that GetFullPath on a Windows drive returns
441         the current directory (if it's on the specified drive). Fixed 2.0 API
442         changes (e.g. static class).
443         * SearchOption.cs: Added missing [Serializable] (2.0).
445 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
447         * Directory.cs: Fix a warning.
449 2005-11-10  Dick Porter  <dick@ximian.com>
451         * DirectoryInfo.cs: Fix endless recursion problem with root
452         directory on windows too.  Fixes bug 76191.
454 2005-11-06  Zoltan Varga  <vargaz@freemail.hu>
456         * Directory.cs: Add stub for net 2.0 GetFiles method.
458         * SearchOption.cs: New file.
460 2005-10-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
462         * StreamReader.cs: made ReadLine() less memory-hungry. Fixes bug #76399.
464 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
466         * MonoIO.cs: replace FindFirst/FindNext/FindClose with
467         GetFileSystemEntries.
468         * Directory.cs: simplify GetFileSystemEntries by using the new icall.
470 2005-10-01  Ben Maurer  <bmaurer@ximian.com>
472         * BinaryReader.cs: The patch below had a nasty little bug with
473         long strings that had non-ascii chars in it, because it was
474         looking at the char count, not the byte count.
476 2005-09-11  Ben Maurer  <bmaurer@ximian.com>
478         * BinaryReader.cs: An optimization for ReadString that had been
479         approved/well tested for a while but never gotten in. Bug #52754.
481 2005-09-05  Miguel de Icaza  <miguel@novell.com>
483         * MonoIOError.cs: expose the ERROR_DIR_NOT_EMPTY as we are
484         throwing it. 
486         * MonoIO.cs: Return a properly named error.
488 2005-08-23  Raja R Harinath  <rharinath@novell.com>
490         Fix #75679.
491         * StreamReader.cs (DiscardBufferedData): Reset the decoder too.
493 2005-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
495         * BinaryReader.cs: use Buffer.BlockCopy instead of Array.Copy when
496         expanding the buffer.
498 2005-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
500         * Directory.cs: don't leak 'find' handles.
502 2005-07-05  Dick Porter  <dick@ximian.com>
504         * MonoIO.cs:
505         * MonoIOError.cs: Add error message for ERROR_WRITE_FAULT.
507 2005-07-04  Sebastien Pouliot  <sebastien@ximian.com>
509         * DirectoryInfo.cs: Fixed recursion problem with root directory 
510         introduced when fixing bug #75443.
512 2005-07-02  Sebastien Pouliot  <sebastien@ximian.com>
514         * FileSystemInfo.cs: Fixed exception arguments. Added ComVisible for
515         NET_2_0.
516         * DirectoryInfo.cs: Fixed bug #75443 when the directory ends with a
517         separator. Added ComVisible for NET_2_0. Normalized line endings.
519 2005-05-26  Miguel de Icaza  <miguel@novell.com>
521         * File.cs (ReadAllBytes): add.
523 Tue May 17 10:54:18 CEST 2005 Paolo Molaro <lupus@ximian.com>
525         * FileStream.cs: complete fix for #74971.
527 2005-05-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
529         * FileStream.cs: make WriteByte work in all cases when no buffer is
530         being used. Fixes bug #74971.
532 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
534         * Directory.cs: if the pattern is just a file name and it exists, return
535         it right away. Fixes bug #72143.
537 2005-05-06  Ben Maurer  <bmaurer@ximian.com>
539         * File.cs (Open): If a stream is opened with Append access, you
540         only want Write access. Fixes bug #71088.
542 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
544         * UnexceptionalStreamWriter.cs: don't throw anything on Flush. Closes
545         bug #74190.
547 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
549         * Path.cs: don't trim the path in CanonicalizePath on non-windows
550         systems. Fixes bug #53173.
552 2005-04-09  Miguel de Icaza  <miguel@novell.com>
554         * StreamWriter.cs (Initialize): Avoid echoing the preamble to a
555         file if the position of the stream is not at the beginning.  Fixes
556         bug #74513
558 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
560         * FileStream.cs:
561         * MonoIO.cs: remove dead code related to async IO.
563 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
565         * Directory.cs: Added a Demand for Read/Write when creating a new 
566         directory.
567         * FileSystemInfo.cs: Added an InheritanceDemand for Unrestricted on 
568         the class.
569         * Path.cs: Added a Demand for PathDiscovery in GetFullPath method.
570         Added an Assert for unrestricted file access to GetTempFilename as
571         the method must create the (zero-length) file and can be called from
572         partially trusted code. Added a Demand for unrestricted environment
573         access to GetTempPath method.
574         * FileStream.cs: Added a Demand for UnmanagedCode for all constructors
575         accepting a file handle. Added LinkDemand and InheritanceDemand for 
576         UnmanagedCode to get Handle and SafeFileHandle (2.0) properties.
578 2005-03-16  Lluis Sanchez Gual  <lluis@novell.com>
580         * BinaryReader.cs, BinaryWriter.cs: Read/write dobules, floats and
581         decimals in little endian format.
583 2005-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
585         * MonoIO.cs:
586         * MonoIOError.cs: handle ERROR_LOCK_VIOLATION.
588 2005-03-15  Sebastien Pouliot  <sebastien@ximian.com>
590         * FileStream.cs: Anonymize part of the path when exceptions are throw
591         by a FileStream is used for isolated storage. Throw a DirectoryNotFound
592         Exception for any FileMode not just CreateNew (see new unit tests).
594 2005-03-09  Dick Porter  <dick@ximian.com>
596         * MonoIOError.cs: 
597         * MonoIO.cs: Add a few more exception messages
599 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
601         * CheckPermission.cs: Fix warning.
603 2005-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
605         * File.cs: Exists does not throw when there are invalid characters in
606         the file name.
607         * MonoIOError.cs: uncommented INVALID_NAME.
609         Patch by Gert Driesen.
611 2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>
613         * FileStream.cs: Added new constructor to allow anonymous files (i.e.
614         when Name property is "[Unknown]") for IsolatedStorage. Added
615         SafeFileHandle property and a reference to Microsoft.Win32.SafeHandles
616         for the NET_2_0 profile.
618 2005-01-28  Sebastien Pouliot  <sebastien@ximian.com>
620         * FileNotFoundException.cs, FileLoadException.cs: Fixed bad "if ();".
622 2005-01-27  Sebastien Pouliot  <sebastien@ximian.com>
624         * FileNotFoundException.cs, FileLoadException.cs: Protect the fusion
625         (GAC) log from being disclosed unless code has ControlPolicy and 
626         ControlEvidence. Added missing HResult value. Fixed Message property 
627         to match MS results. Changed ToString to use a StringBuilder.
629 2005-01-24  Sebastien Pouliot  <sebastien@ximian.com>
631         * Directory.cs: Added CAS security to Get|SetCurrentDirectory to 
632         complete Environment security checks.
634 2004-12-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
636         * BufferedStream.cs: use Buffer.BlockCopyInternal instead of Array.Copy.
638 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
640         * File.cs: delegate to the runtime the task of checking for destination
641         file existence in Move.
643 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
645         * BinaryReader.cs (ReadByte): Check for exceptions here.
647 2004-12-06  Atsushi Enomoto  <atsushi@ximian.com>
649         * TextWriter.cs : create CoreNewLine in another .ctor().
651 2004-12-05  Ben Maurer  <bmaurer@ximian.com>
653         * TextWriter.cs (WriteLine): Use CoreNewLine so that this does
654         not make a string out of the array every time it is called.
656         Thanks to Atsushi for the idea.
658 2004-12-04  Ben Maurer  <bmaurer@ximian.com>
660         * DirectoryInfo.cs (CreateSubDirectory): Check the input here.
661         
662         * FileSystemInfo.cs (CheckPath): Empty paths are invalid.
664 2004-11-19  Dick Porter  <dick@ximian.com>
666         * MonoIOError.cs: 
667         * MonoIO.cs: Add a proper message for sharing violation
669 2004-11-01  Ben Maurer  <bmaurer@ximian.com>
671         * MonoIOError.cs: All of these fields just take up room in corlib,
672         bloating things up. To make it worse, we need to malloc data at
673         runtime about them. Since most are not used, am commenting them
674         out
676 2004-09-19  Dick Porter  <dick@ximian.com>
678         * UnexceptionalStreamWriter.cs: 
679         * UnexceptionalStreamReader.cs: Wrappers around StreamWriter and
680         StreamReader that catch IOException.  Used by System.Console so
681         that graphical applications dont get IO errors when their
682         stdin/out/err vanishes (ie when they spew debug output.)
684 2004-09-12 Ben Maurer  <bmaurer@ximian.com>
686         * BinaryReader.cs: Use ReadByte when possible. Gives a tad
687         of perf, and fixes a bug reported on mono-patches-list
689 2004-09-08  Miguel de Icaza  <miguel@ximian.com>
691         * File.cs: Added Gettextification, provide a better error message
692         for #62112
694 2004-09-08  Marek Safar  <marek.safar@seznam.cz>
696         * Directory.cs,
697         * File.cs: Class is static for NET_2_0.
699 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
701         * MemoryStream.cs (SetLength): Use Array.Clear here
703 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
705         * Path.cs (Combine): Array.IndexOf is slow (because of the
706         special cases it must handle). So, rather than doing IndexOf
707         just check each type of seperator.
709 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
711         * StringReader.cs (StreamReader): remove sourceChars and disposed
712         variables
713         (Read): Copy directly from the string, rather than a char []
714         (Dispose, CheckObjectDisposedException): the flag for being
715         disposed is now source == null.
717 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
719         * Stream.cs: Close() does not call Flush(). Fixes bug #65340.
721 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
723         * StreamWriter.cs: avoid String.ToCharArray for perf.
725 2004-08-18  Dick Porter  <dick@ximian.com>
727         * StreamWriter.cs: Flush the buffer if AutoFlush is set to true.
728         Fixes bug 63063, patch by Laurent Debacker (debackerl@yahoo.com).
730 2004-08-13  Dick Porter  <dick@ximian.com>
732         * StreamWriter.cs: Allow FileShare.Read access to the underlying
733         FileStream, to be compatible with MS.  Fixes bug 62152.
735 2004-07-06  Dick Porter  <dick@ximian.com>
737         * MonoIO.cs: Add ERROR_INVALID_PARAMETER to the exception list.
738         Don't blow away the SetFileTime() error before the caller gets to
739         see it.  Part of the bug fix to 60970.
741 2004-07-05  Dick Porter  <dick@ximian.com>
743         * CheckPermission.cs:
744         * File.cs:
745         * FileInfo.cs:
746         * MonoIO.cs:
747         * FileStream.cs: Give the filename when throwing
748         FileNotFoundException.  Fixes bug 61120, based on patch from
749         Carlos Alberto Cesario <carloscesario@gmail.com>.
751 2004-07-05  Dick Porter  <dick@ximian.com>
753         * File.cs: File.Move() should check that the destination doesn't
754         already exist.  Fixes bug 60915, patch based on one from Carlos
755         Alberto Cesario <carloscesario@gmail.com>.
757 2004-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
759         * Directory.cs: implemented GetLogicalDrives.
761 2004-06-24  Lluis Sanchez Gual  <lluis@novell.com>
763         * StreamReader.cs: In DiscardBufferedData(), reset the mayBlock flag.
765 2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
767         * FileStream.cs :
768           .ctor() should block write access when created with FileAccess.Write.
770 2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
772         * FileStream.cs : Check buffer size before creating file.
773         * StreamReader.cs : Check encoding!=null before creating file.
774         * File.cs,
775           MonoIO.cs : Convert DateTime to FileTime after checking
776           file IO sharing violation (it just fixes the type of exception).
778 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
780         * MemoryStream.cs: added TODO for serialization
781         * StringWriter.cs: added TODO for serialization
783 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
785         * TextWriter.cs: fixed CoreNewLine to return char[]
787 2004-06-14  Dick Porter  <dick@ximian.com>
789         * Directory.cs:
790         * File.cs: Catch PATH_NOT_FOUND errors in Exists() too.  Fixes bug
791         59354.
793 2004-06-09  Duncan Mak  <duncan@ximian.com>
795         * BufferedStream.cs (SetLength): Add checks and throw the
796         appropriate Exceptions here instead.
798         * FileStream.cs (SetLength): Revert part of my last patch, we're
799         throwing ObjectDisposedException instead of IOException again.
801 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
803         * FileStream.cs: re-enabled ignoring broken pipe errors when reading.
804         Fixes bug #59639.
806 2004-06-08  Duncan Mak  <duncan@ximian.com>
808         * Directory.cs (IsRootDirectory): New helper method for
809         determining if a path is the root directory. Handles both Unix as
810         well as Windows.
811         (GetParent): Use IsRootDirectory for the check.
813 2004-06-08  Duncan Mak  <duncan@ximian.com>
815         * File.cs: Fix line endings, took out ^Ms.
817         * Directory.cs (GetParent): Return null if the specified path is
818         the root directory.
820         * StreamReader.cs (StreamReader):
821         (Initialize): Add a check that buffer_size must not be less than
822         or equal to zero.
824 2004-06-07  Duncan Mak  <duncan@ximian.com>
826         * FileStream.cs (SetLength): The other exceptions have precendence
827         over ObjectDisposedException, which is not one of the exceptions
828         listed in the documentation). Also, instead of throwing an
829         ObjectDisposedException, throw an IOException.
831 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
833         * BufferedStream.cs: fixed typo that prevented Read() from working.
834         This went out with beta 2. Closes bug #59534.
836 2004-05-31  Atsushi Enomoto  <atsushi@ximian.com>
838         * Directory.cs, File.cs : Fixed Exists() that raised 
839           DirectoryNotFoundException. Quick fix for bug #59354.
841 2004-05-30  Sebastien Pouliot  <sebastien@ximian.com>
843         * BinaryReader.cs: Added missing disposed check for most methods. 
844         Reordered some exceptions to match MS implementation. 
845         * BufferedStream.cs: Fixed Seek logic (check for CanSeek and dispose).
846         SetLength must also reset Position and check for dispose.
847         * FileStream.cs: Added missing check for invalid SeekOrigin. Added
848         missing validations.
850 2004-05-27  Dick Porter  <dick@ximian.com>
852         * FileSystemInfo.cs: Take out the error checking in Refresh(), it
853         broke other stuff
854         
855 2004-05-27  Dick Porter  <dick@ximian.com>
857         * MonoIO.cs: Define icalls for Lock() and Unlock()
858         
859         * FileStream.cs: Implement Lock() and Unlock().  Also improve IO
860         error reporting.
862         * FileSystemInfo.cs:
863         * File.cs:
864         * Directory.cs: Improve IO error reporting
866 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
868         * FileStream.cs: delay seeking to the end when FileMode.Append is
869         specified until after buffer initialization. Fixes bug #59151.
871 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
873         * BufferedStream.cs: Added globalization and fixed exceptions and 
874         possible integer overflow.
875         * FileStream.cs: Fixed possible integer overflow.
876         * MemoryStream.cs: Fixed possible integer overflow.
877         * StringReader.cs: Fixed possible integer overflow.
878         * TextWriter.cs: Fixed possible integer overflow.
880 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
882         * FileInfo.cs,
883           DirectoryInfo.cs : ToString() should return constructor arg as is.
884           This fixes bug #58804.
886 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
888         * Directory.cs: ERROR_FILE_NOT_FOUND in FindFirstFile means there are
889         no files, but the directory was found. Fixes bug #58875.
891 2004-05-24  Duncan Mak  <duncan@ximian.com>
893         * StreamWriter.cs (Close): Remember to set the 'closed' flag.
895         * DirectoryInfo.cs: 
896         * FileInfo.cs: Reformat the whole file to use DOS line endings.
897         (MoveTo): Return if the destination of Move is the
898         same as the file's current location.
900 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
902         * MemoryStream.cs: Fixed exception reporting to match MS Fx. Fixed the
903         condition to allow zeroization of existing data when we shrink the 
904         stream.
905         * StreamReader.cs: Add checks for null encoding. Fixed possible integer
906         overflow and ArgumentNullException in Read.
907         * StreamWriter.cs: Add dispose check to Write(char) and Write(char[]),
908         AutoFlush. Fixed possible integer overflow in Write(char[],int,int).
909         * StringWriter.cs: Fixed possible integer overflow in Write. Changed
910         spaces for tabs.
912 2004-05-22  Duncan Mak  <duncan@ximian.com>
914         * Directory.cs: Reformat the whole file to use Unix line endings
915         for consistency.
916         (GetFileSystemEntries): If pattern is String.Empty, always
917         return an empty string array. Throw the ArgumentException if path
918         is an empty string (determined using the new helper method)
919         (IsEmptyString): Returns true on an empty string or a string with
920         only whitespace characters.
922         * Path.cs (GetPathRoot): Throw an ArgumentException if the path
923         argument is String.Empty.
925 2004-05-20  Jackson Harper  <jackson@ximian.com>
927         * DirectoryInfo.cs: Create subdirectories correctly if more then
928         one is supplied.
929         
930 2004-05-16  Atsushi Enomoto  <atsushi@ximian.com>
932         * DirectoryInfo.cs: Fixed ToString() as well as FileInfo.
934 2004-05-16  Atsushi Enomoto  <atsushi@ximian.com>
936         * FileInfo.cs: ToString() returns not full path but just the file name.
938 2004-05-14  Marek Safar  <marek.safar@seznam.cz>
940         * TextWriter.cs: Removed useless [CLSCompliant (false)]
942 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
944         * Directory.cs: use the real wildcard for file names as it is supported
945         now in io-layer. SearhPattern is not needed now.
947 2004-04-30 Ben Maurer  <bmaurer@users.sourceforge.net>
949         * BinaryWriter.cs, Stream.cs: ensure we have beforefieldinit.
951 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
953         * Path.cs: readonlyificate.
955 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
957         * FileStream.cs: constify.
959 2004-04-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
961         * SearchPattern.cs: Call invariant String.ToLower
963 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
965         * FileStreamAsyncResult.cs: invoke the callback if set as completed
966         before the asynchronous stuff jumps in.
968 2004-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
970         * FileStream.cs: only pass the async flag set to true when opening the
971         file and AIO is supported by the underlying system. Fixes bug #56883.
973 2004-04-12  Gert Driesen (drieseng@users.sourceforge.net)
975         * FileSystemInfo.cs: Implemented ISerializable, corrected COM 
976         visibility of UTC properties
978 2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
980         * BufferedStream.cs: On Position change, do not reset the buffer if the
981         new position is in the limits of the buffer. This fixes #49403.
983 2003-04-03  Atsushi Enomoto <atsushi@ximian.com>
985         * Path.cs : ChangeExtension() does not remove dot(.) when extension is
986           an empty string.
988 2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
990         * FileSystemInfo.cs: Added InternalRefresh, a virtual method that derived
991           classes can override to perform class specific refreshing.
992         * FileInfo.cs: Refresh existence flag when Refresh is called.
993         * TextWriter.cs: Applied patch by Benjamin Jemlich for bug #52512.
994           The method Write(char) should do nothing by default.
996 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
998         * BinaryReader.cs: don't modify the underlying stream in Peek(). Fixes
999         bug #51741. Patch by Nick Vaughan.
1001 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
1003         * FileStream.cs: ReadByte(): when buffering is disabled, read the byte
1004         with a direct call to ReadData. In InitBuffer(), if buffering is
1005         disabled, create a buffer of one byte, to be used in ReadByte.  This
1006         fixes bug #52361.
1008 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
1010         * Path.cs: In GetDirectoryName, fixed check for volumeSeparator. This
1011           fixes bug #53892.
1013 2004-03-24  Lluis Sanchez Gual  <lluis@ximian.com>
1015         * File.cs: In Move, throw IOException instead of ArgumentException if 
1016           destination is a directory.
1017         * MonoIO.cs: In ExistsDirectory, return ERROR_PATH_NOT_FOUND instead of
1018         ERROR_FILE_NOT_FOUND, since we are looking for a directory, not a file.
1019         
1020 2004-03-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1022         * StreamWriter.cs: Removed unneeded function
1024 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1026         * FileStream.cs: added support for asynchronous I/O without using the
1027         OS native libraries if available.
1029         * FileStreamAsyncResult.cs: IAsyncResult for asynch. I/O.
1031         * MonoIO.cs: added BeginRead/Write, GetSupportsAsync. Open has now a
1032         new parameter to tell ifthe file will be used for asynch operations.
1034         * Stream.cs: BeginRead/Write do not use delegates. They just are
1035         actually synchronous.
1037         * StreamAsyncResult.cs: IAsyncResult for Stream.
1039 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1041         * Directory.cs: check if the error returned in Exists is different
1042         from 'path not found' and throw the appropiate exception in that case.
1043         See #55160.
1045 2004-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1047         * MonoIO.cs: added case for ERROR_FILENAME_EXCED_RANGE.
1049 2004-02-25  Jackson Harper <jackson@ximian.com>
1051         * File.cs: Report the filename when deleting a file fails. Patch
1052         by Gert Driesen. Fixes bug #54855.
1053         
1054 2004-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1056         * FileStream.cs: remove dangling ^Ms.
1058 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1060         * FileStream.cs: (.ctor) Path.DirectoryName can be empty and make
1061         Path.GetFullPath crash. Fixed it.
1063         * MonoIO.cs: fixed typo.
1065 2004-02-13  Jackson Harper  <jackson@ximian.com>
1067         * FileStream.cs: Throw some more exceptions for invalid
1068         params. Fixes some unit test failures.
1069         * BufferedStream.cs: If the stream is closed (can't read from it
1070         or write to it) throw an ObjectDisposedException.
1071         
1072 Tue Jan 20 23:10:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1074         * StreamWriter.cs, TextWriter.cs: comply with the documented
1075         behaviour and use a decode buffer to improve performance.
1077 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1079         * Path.cs: now Path.GetFullPath ("/") returns "/" instead of "".
1081 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1083         * Path.cs: add the trailing directory separator only for volumes.
1084         Fixes bug #53035.
1086 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
1088         * IntPtrStream.cs: Fix build bustage.
1089         
1090         * IntPtrStream.cs: Add a 'Closed' event. Also throw exceptions after
1091         the stream is closed.
1093 2004-01-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1095         * FileStream.cs: Locking from bug #32344 removed. This is not
1096         necessary because the correct fix was actually in the console.
1097         This fixes bug #53026. Miguel de Icaza reviewed/approved this
1098         patch.
1100 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
1102         * FileStream.cs (.ctor): Avoid allocating a large buffer when reading
1103         from small files.
1105 2004-01-10  Atsushi Enomoto <atsushi@ximian.com>
1107         * Path.cs : GetDirectoryName ("c:\readme.txt") should return "c:\"
1108           instead of "c:" . This fixed bug #52735.
1110 2004-01-04  Nick Drochak <ndrochak@gol.com>
1112         * Path.cs: Remove defined but unused variable, and also got rid of
1113         some unreachable code.  Eliminates some build warnings.
1115 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
1117         * BinaryWriter.cs: use one encoding buffer for writing
1118         strings rather than allocting one/string. HUGE perf
1119         boost when writing many strings.
1121 2003-12-25  Atsushi Enomoto <atsushi@ximian.com>
1123         * Path.cs : Fixed GetFullPath() (and CanonicalizePath()), 
1124           HasExtension(), GetPathRoot() and IsPathRooted() to fit with tests.
1126 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
1128         * FileStream.cs: (.ctor) do not set handle
1129         in object until after it is validated via
1130         GetFileType so finalizer doesn't see bad handles and
1131         initialize this.handle to InvalidHandle
1133 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
1135         * MonoIO.cs: SetFileTime() Failed Open returns InvalidHandle
1136         not Zero
1138 2003-12-17  Atsushi Enomoto <atsushi@ximian.com>
1140         * Directory.cs : SetCurrentDirectory() should raise errors for
1141           some kind of arguments.
1143 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1145         * Path.cs: GetTempPath () ends with DirectorySeparatorChar. Fixes bug
1146         #52056.
1148 2003-12-06  Ravindra  <rkumar@novell.com>
1149         *MonoIO.cs: Added a new exception case. It is thrown 
1150         when a directory creation is attempted with a name that
1151         is already used by an existing file.
1153 2003-11-28  Dick Porter  <dick@ximian.com>
1155         * Path.cs: Use the char form of LastIndexOf, so that the
1156         comparison is done with the Invariant culture.
1158 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1160         * Directory.cs: provide the path when getting the IOException.
1162 2003-11-18  John Luke  <jluke@cfl.rr.com>
1164         * CheckArgument.cs:
1165         (PathLength): fix recursion found by JonK
1166         
1167 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1169         * Directory.cs:
1170         (GetCurrentDirectory):
1171         (SetCurrentDirectory): moved here from Environment. Handle error cases.
1173         * MonoIO.cs: add path to the default error message.
1175 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1177         * StringReader.cs: fixed ReadLine for some cases where there are mixed
1178         '\r' and '\n'. Closes bug #51020.
1180 2003-11-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1182         * MemoryStream.cs (.ctor): We need to check if buffer is null
1183         before we get the Length of it.
1185 2003-11-14  Miguel de Icaza  <miguel@ximian.com>
1187         * StreamReader.cs, TextReader, StreamReader (Read): Add [Out]
1189 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1191         * Directory.cs: allow directory names without wildcards in the pattern.
1192         Fixes bug #3 50969.
1194         * SearchPattern.cs: made InvalidChars and WildcardChars internal.
1196 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1198         * FileStream.cs: use the argument name when throwing exception.
1200         * StreamReader.cs:
1201         * StringReader.cs:
1202         * TextReader.cs: added [In] attribute for the array in Read.
1204 2003-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1206         * DirectoryInfo.cs: fixed ToString. Closes bug #50842.
1208 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
1210         * Directory.cs: Adjust for missing PlatformID.Unix.
1212 2003-10-28  Miguel de Icaza  <miguel@ximian.com>
1214         * StreamReader.cs: Add checks for disposed stream from bug report
1215         #48696 (Patrik Reali)
1217         * TextReader.cs (Read): Return the total number of bytes read, 
1218         patch from Patrik Realli.
1220 2003-10-20  Miguel de Icaza  <miguel@ximian.com>
1222         * FileStream.cs public FileStream (string name, FileMode mode)
1223         constructor: If we pass FileMode.Append, we can not pass
1224         FileAccess.ReadWrite.  This fixes bug 44959
1226 2003-09-26  Miguel de Icaza  <miguel@ximian.com>
1228         * BufferedStream.cs (Write): Use CanWrite in Write.  Patch from
1229         Francisco Figueiredo Jr.
1231 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1233         * BinaryReader.cs: return the correct number of bytes read when there
1234         are some bytes from peeking.
1236 2003-09-11  Lluis Sanchez Gual  <lluis@ximian.com>
1238         * BufferedStream.cs, FileStream.cs, MemoryStream.cs, Stream.cs:
1239           Added [In,Out] attributes to Read method.
1241 2003-08-05  Martin Baulig  <martin@ximian.com>
1243         * StreamReader.cs (DiscardBufferedData): Do the same like on the
1244         ms runtime: just discard the buffered data, but don't modify the
1245         BaseStream.Position.
1247 2003-08-04  Martin Baulig  <martin@ximian.com>
1249         * StreamReader.cs (DiscardBufferedData): Implemented.
1251 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
1253         * IntPtrStream.cs (Read): Use correct offset here;  Change the
1254         code to use a byte* instead of an IntPtr to reduce the number of
1255         casts used. 
1257         (Read): Use Marshal.Copy instead of the now
1258         deprecated MemCopy.
1260         (IntPtrStream): New stream implementation, it maps to a region in
1261         memory.
1263 2003-07-23  Duncan Mak  <duncan@ximian.com>
1265         * StreamReader.cs (Initialize): This method is not exposed in the
1266         API, mark as internal.
1268 Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1270         * MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>.
1272 2003-07-16  Dick Porter  <dick@ximian.com>
1274         * FileInfo.cs: Update path info when a file is moved.  Patch by
1275         John Luke <jluke@cfl.rr.com>, fixes bug 44253.
1277 2003-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1279         * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
1281 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
1283         * FileStream.cs (Dispose): Flush the buffer even if we don't own the
1284         handle.
1285         * FileStream.cs: Add a new constructor parameter to turn off buffering.
1286         This is used by the Console.OpenStandard...() methods. Also fix
1287         argument checking in InitBuffer(), so a zero buffer size is also 
1288         rejected.
1290 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
1292         * Stream.cs: use async.delegate invoke 
1294 2003-06-18  Nick Drochak <ndrochak@gol.com>
1296         * FileSystemInfo.cs: Refresh cache when changeing file times.
1298 2003-06-11  Zoltan Varga  <vargaz@freemail.hu>
1300         * FileStream.cs: Fix errors in previous checkins:
1301         (Write): Only take the shortcut route if the data is longer than the
1302         buffer length.
1303         (Write): Flush the buffer before writing out the new data
1304         (Write): Flush the buffer after writing out a segment since otherwise
1305         we will go into an infinite loop.
1306         (FlushBuffer): Remove my last change since it was clearly wrong.
1307         (Seek): Run FlushBuffer () after the in-buffer seek optimization.
1308         (Seek): Only use the in-buffer optimization if the buffer is not
1309         empty.
1310         (Length): Call FlushBuffer () since buffer data might change the size
1311         of the stream.
1313 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1315         * FileStream.cs:
1316         - removed unusefull bugfix (DirectoryNotFoundException)
1317         - Flush before seek.
1318         
1319 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1321         * FileStream.cs: Check buffer size before append/read -exceptios
1322         
1323 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1325         * FileStream.cs: Check DirectoryNotFound before FileNotFound.
1326         
1327 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
1329         * FileStream.cs: Does not anymore flush while writing
1330         
1331 2003-06-02  Nick Drochak <ndrochak@gol.com>
1333         * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
1334         for null too.
1336 2003-05-27  Lluis Sanchez Gual <lluis@ximian.com>
1338         * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
1340 2003-05-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1342         * Path.cs: fixed bug #42631.
1344 2003-05-22  Zoltan Varga  <vargaz@freemail.hu>
1346         * File.cs (Move): Allow moving of directories.
1347         Fix 'destination is a directory' test.
1349 2003-05-21  Ben Maurer  <bmaurer@users.sourceforge.net>
1351         * StringWriter.cs: Fixed bug #43431: "StringWriter
1352         .ctor(CultureInfo) does not create a new StringBuilder ()"
1354 2003-05-11  Zoltan Varga  <vargaz@freemail.hu>
1356         * FileStream.cs (FlushBuffer): After a flush, the buffer is
1357         advanced by buf_offset bytes, not buf_length bytes.
1359 2003-05-16  Dick Porter  <dick@ximian.com>
1361         * MonoIO.cs: Implement GetTempPath
1363 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1365         * DirectoryInfo.cs: fixed bug #42991.
1366         * Path.cs:
1367         (CanonicalizePath): store the value of the trimmed input string. Make it
1368         work with paths such as "/home/xxx/.".
1370 2003-05-08  Ben Maurer <bmaurer@users.sourceforge.net>
1371         * Path.cs 
1372         (CanonicalizePath) Fixed bug #42631, which duplicated the
1373         root part of the path under Windows.
1375 2003-05-08  Ville Palo <vi64pa@kolumbus.fi>
1377         * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc, 
1378         LastWriteTimeUtc and CreationTimeUtc
1379         
1380 2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
1381         * Path.cs 
1382         (GetPathRoot) Added support for UNC paths.
1383         (CanonicalizePath) Added optimizations per Miguel's requests.
1385 2003-05-06  Ville Palo <vi64pa@kolumbus.fi>
1387         * BufferedStream.cs: 
1388           - Removed unusefull code.
1389           - Added ObjectDisposedException to Position
1390           - Dont flush if stream is allready closed.
1391           - Flush throws also ObjectDisposedException.
1392         * Directory.cs:
1393           - GetFileSystemEtries: ArgumentNullException if pattern is null
1394         * DirectoryInfo.cs: Fixed little MoveTo () bug.
1395         * FileInfo.cs:
1396           - Exists: If file does not exists when instance is created the
1397           value of the Exists property does not change even if file is created
1398           afterwards.
1399           - Delete: If path is a directory UnauthorizedException is thrown.
1400           - CopyTo: Now we can overwrite file if wanted.
1401         * Path.cs: 
1402           - GetFullPath: Now throws exception when path is "   ".
1403         
1404 2003-05-04  Ben Maurer <bmaurer@users.sourceforge.net>
1405         * Directory.cs (GetLogicalDrives) Marked as MonoTODO
1406         because we need to implement the method on Windows.
1407         * Path.cs 
1408         (CanonicalizePath) Added new function to get
1409         rid of . and .. in path names. Need to figure out what
1410         other functions should call this.
1411         (GetFullPath) Added call to the above function.
1412         
1413 2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1415         * StreamReader.cs:
1416         (.ctor): fixed parameters passed to FileNotFoundException.
1418 2003-04-25  Dietmar Maurer  <dietmar@ximian.com>
1420         * BinaryReader.cs (Read): make sure the buffer is big enough (fix
1421         bug # 40702)
1423 2003-04-24  Pedro Martinez Julia  <yoros@wanadoo.es>
1425         * BufferedStream.cs: Test if it's possible to seek in a Stream
1426         before access to Position. This prevents the exception thrown when
1427         the stream is System.Net.Sockets.NetworkStream.
1429 2003-04-22  Ville Palo <vi64pa@kolumbus.fi>
1431         * Directory.cs: clean up --> performance improvment. Some exceptions
1432         are now checked in File.cs.
1433         * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
1434         
1435 2003-04-21  Ville Palo <vi64pa@kolumbus.fi>
1437         * Directory.cs: lots of fixes. 
1438           - Added GetXXXtimeUtc () (v1.1) methods.
1439           - Added SetXXXtimeUtc () (v1.1) methods.      
1440         
1441 2003-04-20  Igor Nosyryev <nosyryev@attbi.com>
1443         * StringReader.cs (Read): Increment nextChar by charsToRead
1444         instead of count, that will guarantee that the next time the
1445         method is called, it will return 0 on an empty string rather than
1446         throwing an exception
1448 2003-04-19  Ville Palo <vi64pa@kolumbus.fi>
1450         * BufferedStream.cs: Some fixes, mostly throwing exceptions.
1451         * MemoryStream.cs: Changed the order of exception checking
1452         * StringReader.cs: little clean up
1453         
1454 2003-04-14  Ville Palo <vi64pa@kolumbus.fi>
1456         * BinaryWriter.cs: Fixed decimal writing and lots of 
1457         ObjectDisposedExceptions added.
1458         
1459 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
1461         * BinaryReader.cs: Fix to ReadDecimal() method.
1462         
1463 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
1465         * StringReader.cs: Added some ObjectDisposedExceptions.
1466         * StringWriter.cs: Added some ObjectDisposedExceptions.
1467         * BinaryReader.cs: Added some ObjectDisposedExceptions.
1468         
1469 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1471         * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
1472         fill a bug report.
1474 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1476         * FileStream.cs: fixed bug #40182 and made more unit test pass.
1478 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1480         * FileStream.cs: Added new methods Lock () and Unlock ()
1481         
1482 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1484         * StringReader.cs: Throws exceptions if constructor parameter is null.
1485         
1486 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
1488         * StringWriter.cs: Now throws an exception if StringBuilder parameter
1489         is null
1490         
1491 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
1493         * TextWriter.cs: Implemented Synchronized method.
1495         * TextReader.cs: Implemented Synchronized method.
1497 2003-04-04  Miguel de Icaza  <miguel@ximian.com>
1499         * FileStream.cs (Read, ReadByte, Seek): throw
1500         ObjectDisposedException if the handle has been released.
1501         
1502         (Read): Throw exceptions specified in the spec.
1504         (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
1505         instance methods of FileStream to be thread safe, so remove all
1506         the calls to lock on the object
1508 2003-03-31  Nick Drochak <ndrochak@gol.com>
1510         * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
1512 2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>
1514         * FileNotFoundException.cs: fixed serialization bug.
1516 2003-03-18  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
1518         * StringWriter.cs : don't release internalString on Dispose().
1520 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1522         * StreamReader.cs: fixed bug #39280.
1524 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1526         * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
1527         pointing it out.
1529 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1531         * MemoryStream.cs: general fixes and reformatted. Passes all tests in
1532         the new MemoryStreamTest.
1534 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1536         * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
1537         ToArray even after closing the stream.
1539 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1541         * Directory.cs:
1542         (Move): don't use File.Move.
1543         * DirectoryInfo.cs: fixed Name property.
1544         
1545         Fixes bug #37755.
1547 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1549         * DirectoryInfo.cs: changed ToString to match MS behavior.
1550         * Path.cs: further fixes to GetDirectoryName to return null in the
1551         same cases that MS does.
1553         Fixes bug #38387.
1555 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1557         * Path.cs: fixed a couple of bugs reported in #35906.
1559 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1561         * Directory.cs: fixed bugs #38939 and #38940. No need for separate
1562         unix/windows/unc shares code paths.
1564 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1566         * File.cs: fix by Elan Feingold <efeingold@mn.rr.com> for
1567         SetCreationTime, SetLastAccessTime and SetLastWriteTime.
1569 2003-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1571         * MemoryStream.cs:
1572         (ToArray): return only the portion of the buffer that contains
1573         data, not the whole buffer. (note: this makes XmlDocument.Load work
1574         again with documents that have a <?xml without the 'encoding'
1575         attribute, which makes gtk-sharp generator work again).
1577 2003-02-25  Nick Drochak <ndrochak@gol.com>
1579         * File.cs (GetCreationTime): Throw proper execption when path is not
1580         found.
1582 Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <lupus@ximian.com>
1584         * MemoryStream.cs: make it behave sanely when the stream is
1585         incrementally expanded.
1587 2003-02-21  Dick Porter  <dick@ximian.com>
1589         * FileStream.cs: Use locks around buffer manipulations.  Fixes bug
1590         32344
1592 2003-02-18  Dick Porter  <dick@ximian.com>
1594         * FileStream.cs: Make FileMode.Append work, and check for Seeking
1595         back over old data (undocumented ms behaviour, throws an exception
1596         if you try).  Fixes bug 35975.
1598 2003-02-17  Dick Porter  <dick@ximian.com>
1600         * FileStream.cs: Don't close the handle if the stream doesn't own
1601         it.  Patch from Raymond Penners (raymond@dotsphinx.com), bug
1602         35623.
1604 2003-02-14  Zoltan Varga  <vargaz@freemail.hu>
1606         * FileStream.cs (Write): flush after writing the last segment as well.
1608 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1610         * StringReader.cs:
1611         (ReadLine): fixed the case when the string ends with a '\n'.
1613 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1615         * MemoryStream.cs: create the buffer of the specified capacity.
1617 2003-01-31  Patrik Torstensson
1619         * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
1620         the same way as MS does it (performance improvement)
1622 2003-01-29  Zoltan Varga  <vargaz@freemail.hu>
1624         * Directory.cs (GetFileSystemEntries): moved error handling to the
1625         correct instance of GetFileSystemEntries so all callers can enjoy it.
1627 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
1629         * File.cs: add error handling to Get...Time methods.
1631 2003-01-26  Zoltan Varga  <vargaz@freemail.hu>
1633         * Directory.cs: fix GetParent so it actually works.
1635 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1637         * Path.cs: fixlet to ChangeExtension for the case when the path is
1638         empty.
1640 2003-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1642         * BufferedStream.cs: don't try to write a 0 sized array on when
1643         flushing the stream.
1644         
1645         Fixes bug #37045.
1647 2003-01-18  Jonathan Pryor <jonpryor@vt.edu>
1649         * FileStream.cs: Add IsAsync property.  (Documented in "C# In A Nutshell".)
1651 2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1653         * MemoryStream.cs: fixed bug #36319.
1655 2002-12-16  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
1656         
1657         * Directory.cs: Some fixes to SMB shares handling, and not compiling 
1658         with csc, mcs compiles it correctly (mcs bug 35652)
1660 2002-12-14  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
1662         * Directory.cs: Some fixes related to correct some exceptions thrown
1664 2002-12-11  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
1666         * Directory.cs: Some Exceptions added, fixed GetParent(),
1667         CreateDirectory() should work with unix, native windows and
1668         windows samba shares. Converted end-lines from dos-mode to unix-mode
1670 2002-12-08  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
1672         * Directory.cs: CreateDirectory  works now with Absolute paths
1673         too, not only with relative ones.
1675 2002-12-07  Peter Williams  <peterw@ximian.com>
1677         * Directory.cs: Don't use the uninitialized pathsumm here.
1678         Don't try and create "" if we're using an absolute path.
1680 2002-12-07  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
1682         * Directory.cs: Now the creation of a new directory works recursively
1683         it will make parents as needed.
1685 2002-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1687         * BufferedStream.cs: applied patch from <carlosga@telefonica.net> that
1688         fixes Flush ().
1690 Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <lupus@ximian.com>
1692         * StreamWriter.cs: output the encoding preamble at the start of a
1693         stream if needed.
1695 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1697         * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
1699 2002-11-06  Miguel de Icaza  <miguel@ximian.com>
1701         * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
1703 2002-10-31  Dick Porter  <dick@ximian.com>
1705         * FileStream.cs: Fix buffering properly this time.  Also kludge
1706         around broken pipe errors, treating them as EOF instead of
1707         throwing an IO exception.
1709         * MonoIO.cs: Return the error status in a parameter, as the
1710         GetLastError() value has long since been blown away if we try and
1711         look it up in a subsequent internal call invocation.
1713         * FileSystemInfo.cs: 
1714         * FileInfo.cs: 
1715         * File.cs: 
1716         * Directory.cs: MonoIO methods now have an error parameter
1718 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1720         * TextReader.cs: implemented ReadBlock ().
1722 2002-10-30  Miguel de Icaza  <miguel@ximian.com>
1724         * StreamWriter.cs: Ditto for Null stream.
1726         * BinaryReader.cs: Use Unmarked here too.
1728         * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
1729         is what .NET does.
1731 2002-10-23  Dick Porter  <dick@ximian.com>
1733         * FileStream.cs: Implemented CanSeek, and used it around all the
1734         calls to MonoIO.Seek.  Fixed buffering in Read() so that it
1735         doesn't block forever on short reads.
1737         * MonoFileType.cs: New enum for GetFileType
1738         
1739         * MonoIO.cs: Added GetFileType
1741 2002-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1743         * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
1744         \n (this is what MS does).
1746 2002-10-18  Dick Porter  <dick@ximian.com>
1748         * FileStream.cs: SeekOrigin.End still calculates the offset from
1749         the end of the file with positive values extending the length.
1750         Fixes bug 32471.
1752 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1754         * Path.cs: some cleanup. Thanks to Martin Aliger.
1756 2002-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1758         * FileStream.cs: throw an exception if trying to open a directory.
1759         Thanks to Martin Aliger.
1761 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1763         * Path.cs: fixes bug #28046.
1765 2002-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1767         * StreamReader.cs: give more information when wrong parameters passed.
1769 2002-09-21  Miguel de Icaza  <miguel@ximian.com>
1771         * FileStream.cs: Do not call FSync on the file.
1773 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
1775         * TextWriter.cs (Null): The Null field should be an instance of a
1776         TextWriter class that does nothing, so it is an instance of the
1777         NullTextWriter class.
1779 2002-09-16  Nick Drochak  <ndrochak@gol.com>
1781         * MemoryStream.cs (Close): Don't throw an exception if the stream
1782         is already closed.
1784 2002-09-15  Miguel de Icaza  <miguel@ximian.com>
1786         * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
1787         Flush calls fsync().  
1789         The API docs show no explicit mention that Flush() should even do
1790         an fsync, I am thinking that we should drop that from the
1791         runtime. 
1793 2002-09-09  Miguel de Icaza  <miguel@ximian.com>
1795         * StreamWriter.cs: When no encoding is provided, create an
1796         encoding without markers, this is what MS does.
1798 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
1800         * StreamReader.cs: Implement detection of byte marks and skipping
1801         of byte marks at the beginning of the stream.
1803         (ReadToEnd): Use buffered read instead of char-by-char
1804         processing. 
1806         Correct the default arguments for creating the StreamReader.
1808 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1810         * CheckArgument.cs: fixed check for empty string.
1811         * Path.cs: various fixes. It passes all the tests in new PathTest.
1813 2002-08-29  Duncan Mak  <duncan@ximian.com>
1815         * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
1816         the build for gtk#.
1818 2002-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1820         * BinaryReader.cs:
1821         * BinaryWriter.cs:
1822         * MemoryStream.cs:
1823         * StreamReader.cs:
1824         * StreamWriter.cs:
1825         * StringReader.cs:
1826         * StringWriter.cs:
1827         * TextWriter.cs: IDisposable fixes.
1829 2002-08-24  Miguel de Icaza  <miguel@ximian.com>
1831         * StreamReader.cs: Removed TODOs, as the code seems to be
1832         complete. 
1834         * Path.cs (GetTempFileName): Make this routine atomic by not
1835         testing and then creating, but using the create call to ensure
1836         that we own the filename.
1838 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1840         * FileLoadException.cs: implemented ToString.
1842         * StreamWriter.cs: added Null field and implemented Write (char) and
1843         Write (char []).
1845 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1847         * StreamReader.cs: implemented NullStreamReader.
1849 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
1851         * Path.cs (GetDirectoryName): Fix for filenames with size = 1
1853         * File.cs: Removed all references that threw exceptions when the
1854         paths contains a colon, as this is a valid part of an identifier
1855         on Unix.
1857         Everywhere: The String.Empty return from GetDirectoryName means
1858         that there is no directory information about the path.
1860 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1862         * FileNotFoundException.cs: use Message and InnerException from base
1863         class. Changed Message and ToString ().
1865 2002-08-19  Dick Porter  <dick@ximian.com>
1867         * BinaryWriter.cs: The length of a string is counted in bytes, not
1868         chars
1870 2002-08-18  Dick Porter  <dick@ximian.com>
1872         * BinaryReader.cs: Fixed buffering
1874 2002-08-09  Nick Drochak  <ndrochak@gol.com>
1876         * BinaryReader.cs: added virtual to Dispose(bool).
1878 2002-08-03  Jason Diamond  <jason@injektilo.org>
1880         * StringWriter.cs: Return UnicodeEncoding for Encoding property.
1882 2002-08-03  Jason Diamond  <jason@injektilo.org>
1884         * StreamWriter.cs: Use GetByteCount() to get exact length instead
1885         of GetMaxByteCount when converting chars to bytes.
1887 2002-07-31  Duncan Mak  <duncan@ximian.com>
1889         * StreamReader.cs: 
1890         (Dispose): Added and implmented.
1892         * StreamWriter.cs: 
1893         (Dispose): Fixed visibility.
1894         (Initialize): Fixed visibility, made internal.
1896         * BinaryReader.cs:
1897         (Dispose): Fixed visibility.
1899 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1901         * File.cs:
1902         (Create): allow file names without path.
1904 Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1906         * FileStream.cs: patch from erik@bagfors.nu to add
1907         Name property support.
1909 2002-07-20  Dick Porter  <dick@ximian.com>
1911         * MonoIO.cs: Added icall to CreatePipe
1913 2002-07-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1915         * FileInfo.cs: fixes buglet #27940
1917 2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1919         * Path.cs: removed unneeded line from GetExtension.
1921 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1923         * FileStream.cs:
1924         (.ctor): call MonoIO.GetException with the file name.
1926 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
1928         * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
1930 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
1932         * StreamReader.cs: Revert the last Peek change and fix the ReadLine
1933         end of line detection code instead.
1935 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1937         * StreamReader.cs:
1938         (Peek): no need to have seek capabilitites. 
1940 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
1942         * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
1944         * File.cs (Delete): only call Directory.Exists() if DirName != ""
1946 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1948         * Directory.cs: fixed bug #26133 and also test if the directory exist
1949         before performing the search.
1951 2002-06-12  Nick Drochak  <ndrochak@gol.com>
1953         * StringReader.cs (ReadLine): Return null when we get to end of the
1954         string.
1956 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
1958         * StreamWriter.cs: added ability to write null value
1959         
1960 2002-05-19  Lawrence Pit  <loz@cable.a2000.nl>
1962         * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
1963         prevent endless loops.
1965 2002-05-17  Dan Lewis  <dihlewis@yahoo.co.uk>
1967         * FileStream.cs: Enforce lower bound on buffer size.
1969 2002-05-16  Piers Haken <piersh@friskit.com>
1971         * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
1973 2002-05-17  Nick Drochak  <ndrochak@gol.com>
1975         * StreamWriter.cs: Implement buffering.  Also implemented dispose
1976         pattern as recommended by the MS docs.  Must call Close() now
1977         to ensure the buffer is flushed.
1979 2002-05-15  Nick Drochak  <ndrochak@gol.com>
1981         * Path.cs (GetDirectoryName): Return String.Empty if there is no
1982         directory
1984         * StreamReader.cs: Add some parameter checking on file names.
1986         * StreamWriter.cs: Add some parameter checking on file names.
1988 2002-05-14 Nick Drochak  <ndrochak@gol.com>
1990         * File.cs: Add parameter checks to most methods. Not completely done,
1991         but all current unit tests pass.
1993         * Path.cs: Implement GetTempFileName().
1995 2002-05-10  Nick Drochak  <ndrochak@gol.com>
1997         * StreamWriter.cs (Flush): Throw proper exception if internal stream
1998         has already been closed when we try to flush.
2000 2002/05/10  Nick Drochak <ndrochak@gol.com>
2002         * FileNotFoundException.cs (ToString): Don't try to use the inner
2003         exception, because it might be null.  Use the message instead.
2005 2002-05-09  Nick Drochak  <ndrochak@gol.com>
2007         * File.cs (Delete): Do not throw an exception if the file does not
2008         exist.
2010 2002-05-08  Mike Gray     <mikeg@mikegray.org>
2012         * File.cs: According to ECMA spec and MS docs Copy(src, dest)
2013         should not overwrite dest by default.
2015 2002-05-08  Nick Drochak  <ndrochak@gol.com>
2017         * StreamWriter.cs: Add paramter check to constructors and throw
2018         exceptions where appropriate.
2020 Tue May 7 11:47:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2022         * StreamReader.cs: return the number of chars read even if we diddn't
2023         fill the whole buffer (makes Sergey's ilasm work with mono).
2025 2002-05-07  Mike Gray     <mikeg_us@hotmail.com> 
2027         * FileInfo.cs (Create): Implement missing method.
2029 2002-05-07  Mike Gray     <mikeg_us@hotmail.com>
2031         * File.cs: Implemented CreateText method, and fixed dst compares
2032         to compare against "" instead of null twice.
2034 2002-05-05  Nick Drochak  <ndrochak@gol.com>
2036         * StreamReader.cs: Throw exceptions where needed. Changed Null field to
2037         use new internal class since null cannot be passed to constructor 
2038         anymore. Also, fix a coule of small bugs.
2040 2002-05-03  Nick Drochak  <ndrochak@gol.com>
2042         * MemoryStream.cs: Refrain from allocating array until the space is
2043         really needed. This fixes a bug in the Length property when the
2044         constructor without the byte array is used.
2046 2002-05-01  Duncan Mak  <duncan@ximian.com>
2048         * DirectoryNotFoundException.cs (constructor): Added missing
2049         serialization constructor.
2051 2002-04-30  Duncan Mak  <duncan@ximian.com>
2053         * FileLoadException.cs (constructors): Added missing (string,
2054         string) ctor, as well as (string, string, Exception) ctor.
2056         (Message): Added more info to the error message
2058         (ToString): Added. We'll need to add the StackTrace stuff when
2059         that works.
2061         * FileShare.cs: Add a missing field, Inheritable.
2062         
2063         * TextReader.cs: Renamed Synchronised method to Synchronized.
2065         * TextWriter.cs: Renamed Synchronised method to Synchronized.
2066         Renamed protected member coreNewLine to CoreNewLine.
2068 2002-04-30  Sergey Chaban  <serge@wildwestsoftware.com>
2070         * BinaryReader.cs: Allocate buffer before its first use.
2071         Handle end of stream properly. Methods to read native types
2072         (ReadInt* etc.) are little-endian (see Compact Framework docs).
2074         * BinaryWriter.cs: Store data in little-endian format.
2075         Use internal buffer for conversions.
2077 2002-03-31  Dick Porter  <dick@ximian.com>
2079         * Directory.cs: Strip out "." and ".." from returned list
2081         * FileAttributes.cs: Get the right enum values
2083 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
2085         * TextWriter.cs (write): added check for null
2087 2002-03-28  Dan Lewis  <dihlewis@yahoo.co.uk>
2089         * Directory.cs: Throws DirectoryNotFoundException.
2090         * MonoIO.cs: Fixed to work around enum problem.
2092 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
2094         * StreamReader.cs: Implemented ReadLine() and ReadEnd().
2096 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
2098         * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
2099         DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
2100         wrapper and PAL classes.
2102         * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
2104 2002-03-25  Mike Kestner <mkestner@speakeasy.net>
2106         * MemoryStream.cs (Read): Fixed bug in exception throw.
2108 2002-03-24  Mike Kestner <mkestner@speakeasy.net>
2110         * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
2112 2002-03-23  Martin Baulig  <martin@gnome.org>
2114         * StreamReader.cs: Always do buffered reading, use 4k blocks.
2115         (Read (char[], int, int)): Implemented.
2116         (DiscardBufferedData): Implemented.
2118 2002-03-21  Mike Kestner <mkestner@speakeasy.net>
2120         * StreamReader.cs : Fill out, add buffering, and use encoding.
2122 2002-03-19  Martin Baulig  <martin@gnome.org>
2124         * StreamWriter.cs (StreamWriter (string)): The default is to override
2125         the file, not to append to it.
2126         (StreamWriter (string path, bool append)): When appending, seek to the
2127         end of the file, otherwise truncate the file to zero length.
2128         (Dispose (bool)): Close the internalStream.
2129         (Flush): Flush the interalStream.
2130         (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
2132 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
2134         * FileStream.cs: Flush buffer before FileSetLength.
2136 2002-02-28  Miguel de Icaza  <miguel@ximian.com>
2138         * Stream.cs (NullStream): Do not track position, this beast does
2139         nothing in practice.
2141 2002-03-15  Dan Lewis <dihlewis@yahoo.co.uk>
2143         * SearchPattern.cs: New class. Glob matching code for Directory.
2144         * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
2146 2002/03/15 Nick Drochak <ndrochak@gol.com>
2148         * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
2149         This code seemed to be copied from somewhere, and it was close,
2150         but didn't match the docs.  This was the last bit needed to get
2151         NAnt to compile with our class libs.
2153 2002-03-12  Duncan Mak  <duncan@ximian.com>
2155         * EndOfStreamException.cs:
2156         * FileLoadException.cs:
2157         * FileNotFoundException.cs:
2158         * PathTooLongException.cs: Changed the base classes to IOException
2159         instead of SystemException.
2161         * IOException.cs: Added missing constructors.
2162         
2163 2002-03-07  Nick Drochak  <ndrochak@gol.com>
2165         * FileMode.cs: Docs don't say this should be explicitly derived from
2166         int, so just make it a normal Enum.
2168 2002-03-02  Jason Diamond  <jason@injektilo.org>
2170         * StringReader.cs: Fixed off-by-one error in Peek() and Read().
2172 2002-02-12  Nick Drochak  <ndrochak@gol.com>
2174         * PathTooLongException.cs: put it in the correct namespace
2175         * EndOfStreamException.cs: put it in the correct namespace
2177 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <lupus@ximian.com>
2179         * Directory.cs: handle opendir() return NULL and absolute filenames.
2181 2002-01-31  Duncan Mak  <duncan@ximian.com>
2183         * FileLoadException.cs:
2184         * FileNotFoundException: Added missing bits for serialization.
2186 Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <lupus@ximian.com>
2188         * Directory.cs: allow directories in GetFiles() mask.
2190 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
2192         * FileInfo.c (CopyTo, MoveTo): Implement.
2194         * FileStream.cs: Add argument checking to the constructor.
2196         * File.cs: Rewrote most of the file.  Implement Copy, Open, Create,
2197         OpenText, OpenWrite, Move.  Made pending methods flagged as MonoTODO. 
2198         
2199         * Directory.cs (Delete): reimplement without using DirectoryInfo.
2200         (Delete): Implement the recursive version.
2201         (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
2202         (Move): Reimplement.
2203         (getNames): dead code removal.
2205         * Path.cs: define an internal DirectorySeparatorStr that we use in
2206         a few spots.
2208         * Wrapper.cs: Updated to new version.
2209         
2210         * DirectoryInfo (Delete): Implement using the Directory API.
2212         * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
2213         Delete, Create, Parent, Exists, MoveTo): Implement. 
2215         * Directory.cs (GetListing): implement new utility function.
2216         (GetDirectories): Implement.
2217         (GetFileSystemEntries): Implement.
2218         (GetFiles): Implement.
2220         * CheckArgument.cs (Path): Do not allow null by default.
2222 Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <lupus@ximian.com>
2224         * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
2225         assembly in corlib.
2227 2002-01-20 Nick Drochak  <ndrochak@gol.com>
2229         * SeekOrigin.cs: Added Serializable attribute.
2231 2002-01-19  Duncan Mak  <duncan@ximian.com>
2233         * PathTooLongException.cs: 
2234         * EndOfStreamException.cs: Added to CVS.
2236 Thu Jan 10 12:06:46 MST 2002 Matt Kimball <matt@kimball.net>
2238         * BufferedStream.cs: Initial implemenation.  The synchronous
2239         methods for both reading and writing are implemented.  I'll do the
2240         asynchronous methods in a bit.
2241         
2242 Wed Jan  9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
2244         * BinaryWriter.cs: Initial implementation.  And it's all there.
2246         * BinaryReader.cs: The constructor now uses the passed in encoding,
2247         not UTF8 always.
2249 Wed Jan  9 13:54:28 MST 2002 Matt Kimball <matt@kimbal.net>
2251         * BinaryReader.cs: Initial implementation.  I think it's complete.
2253 2002-01-04  Ravi Pratap  <ravi@ximian.com>
2255         * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
2256         attribute decorations.
2258         * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
2259         Path.cs, TextReader.cs, TextWriter.cs : Ditto.
2261         * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs: 
2262         Ditto.
2264 2001-12-11  Dick Porter  <dick@ximian.com>
2266         * FileStream.cs: Use handles rather than casting file descriptors.
2267         Added Handle property.
2269 Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <lupus@ximian.com>
2271         * CheckPermission.cs: disable ModeAccess() code: it's wrong.
2272         * FileStream.cs: only trow an exception if the read failed in ReadByte().
2273         * StreamReader.cs: implement Peek and Read.
2274         * TextWriter.cs: CLSCompliant updates.
2276 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
2278         * FileNotFoundException.cs: Added some constructors
2280         * Path.cs (GetFullPath): Fixed implementation
2282 Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <lupus@ximian.com>
2284         * DirectoryNotFoundException.cs: implemented.
2286 Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
2288         * File.cs: fix signatures of the Open() and OpenRead() functions
2289         (they are static).
2291 Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
2293         * FileLoadException.cs, FileNotFoundException.cs: added.
2295 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
2297         * TextReader.cs: implemented the Read method
2299         * StreamReader.cs: impl. stubs
2301         * StreamWriter.cs: impl.
2303         * TextWriter.cs: implemented Write and WriteLine methods
2305 Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
2307         * FileAccess.cs, FileMode.cs: change values to be compatible with
2308         the ms ones.
2309         
2310 Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
2312         * IOException.cs: Implemented System.IO.Exception.
2314 2001-07-18  Michael Lambert <michaellambert@email.com>
2316         *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
2318 2001-07-19  Marcin Szczepanski <marcins@zipworld.com.au>
2320         * System.IO.MemoryStream.cs: Added.  Had quite a few cases of
2321         "LAMESPEC", but the tests work against the MS implementation so
2322         the major functions are right (ie. Read/Write/Seek).  Some more
2323         tests required for the various constructors and exceptions.
2325 2001-07-16  Marcin Szczepanski <marcins@zipworld.com.au>
2327         * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
2328         New class implemenations.
2330         * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.