1 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
3 * StreamWriter.cs: avoid String.ToCharArray for perf.
5 2004-08-18 Dick Porter <dick@ximian.com>
7 * StreamWriter.cs: Flush the buffer if AutoFlush is set to true.
8 Fixes bug 63063, patch by Laurent Debacker (debackerl@yahoo.com).
10 2004-08-13 Dick Porter <dick@ximian.com>
12 * StreamWriter.cs: Allow FileShare.Read access to the underlying
13 FileStream, to be compatible with MS. Fixes bug 62152.
15 2004-07-06 Dick Porter <dick@ximian.com>
17 * MonoIO.cs: Add ERROR_INVALID_PARAMETER to the exception list.
18 Don't blow away the SetFileTime() error before the caller gets to
19 see it. Part of the bug fix to 60970.
21 2004-07-05 Dick Porter <dick@ximian.com>
27 * FileStream.cs: Give the filename when throwing
28 FileNotFoundException. Fixes bug 61120, based on patch from
29 Carlos Alberto Cesario <carloscesario@gmail.com>.
31 2004-07-05 Dick Porter <dick@ximian.com>
33 * File.cs: File.Move() should check that the destination doesn't
34 already exist. Fixes bug 60915, patch based on one from Carlos
35 Alberto Cesario <carloscesario@gmail.com>.
37 2004-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
39 * Directory.cs: implemented GetLogicalDrives.
41 2004-06-24 Lluis Sanchez Gual <lluis@novell.com>
43 * StreamReader.cs: In DiscardBufferedData(), reset the mayBlock flag.
45 2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
48 .ctor() should block write access when created with FileAccess.Write.
50 2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
52 * FileStream.cs : Check buffer size before creating file.
53 * StreamReader.cs : Check encoding!=null before creating file.
55 MonoIO.cs : Convert DateTime to FileTime after checking
56 file IO sharing violation (it just fixes the type of exception).
58 2004-06-15 Gert Driesen <drieseng@users.sourceforge.net>
60 * MemoryStream.cs: added TODO for serialization
61 * StringWriter.cs: added TODO for serialization
63 2004-06-15 Gert Driesen <drieseng@users.sourceforge.net>
65 * TextWriter.cs: fixed CoreNewLine to return char[]
67 2004-06-14 Dick Porter <dick@ximian.com>
70 * File.cs: Catch PATH_NOT_FOUND errors in Exists() too. Fixes bug
73 2004-06-09 Duncan Mak <duncan@ximian.com>
75 * BufferedStream.cs (SetLength): Add checks and throw the
76 appropriate Exceptions here instead.
78 * FileStream.cs (SetLength): Revert part of my last patch, we're
79 throwing ObjectDisposedException instead of IOException again.
81 2004-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
83 * FileStream.cs: re-enabled ignoring broken pipe errors when reading.
86 2004-06-08 Duncan Mak <duncan@ximian.com>
88 * Directory.cs (IsRootDirectory): New helper method for
89 determining if a path is the root directory. Handles both Unix as
91 (GetParent): Use IsRootDirectory for the check.
93 2004-06-08 Duncan Mak <duncan@ximian.com>
95 * File.cs: Fix line endings, took out ^Ms.
97 * Directory.cs (GetParent): Return null if the specified path is
100 * StreamReader.cs (StreamReader):
101 (Initialize): Add a check that buffer_size must not be less than
104 2004-06-07 Duncan Mak <duncan@ximian.com>
106 * FileStream.cs (SetLength): The other exceptions have precendence
107 over ObjectDisposedException, which is not one of the exceptions
108 listed in the documentation). Also, instead of throwing an
109 ObjectDisposedException, throw an IOException.
111 2004-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
113 * BufferedStream.cs: fixed typo that prevented Read() from working.
114 This went out with beta 2. Closes bug #59534.
116 2004-05-31 Atsushi Enomoto <atsushi@ximian.com>
118 * Directory.cs, File.cs : Fixed Exists() that raised
119 DirectoryNotFoundException. Quick fix for bug #59354.
121 2004-05-30 Sebastien Pouliot <sebastien@ximian.com>
123 * BinaryReader.cs: Added missing disposed check for most methods.
124 Reordered some exceptions to match MS implementation.
125 * BufferedStream.cs: Fixed Seek logic (check for CanSeek and dispose).
126 SetLength must also reset Position and check for dispose.
127 * FileStream.cs: Added missing check for invalid SeekOrigin. Added
130 2004-05-27 Dick Porter <dick@ximian.com>
132 * FileSystemInfo.cs: Take out the error checking in Refresh(), it
135 2004-05-27 Dick Porter <dick@ximian.com>
137 * MonoIO.cs: Define icalls for Lock() and Unlock()
139 * FileStream.cs: Implement Lock() and Unlock(). Also improve IO
144 * Directory.cs: Improve IO error reporting
146 2004-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
148 * FileStream.cs: delay seeking to the end when FileMode.Append is
149 specified until after buffer initialization. Fixes bug #59151.
151 2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
153 * BufferedStream.cs: Added globalization and fixed exceptions and
154 possible integer overflow.
155 * FileStream.cs: Fixed possible integer overflow.
156 * MemoryStream.cs: Fixed possible integer overflow.
157 * StringReader.cs: Fixed possible integer overflow.
158 * TextWriter.cs: Fixed possible integer overflow.
160 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
163 DirectoryInfo.cs : ToString() should return constructor arg as is.
164 This fixes bug #58804.
166 2004-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
168 * Directory.cs: ERROR_FILE_NOT_FOUND in FindFirstFile means there are
169 no files, but the directory was found. Fixes bug #58875.
171 2004-05-24 Duncan Mak <duncan@ximian.com>
173 * StreamWriter.cs (Close): Remember to set the 'closed' flag.
176 * FileInfo.cs: Reformat the whole file to use DOS line endings.
177 (MoveTo): Return if the destination of Move is the
178 same as the file's current location.
180 2004-05-24 Sebastien Pouliot <sebastien@ximian.com>
182 * MemoryStream.cs: Fixed exception reporting to match MS Fx. Fixed the
183 condition to allow zeroization of existing data when we shrink the
185 * StreamReader.cs: Add checks for null encoding. Fixed possible integer
186 overflow and ArgumentNullException in Read.
187 * StreamWriter.cs: Add dispose check to Write(char) and Write(char[]),
188 AutoFlush. Fixed possible integer overflow in Write(char[],int,int).
189 * StringWriter.cs: Fixed possible integer overflow in Write. Changed
192 2004-05-22 Duncan Mak <duncan@ximian.com>
194 * Directory.cs: Reformat the whole file to use Unix line endings
196 (GetFileSystemEntries): If pattern is String.Empty, always
197 return an empty string array. Throw the ArgumentException if path
198 is an empty string (determined using the new helper method)
199 (IsEmptyString): Returns true on an empty string or a string with
200 only whitespace characters.
202 * Path.cs (GetPathRoot): Throw an ArgumentException if the path
203 argument is String.Empty.
205 2004-05-20 Jackson Harper <jackson@ximian.com>
207 * DirectoryInfo.cs: Create subdirectories correctly if more then
210 2004-05-16 Atsushi Enomoto <atsushi@ximian.com>
212 * DirectoryInfo.cs: Fixed ToString() as well as FileInfo.
214 2004-05-16 Atsushi Enomoto <atsushi@ximian.com>
216 * FileInfo.cs: ToString() returns not full path but just the file name.
218 2004-05-14 Marek Safar <marek.safar@seznam.cz>
220 * TextWriter.cs: Removed useless [CLSCompliant (false)]
222 2004-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
224 * Directory.cs: use the real wildcard for file names as it is supported
225 now in io-layer. SearhPattern is not needed now.
227 2004-04-30 Ben Maurer <bmaurer@users.sourceforge.net>
229 * BinaryWriter.cs, Stream.cs: ensure we have beforefieldinit.
231 2004-04-29 Ben Maurer <bmaurer@users.sourceforge.net>
233 * Path.cs: readonlyificate.
235 2004-04-29 Ben Maurer <bmaurer@users.sourceforge.net>
237 * FileStream.cs: constify.
239 2004-04-27 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
241 * SearchPattern.cs: Call invariant String.ToLower
243 2004-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
245 * FileStreamAsyncResult.cs: invoke the callback if set as completed
246 before the asynchronous stuff jumps in.
248 2004-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
250 * FileStream.cs: only pass the async flag set to true when opening the
251 file and AIO is supported by the underlying system. Fixes bug #56883.
253 2004-04-12 Gert Driesen (drieseng@users.sourceforge.net)
255 * FileSystemInfo.cs: Implemented ISerializable, corrected COM
256 visibility of UTC properties
258 2004-04-01 Lluis Sanchez Gual <lluis@ximian.com>
260 * BufferedStream.cs: On Position change, do not reset the buffer if the
261 new position is in the limits of the buffer. This fixes #49403.
263 2003-04-03 Atsushi Enomoto <atsushi@ximian.com>
265 * Path.cs : ChangeExtension() does not remove dot(.) when extension is
268 2004-04-01 Lluis Sanchez Gual <lluis@ximian.com>
270 * FileSystemInfo.cs: Added InternalRefresh, a virtual method that derived
271 classes can override to perform class specific refreshing.
272 * FileInfo.cs: Refresh existence flag when Refresh is called.
273 * TextWriter.cs: Applied patch by Benjamin Jemlich for bug #52512.
274 The method Write(char) should do nothing by default.
276 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
278 * BinaryReader.cs: don't modify the underlying stream in Peek(). Fixes
279 bug #51741. Patch by Nick Vaughan.
281 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
283 * FileStream.cs: ReadByte(): when buffering is disabled, read the byte
284 with a direct call to ReadData. In InitBuffer(), if buffering is
285 disabled, create a buffer of one byte, to be used in ReadByte. This
288 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
290 * Path.cs: In GetDirectoryName, fixed check for volumeSeparator. This
293 2004-03-24 Lluis Sanchez Gual <lluis@ximian.com>
295 * File.cs: In Move, throw IOException instead of ArgumentException if
296 destination is a directory.
297 * MonoIO.cs: In ExistsDirectory, return ERROR_PATH_NOT_FOUND instead of
298 ERROR_FILE_NOT_FOUND, since we are looking for a directory, not a file.
300 2004-03-15 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
302 * StreamWriter.cs: Removed unneeded function
304 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
306 * FileStream.cs: added support for asynchronous I/O without using the
307 OS native libraries if available.
309 * FileStreamAsyncResult.cs: IAsyncResult for asynch. I/O.
311 * MonoIO.cs: added BeginRead/Write, GetSupportsAsync. Open has now a
312 new parameter to tell ifthe file will be used for asynch operations.
314 * Stream.cs: BeginRead/Write do not use delegates. They just are
315 actually synchronous.
317 * StreamAsyncResult.cs: IAsyncResult for Stream.
319 2004-03-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
321 * Directory.cs: check if the error returned in Exists is different
322 from 'path not found' and throw the appropiate exception in that case.
325 2004-03-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
327 * MonoIO.cs: added case for ERROR_FILENAME_EXCED_RANGE.
329 2004-02-25 Jackson Harper <jackson@ximian.com>
331 * File.cs: Report the filename when deleting a file fails. Patch
332 by Gert Driesen. Fixes bug #54855.
334 2004-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
336 * FileStream.cs: remove dangling ^Ms.
338 2004-02-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
340 * FileStream.cs: (.ctor) Path.DirectoryName can be empty and make
341 Path.GetFullPath crash. Fixed it.
343 * MonoIO.cs: fixed typo.
345 2004-02-13 Jackson Harper <jackson@ximian.com>
347 * FileStream.cs: Throw some more exceptions for invalid
348 params. Fixes some unit test failures.
349 * BufferedStream.cs: If the stream is closed (can't read from it
350 or write to it) throw an ObjectDisposedException.
352 Tue Jan 20 23:10:22 CET 2004 Paolo Molaro <lupus@ximian.com>
354 * StreamWriter.cs, TextWriter.cs: comply with the documented
355 behaviour and use a decode buffer to improve performance.
357 2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
359 * Path.cs: now Path.GetFullPath ("/") returns "/" instead of "".
361 2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
363 * Path.cs: add the trailing directory separator only for volumes.
366 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
368 * IntPtrStream.cs: Fix build bustage.
370 * IntPtrStream.cs: Add a 'Closed' event. Also throw exceptions after
371 the stream is closed.
373 2004-01-18 Ben Maurer <bmaurer@users.sourceforge.net>
375 * FileStream.cs: Locking from bug #32344 removed. This is not
376 necessary because the correct fix was actually in the console.
377 This fixes bug #53026. Miguel de Icaza reviewed/approved this
380 2004-01-14 Zoltan Varga <vargaz@freemail.hu>
382 * FileStream.cs (.ctor): Avoid allocating a large buffer when reading
385 2004-01-10 Atsushi Enomoto <atsushi@ximian.com>
387 * Path.cs : GetDirectoryName ("c:\readme.txt") should return "c:\"
388 instead of "c:" . This fixed bug #52735.
390 2004-01-04 Nick Drochak <ndrochak@gol.com>
392 * Path.cs: Remove defined but unused variable, and also got rid of
393 some unreachable code. Eliminates some build warnings.
395 2003-12-28 Ben Maurer <bmaurer@users.sourceforge.net>
397 * BinaryWriter.cs: use one encoding buffer for writing
398 strings rather than allocting one/string. HUGE perf
399 boost when writing many strings.
401 2003-12-25 Atsushi Enomoto <atsushi@ximian.com>
403 * Path.cs : Fixed GetFullPath() (and CanonicalizePath()),
404 HasExtension(), GetPathRoot() and IsPathRooted() to fit with tests.
406 2003-12-22 Bernie Solomon <bernard@ugsolutions.com>
408 * FileStream.cs: (.ctor) do not set handle
409 in object until after it is validated via
410 GetFileType so finalizer doesn't see bad handles and
411 initialize this.handle to InvalidHandle
413 2003-12-19 Bernie Solomon <bernard@ugsolutions.com>
415 * MonoIO.cs: SetFileTime() Failed Open returns InvalidHandle
418 2003-12-17 Atsushi Enomoto <atsushi@ximian.com>
420 * Directory.cs : SetCurrentDirectory() should raise errors for
421 some kind of arguments.
423 2003-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
425 * Path.cs: GetTempPath () ends with DirectorySeparatorChar. Fixes bug
428 2003-12-06 Ravindra <rkumar@novell.com>
429 *MonoIO.cs: Added a new exception case. It is thrown
430 when a directory creation is attempted with a name that
431 is already used by an existing file.
433 2003-11-28 Dick Porter <dick@ximian.com>
435 * Path.cs: Use the char form of LastIndexOf, so that the
436 comparison is done with the Invariant culture.
438 2003-11-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
440 * Directory.cs: provide the path when getting the IOException.
442 2003-11-18 John Luke <jluke@cfl.rr.com>
445 (PathLength): fix recursion found by JonK
447 2003-11-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
450 (GetCurrentDirectory):
451 (SetCurrentDirectory): moved here from Environment. Handle error cases.
453 * MonoIO.cs: add path to the default error message.
455 2003-11-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
457 * StringReader.cs: fixed ReadLine for some cases where there are mixed
458 '\r' and '\n'. Closes bug #51020.
460 2003-11-14 Ben Maurer <bmaurer@users.sourceforge.net>
462 * MemoryStream.cs (.ctor): We need to check if buffer is null
463 before we get the Length of it.
465 2003-11-14 Miguel de Icaza <miguel@ximian.com>
467 * StreamReader.cs, TextReader, StreamReader (Read): Add [Out]
469 2003-11-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
471 * Directory.cs: allow directory names without wildcards in the pattern.
474 * SearchPattern.cs: made InvalidChars and WildcardChars internal.
476 2003-11-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
478 * FileStream.cs: use the argument name when throwing exception.
482 * TextReader.cs: added [In] attribute for the array in Read.
484 2003-11-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
486 * DirectoryInfo.cs: fixed ToString. Closes bug #50842.
488 2003-11-12 Miguel de Icaza <miguel@ximian.com>
490 * Directory.cs: Adjust for missing PlatformID.Unix.
492 2003-10-28 Miguel de Icaza <miguel@ximian.com>
494 * StreamReader.cs: Add checks for disposed stream from bug report
495 #48696 (Patrik Reali)
497 * TextReader.cs (Read): Return the total number of bytes read,
498 patch from Patrik Realli.
500 2003-10-20 Miguel de Icaza <miguel@ximian.com>
502 * FileStream.cs public FileStream (string name, FileMode mode)
503 constructor: If we pass FileMode.Append, we can not pass
504 FileAccess.ReadWrite. This fixes bug 44959
506 2003-09-26 Miguel de Icaza <miguel@ximian.com>
508 * BufferedStream.cs (Write): Use CanWrite in Write. Patch from
509 Francisco Figueiredo Jr.
511 2003-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
513 * BinaryReader.cs: return the correct number of bytes read when there
514 are some bytes from peeking.
516 2003-09-11 Lluis Sanchez Gual <lluis@ximian.com>
518 * BufferedStream.cs, FileStream.cs, MemoryStream.cs, Stream.cs:
519 Added [In,Out] attributes to Read method.
521 2003-08-05 Martin Baulig <martin@ximian.com>
523 * StreamReader.cs (DiscardBufferedData): Do the same like on the
524 ms runtime: just discard the buffered data, but don't modify the
527 2003-08-04 Martin Baulig <martin@ximian.com>
529 * StreamReader.cs (DiscardBufferedData): Implemented.
531 2003-07-29 Miguel de Icaza <miguel@ximian.com>
533 * IntPtrStream.cs (Read): Use correct offset here; Change the
534 code to use a byte* instead of an IntPtr to reduce the number of
537 (Read): Use Marshal.Copy instead of the now
540 (IntPtrStream): New stream implementation, it maps to a region in
543 2003-07-23 Duncan Mak <duncan@ximian.com>
545 * StreamReader.cs (Initialize): This method is not exposed in the
546 API, mark as internal.
548 Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
550 * MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>.
552 2003-07-16 Dick Porter <dick@ximian.com>
554 * FileInfo.cs: Update path info when a file is moved. Patch by
555 John Luke <jluke@cfl.rr.com>, fixes bug 44253.
557 2003-07-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
559 * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
561 2003-06-30 Zoltan Varga <vargaz@freemail.hu>
563 * FileStream.cs (Dispose): Flush the buffer even if we don't own the
565 * FileStream.cs: Add a new constructor parameter to turn off buffering.
566 This is used by the Console.OpenStandard...() methods. Also fix
567 argument checking in InitBuffer(), so a zero buffer size is also
570 2003-06-27 Dietmar Maurer <dietmar@ximian.com>
572 * Stream.cs: use async.delegate invoke
574 2003-06-18 Nick Drochak <ndrochak@gol.com>
576 * FileSystemInfo.cs: Refresh cache when changeing file times.
578 2003-06-11 Zoltan Varga <vargaz@freemail.hu>
580 * FileStream.cs: Fix errors in previous checkins:
581 (Write): Only take the shortcut route if the data is longer than the
583 (Write): Flush the buffer before writing out the new data
584 (Write): Flush the buffer after writing out a segment since otherwise
585 we will go into an infinite loop.
586 (FlushBuffer): Remove my last change since it was clearly wrong.
587 (Seek): Run FlushBuffer () after the in-buffer seek optimization.
588 (Seek): Only use the in-buffer optimization if the buffer is not
590 (Length): Call FlushBuffer () since buffer data might change the size
593 2003-06-09 Ville Palo <vi64pa@kolumbus.fi>
596 - removed unusefull bugfix (DirectoryNotFoundException)
599 2003-06-09 Ville Palo <vi64pa@kolumbus.fi>
601 * FileStream.cs: Check buffer size before append/read -exceptios
603 2003-06-09 Ville Palo <vi64pa@kolumbus.fi>
605 * FileStream.cs: Check DirectoryNotFound before FileNotFound.
607 2003-06-09 Ville Palo <vi64pa@kolumbus.fi>
609 * FileStream.cs: Does not anymore flush while writing
611 2003-06-02 Nick Drochak <ndrochak@gol.com>
613 * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
616 2003-05-27 Lluis Sanchez Gual <lluis@ximian.com>
618 * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
620 2003-05-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
622 * Path.cs: fixed bug #42631.
624 2003-05-22 Zoltan Varga <vargaz@freemail.hu>
626 * File.cs (Move): Allow moving of directories.
627 Fix 'destination is a directory' test.
629 2003-05-21 Ben Maurer <bmaurer@users.sourceforge.net>
631 * StringWriter.cs: Fixed bug #43431: "StringWriter
632 .ctor(CultureInfo) does not create a new StringBuilder ()"
634 2003-05-11 Zoltan Varga <vargaz@freemail.hu>
636 * FileStream.cs (FlushBuffer): After a flush, the buffer is
637 advanced by buf_offset bytes, not buf_length bytes.
639 2003-05-16 Dick Porter <dick@ximian.com>
641 * MonoIO.cs: Implement GetTempPath
643 2003-05-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
645 * DirectoryInfo.cs: fixed bug #42991.
647 (CanonicalizePath): store the value of the trimmed input string. Make it
648 work with paths such as "/home/xxx/.".
650 2003-05-08 Ben Maurer <bmaurer@users.sourceforge.net>
652 (CanonicalizePath) Fixed bug #42631, which duplicated the
653 root part of the path under Windows.
655 2003-05-08 Ville Palo <vi64pa@kolumbus.fi>
657 * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc,
658 LastWriteTimeUtc and CreationTimeUtc
660 2003-05-07 Ben Maurer <bmaurer@users.sourceforge.net>
662 (GetPathRoot) Added support for UNC paths.
663 (CanonicalizePath) Added optimizations per Miguel's requests.
665 2003-05-06 Ville Palo <vi64pa@kolumbus.fi>
668 - Removed unusefull code.
669 - Added ObjectDisposedException to Position
670 - Dont flush if stream is allready closed.
671 - Flush throws also ObjectDisposedException.
673 - GetFileSystemEtries: ArgumentNullException if pattern is null
674 * DirectoryInfo.cs: Fixed little MoveTo () bug.
676 - Exists: If file does not exists when instance is created the
677 value of the Exists property does not change even if file is created
679 - Delete: If path is a directory UnauthorizedException is thrown.
680 - CopyTo: Now we can overwrite file if wanted.
682 - GetFullPath: Now throws exception when path is " ".
684 2003-05-04 Ben Maurer <bmaurer@users.sourceforge.net>
685 * Directory.cs (GetLogicalDrives) Marked as MonoTODO
686 because we need to implement the method on Windows.
688 (CanonicalizePath) Added new function to get
689 rid of . and .. in path names. Need to figure out what
690 other functions should call this.
691 (GetFullPath) Added call to the above function.
693 2003-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
696 (.ctor): fixed parameters passed to FileNotFoundException.
698 2003-04-25 Dietmar Maurer <dietmar@ximian.com>
700 * BinaryReader.cs (Read): make sure the buffer is big enough (fix
703 2003-04-24 Pedro Martinez Julia <yoros@wanadoo.es>
705 * BufferedStream.cs: Test if it's possible to seek in a Stream
706 before access to Position. This prevents the exception thrown when
707 the stream is System.Net.Sockets.NetworkStream.
709 2003-04-22 Ville Palo <vi64pa@kolumbus.fi>
711 * Directory.cs: clean up --> performance improvment. Some exceptions
712 are now checked in File.cs.
713 * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
715 2003-04-21 Ville Palo <vi64pa@kolumbus.fi>
717 * Directory.cs: lots of fixes.
718 - Added GetXXXtimeUtc () (v1.1) methods.
719 - Added SetXXXtimeUtc () (v1.1) methods.
721 2003-04-20 Igor Nosyryev <nosyryev@attbi.com>
723 * StringReader.cs (Read): Increment nextChar by charsToRead
724 instead of count, that will guarantee that the next time the
725 method is called, it will return 0 on an empty string rather than
726 throwing an exception
728 2003-04-19 Ville Palo <vi64pa@kolumbus.fi>
730 * BufferedStream.cs: Some fixes, mostly throwing exceptions.
731 * MemoryStream.cs: Changed the order of exception checking
732 * StringReader.cs: little clean up
734 2003-04-14 Ville Palo <vi64pa@kolumbus.fi>
736 * BinaryWriter.cs: Fixed decimal writing and lots of
737 ObjectDisposedExceptions added.
739 2003-04-13 Ville Palo <vi64pa@kolumbus.fi>
741 * BinaryReader.cs: Fix to ReadDecimal() method.
743 2003-04-13 Ville Palo <vi64pa@kolumbus.fi>
745 * StringReader.cs: Added some ObjectDisposedExceptions.
746 * StringWriter.cs: Added some ObjectDisposedExceptions.
747 * BinaryReader.cs: Added some ObjectDisposedExceptions.
749 2003-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
751 * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
754 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
756 * FileStream.cs: fixed bug #40182 and made more unit test pass.
758 2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
760 * FileStream.cs: Added new methods Lock () and Unlock ()
762 2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
764 * StringReader.cs: Throws exceptions if constructor parameter is null.
766 2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
768 * StringWriter.cs: Now throws an exception if StringBuilder parameter
771 2003-04-05 Miguel de Icaza <miguel@ximian.com>
773 * TextWriter.cs: Implemented Synchronized method.
775 * TextReader.cs: Implemented Synchronized method.
777 2003-04-04 Miguel de Icaza <miguel@ximian.com>
779 * FileStream.cs (Read, ReadByte, Seek): throw
780 ObjectDisposedException if the handle has been released.
782 (Read): Throw exceptions specified in the spec.
784 (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
785 instance methods of FileStream to be thread safe, so remove all
786 the calls to lock on the object
788 2003-03-31 Nick Drochak <ndrochak@gol.com>
790 * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
792 2003-03-20 Lluis Sanchez Gual <lluis@ideary.com>
794 * FileNotFoundException.cs: fixed serialization bug.
796 2003-03-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
798 * StringWriter.cs : don't release internalString on Dispose().
800 2003-03-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
802 * StreamReader.cs: fixed bug #39280.
804 2003-03-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
806 * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
809 2003-03-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
811 * MemoryStream.cs: general fixes and reformatted. Passes all tests in
812 the new MemoryStreamTest.
814 2003-03-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
816 * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
817 ToArray even after closing the stream.
819 2003-03-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
822 (Move): don't use File.Move.
823 * DirectoryInfo.cs: fixed Name property.
827 2003-03-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
829 * DirectoryInfo.cs: changed ToString to match MS behavior.
830 * Path.cs: further fixes to GetDirectoryName to return null in the
831 same cases that MS does.
835 2003-03-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
837 * Path.cs: fixed a couple of bugs reported in #35906.
839 2003-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
841 * Directory.cs: fixed bugs #38939 and #38940. No need for separate
842 unix/windows/unc shares code paths.
844 2003-02-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
846 * File.cs: fix by Elan Feingold <efeingold@mn.rr.com> for
847 SetCreationTime, SetLastAccessTime and SetLastWriteTime.
849 2003-02-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
852 (ToArray): return only the portion of the buffer that contains
853 data, not the whole buffer. (note: this makes XmlDocument.Load work
854 again with documents that have a <?xml without the 'encoding'
855 attribute, which makes gtk-sharp generator work again).
857 2003-02-25 Nick Drochak <ndrochak@gol.com>
859 * File.cs (GetCreationTime): Throw proper execption when path is not
862 Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <lupus@ximian.com>
864 * MemoryStream.cs: make it behave sanely when the stream is
865 incrementally expanded.
867 2003-02-21 Dick Porter <dick@ximian.com>
869 * FileStream.cs: Use locks around buffer manipulations. Fixes bug
872 2003-02-18 Dick Porter <dick@ximian.com>
874 * FileStream.cs: Make FileMode.Append work, and check for Seeking
875 back over old data (undocumented ms behaviour, throws an exception
876 if you try). Fixes bug 35975.
878 2003-02-17 Dick Porter <dick@ximian.com>
880 * FileStream.cs: Don't close the handle if the stream doesn't own
881 it. Patch from Raymond Penners (raymond@dotsphinx.com), bug
884 2003-02-14 Zoltan Varga <vargaz@freemail.hu>
886 * FileStream.cs (Write): flush after writing the last segment as well.
888 2003-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
891 (ReadLine): fixed the case when the string ends with a '\n'.
893 2003-02-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
895 * MemoryStream.cs: create the buffer of the specified capacity.
897 2003-01-31 Patrik Torstensson
899 * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
900 the same way as MS does it (performance improvement)
902 2003-01-29 Zoltan Varga <vargaz@freemail.hu>
904 * Directory.cs (GetFileSystemEntries): moved error handling to the
905 correct instance of GetFileSystemEntries so all callers can enjoy it.
907 2003-01-28 Zoltan Varga <vargaz@freemail.hu>
909 * File.cs: add error handling to Get...Time methods.
911 2003-01-26 Zoltan Varga <vargaz@freemail.hu>
913 * Directory.cs: fix GetParent so it actually works.
915 2003-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
917 * Path.cs: fixlet to ChangeExtension for the case when the path is
920 2003-01-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
922 * BufferedStream.cs: don't try to write a 0 sized array on when
927 2003-01-18 Jonathan Pryor <jonpryor@vt.edu>
929 * FileStream.cs: Add IsAsync property. (Documented in "C# In A Nutshell".)
931 2003-01-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
933 * MemoryStream.cs: fixed bug #36319.
935 2002-12-16 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
937 * Directory.cs: Some fixes to SMB shares handling, and not compiling
938 with csc, mcs compiles it correctly (mcs bug 35652)
940 2002-12-14 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
942 * Directory.cs: Some fixes related to correct some exceptions thrown
944 2002-12-11 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
946 * Directory.cs: Some Exceptions added, fixed GetParent(),
947 CreateDirectory() should work with unix, native windows and
948 windows samba shares. Converted end-lines from dos-mode to unix-mode
950 2002-12-08 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
952 * Directory.cs: CreateDirectory works now with Absolute paths
953 too, not only with relative ones.
955 2002-12-07 Peter Williams <peterw@ximian.com>
957 * Directory.cs: Don't use the uninitialized pathsumm here.
958 Don't try and create "" if we're using an absolute path.
960 2002-12-07 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
962 * Directory.cs: Now the creation of a new directory works recursively
963 it will make parents as needed.
965 2002-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
967 * BufferedStream.cs: applied patch from <carlosga@telefonica.net> that
970 Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <lupus@ximian.com>
972 * StreamWriter.cs: output the encoding preamble at the start of a
975 2002-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
977 * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
979 2002-11-06 Miguel de Icaza <miguel@ximian.com>
981 * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
983 2002-10-31 Dick Porter <dick@ximian.com>
985 * FileStream.cs: Fix buffering properly this time. Also kludge
986 around broken pipe errors, treating them as EOF instead of
987 throwing an IO exception.
989 * MonoIO.cs: Return the error status in a parameter, as the
990 GetLastError() value has long since been blown away if we try and
991 look it up in a subsequent internal call invocation.
996 * Directory.cs: MonoIO methods now have an error parameter
998 2002-10-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1000 * TextReader.cs: implemented ReadBlock ().
1002 2002-10-30 Miguel de Icaza <miguel@ximian.com>
1004 * StreamWriter.cs: Ditto for Null stream.
1006 * BinaryReader.cs: Use Unmarked here too.
1008 * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
1011 2002-10-23 Dick Porter <dick@ximian.com>
1013 * FileStream.cs: Implemented CanSeek, and used it around all the
1014 calls to MonoIO.Seek. Fixed buffering in Read() so that it
1015 doesn't block forever on short reads.
1017 * MonoFileType.cs: New enum for GetFileType
1019 * MonoIO.cs: Added GetFileType
1021 2002-10-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1023 * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
1024 \n (this is what MS does).
1026 2002-10-18 Dick Porter <dick@ximian.com>
1028 * FileStream.cs: SeekOrigin.End still calculates the offset from
1029 the end of the file with positive values extending the length.
1032 2002-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1034 * Path.cs: some cleanup. Thanks to Martin Aliger.
1036 2002-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1038 * FileStream.cs: throw an exception if trying to open a directory.
1039 Thanks to Martin Aliger.
1041 2002-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1043 * Path.cs: fixes bug #28046.
1045 2002-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1047 * StreamReader.cs: give more information when wrong parameters passed.
1049 2002-09-21 Miguel de Icaza <miguel@ximian.com>
1051 * FileStream.cs: Do not call FSync on the file.
1053 2002-09-16 Miguel de Icaza <miguel@ximian.com>
1055 * TextWriter.cs (Null): The Null field should be an instance of a
1056 TextWriter class that does nothing, so it is an instance of the
1057 NullTextWriter class.
1059 2002-09-16 Nick Drochak <ndrochak@gol.com>
1061 * MemoryStream.cs (Close): Don't throw an exception if the stream
1064 2002-09-15 Miguel de Icaza <miguel@ximian.com>
1066 * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
1067 Flush calls fsync().
1069 The API docs show no explicit mention that Flush() should even do
1070 an fsync, I am thinking that we should drop that from the
1073 2002-09-09 Miguel de Icaza <miguel@ximian.com>
1075 * StreamWriter.cs: When no encoding is provided, create an
1076 encoding without markers, this is what MS does.
1078 2002-09-06 Miguel de Icaza <miguel@ximian.com>
1080 * StreamReader.cs: Implement detection of byte marks and skipping
1081 of byte marks at the beginning of the stream.
1083 (ReadToEnd): Use buffered read instead of char-by-char
1086 Correct the default arguments for creating the StreamReader.
1088 2002-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1090 * CheckArgument.cs: fixed check for empty string.
1091 * Path.cs: various fixes. It passes all the tests in new PathTest.
1093 2002-08-29 Duncan Mak <duncan@ximian.com>
1095 * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
1098 2002-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1107 * TextWriter.cs: IDisposable fixes.
1109 2002-08-24 Miguel de Icaza <miguel@ximian.com>
1111 * StreamReader.cs: Removed TODOs, as the code seems to be
1114 * Path.cs (GetTempFileName): Make this routine atomic by not
1115 testing and then creating, but using the create call to ensure
1116 that we own the filename.
1118 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1120 * FileLoadException.cs: implemented ToString.
1122 * StreamWriter.cs: added Null field and implemented Write (char) and
1125 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1127 * StreamReader.cs: implemented NullStreamReader.
1129 2002-08-21 Miguel de Icaza <miguel@ximian.com>
1131 * Path.cs (GetDirectoryName): Fix for filenames with size = 1
1133 * File.cs: Removed all references that threw exceptions when the
1134 paths contains a colon, as this is a valid part of an identifier
1137 Everywhere: The String.Empty return from GetDirectoryName means
1138 that there is no directory information about the path.
1140 2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1142 * FileNotFoundException.cs: use Message and InnerException from base
1143 class. Changed Message and ToString ().
1145 2002-08-19 Dick Porter <dick@ximian.com>
1147 * BinaryWriter.cs: The length of a string is counted in bytes, not
1150 2002-08-18 Dick Porter <dick@ximian.com>
1152 * BinaryReader.cs: Fixed buffering
1154 2002-08-09 Nick Drochak <ndrochak@gol.com>
1156 * BinaryReader.cs: added virtual to Dispose(bool).
1158 2002-08-03 Jason Diamond <jason@injektilo.org>
1160 * StringWriter.cs: Return UnicodeEncoding for Encoding property.
1162 2002-08-03 Jason Diamond <jason@injektilo.org>
1164 * StreamWriter.cs: Use GetByteCount() to get exact length instead
1165 of GetMaxByteCount when converting chars to bytes.
1167 2002-07-31 Duncan Mak <duncan@ximian.com>
1170 (Dispose): Added and implmented.
1173 (Dispose): Fixed visibility.
1174 (Initialize): Fixed visibility, made internal.
1177 (Dispose): Fixed visibility.
1179 2002-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1182 (Create): allow file names without path.
1184 Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1186 * FileStream.cs: patch from erik@bagfors.nu to add
1187 Name property support.
1189 2002-07-20 Dick Porter <dick@ximian.com>
1191 * MonoIO.cs: Added icall to CreatePipe
1193 2002-07-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1195 * FileInfo.cs: fixes buglet #27940
1197 2002-07-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1199 * Path.cs: removed unneeded line from GetExtension.
1201 2002-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1204 (.ctor): call MonoIO.GetException with the file name.
1206 2002-07-02 Mike Kestner <mkestner@speakeasy.net>
1208 * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
1210 2002-07-02 Mike Kestner <mkestner@speakeasy.net>
1212 * StreamReader.cs: Revert the last Peek change and fix the ReadLine
1213 end of line detection code instead.
1215 2002-07-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1218 (Peek): no need to have seek capabilitites.
1220 2002-06-17 Dietmar Maurer <dietmar@ximian.com>
1222 * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
1224 * File.cs (Delete): only call Directory.Exists() if DirName != ""
1226 2002-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1228 * Directory.cs: fixed bug #26133 and also test if the directory exist
1229 before performing the search.
1231 2002-06-12 Nick Drochak <ndrochak@gol.com>
1233 * StringReader.cs (ReadLine): Return null when we get to end of the
1236 2002-05-22 Lawrence Pit <loz@cable.a2000.nl>
1238 * StreamWriter.cs: added ability to write null value
1240 2002-05-19 Lawrence Pit <loz@cable.a2000.nl>
1242 * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
1243 prevent endless loops.
1245 2002-05-17 Dan Lewis <dihlewis@yahoo.co.uk>
1247 * FileStream.cs: Enforce lower bound on buffer size.
1249 2002-05-16 Piers Haken <piersh@friskit.com>
1251 * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
1253 2002-05-17 Nick Drochak <ndrochak@gol.com>
1255 * StreamWriter.cs: Implement buffering. Also implemented dispose
1256 pattern as recommended by the MS docs. Must call Close() now
1257 to ensure the buffer is flushed.
1259 2002-05-15 Nick Drochak <ndrochak@gol.com>
1261 * Path.cs (GetDirectoryName): Return String.Empty if there is no
1264 * StreamReader.cs: Add some parameter checking on file names.
1266 * StreamWriter.cs: Add some parameter checking on file names.
1268 2002-05-14 Nick Drochak <ndrochak@gol.com>
1270 * File.cs: Add parameter checks to most methods. Not completely done,
1271 but all current unit tests pass.
1273 * Path.cs: Implement GetTempFileName().
1275 2002-05-10 Nick Drochak <ndrochak@gol.com>
1277 * StreamWriter.cs (Flush): Throw proper exception if internal stream
1278 has already been closed when we try to flush.
1280 2002/05/10 Nick Drochak <ndrochak@gol.com>
1282 * FileNotFoundException.cs (ToString): Don't try to use the inner
1283 exception, because it might be null. Use the message instead.
1285 2002-05-09 Nick Drochak <ndrochak@gol.com>
1287 * File.cs (Delete): Do not throw an exception if the file does not
1290 2002-05-08 Mike Gray <mikeg@mikegray.org>
1292 * File.cs: According to ECMA spec and MS docs Copy(src, dest)
1293 should not overwrite dest by default.
1295 2002-05-08 Nick Drochak <ndrochak@gol.com>
1297 * StreamWriter.cs: Add paramter check to constructors and throw
1298 exceptions where appropriate.
1300 Tue May 7 11:47:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1302 * StreamReader.cs: return the number of chars read even if we diddn't
1303 fill the whole buffer (makes Sergey's ilasm work with mono).
1305 2002-05-07 Mike Gray <mikeg_us@hotmail.com>
1307 * FileInfo.cs (Create): Implement missing method.
1309 2002-05-07 Mike Gray <mikeg_us@hotmail.com>
1311 * File.cs: Implemented CreateText method, and fixed dst compares
1312 to compare against "" instead of null twice.
1314 2002-05-05 Nick Drochak <ndrochak@gol.com>
1316 * StreamReader.cs: Throw exceptions where needed. Changed Null field to
1317 use new internal class since null cannot be passed to constructor
1318 anymore. Also, fix a coule of small bugs.
1320 2002-05-03 Nick Drochak <ndrochak@gol.com>
1322 * MemoryStream.cs: Refrain from allocating array until the space is
1323 really needed. This fixes a bug in the Length property when the
1324 constructor without the byte array is used.
1326 2002-05-01 Duncan Mak <duncan@ximian.com>
1328 * DirectoryNotFoundException.cs (constructor): Added missing
1329 serialization constructor.
1331 2002-04-30 Duncan Mak <duncan@ximian.com>
1333 * FileLoadException.cs (constructors): Added missing (string,
1334 string) ctor, as well as (string, string, Exception) ctor.
1336 (Message): Added more info to the error message
1338 (ToString): Added. We'll need to add the StackTrace stuff when
1341 * FileShare.cs: Add a missing field, Inheritable.
1343 * TextReader.cs: Renamed Synchronised method to Synchronized.
1345 * TextWriter.cs: Renamed Synchronised method to Synchronized.
1346 Renamed protected member coreNewLine to CoreNewLine.
1348 2002-04-30 Sergey Chaban <serge@wildwestsoftware.com>
1350 * BinaryReader.cs: Allocate buffer before its first use.
1351 Handle end of stream properly. Methods to read native types
1352 (ReadInt* etc.) are little-endian (see Compact Framework docs).
1354 * BinaryWriter.cs: Store data in little-endian format.
1355 Use internal buffer for conversions.
1357 2002-03-31 Dick Porter <dick@ximian.com>
1359 * Directory.cs: Strip out "." and ".." from returned list
1361 * FileAttributes.cs: Get the right enum values
1363 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
1365 * TextWriter.cs (write): added check for null
1367 2002-03-28 Dan Lewis <dihlewis@yahoo.co.uk>
1369 * Directory.cs: Throws DirectoryNotFoundException.
1370 * MonoIO.cs: Fixed to work around enum problem.
1372 2002-03-27 Dan Lewis <dihlewis@yahoo.co.uk>
1374 * StreamReader.cs: Implemented ReadLine() and ReadEnd().
1376 2002-03-27 Dan Lewis <dihlewis@yahoo.co.uk>
1378 * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
1379 DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
1380 wrapper and PAL classes.
1382 * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
1384 2002-03-25 Mike Kestner <mkestner@speakeasy.net>
1386 * MemoryStream.cs (Read): Fixed bug in exception throw.
1388 2002-03-24 Mike Kestner <mkestner@speakeasy.net>
1390 * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
1392 2002-03-23 Martin Baulig <martin@gnome.org>
1394 * StreamReader.cs: Always do buffered reading, use 4k blocks.
1395 (Read (char[], int, int)): Implemented.
1396 (DiscardBufferedData): Implemented.
1398 2002-03-21 Mike Kestner <mkestner@speakeasy.net>
1400 * StreamReader.cs : Fill out, add buffering, and use encoding.
1402 2002-03-19 Martin Baulig <martin@gnome.org>
1404 * StreamWriter.cs (StreamWriter (string)): The default is to override
1405 the file, not to append to it.
1406 (StreamWriter (string path, bool append)): When appending, seek to the
1407 end of the file, otherwise truncate the file to zero length.
1408 (Dispose (bool)): Close the internalStream.
1409 (Flush): Flush the interalStream.
1410 (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
1412 2002-03-19 Dan Lewis <dihlewis@yahoo.co.uk>
1414 * FileStream.cs: Flush buffer before FileSetLength.
1416 2002-02-28 Miguel de Icaza <miguel@ximian.com>
1418 * Stream.cs (NullStream): Do not track position, this beast does
1419 nothing in practice.
1421 2002-03-15 Dan Lewis <dihlewis@yahoo.co.uk>
1423 * SearchPattern.cs: New class. Glob matching code for Directory.
1424 * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
1426 2002/03/15 Nick Drochak <ndrochak@gol.com>
1428 * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
1429 This code seemed to be copied from somewhere, and it was close,
1430 but didn't match the docs. This was the last bit needed to get
1431 NAnt to compile with our class libs.
1433 2002-03-12 Duncan Mak <duncan@ximian.com>
1435 * EndOfStreamException.cs:
1436 * FileLoadException.cs:
1437 * FileNotFoundException.cs:
1438 * PathTooLongException.cs: Changed the base classes to IOException
1439 instead of SystemException.
1441 * IOException.cs: Added missing constructors.
1443 2002-03-07 Nick Drochak <ndrochak@gol.com>
1445 * FileMode.cs: Docs don't say this should be explicitly derived from
1446 int, so just make it a normal Enum.
1448 2002-03-02 Jason Diamond <jason@injektilo.org>
1450 * StringReader.cs: Fixed off-by-one error in Peek() and Read().
1452 2002-02-12 Nick Drochak <ndrochak@gol.com>
1454 * PathTooLongException.cs: put it in the correct namespace
1455 * EndOfStreamException.cs: put it in the correct namespace
1457 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <lupus@ximian.com>
1459 * Directory.cs: handle opendir() return NULL and absolute filenames.
1461 2002-01-31 Duncan Mak <duncan@ximian.com>
1463 * FileLoadException.cs:
1464 * FileNotFoundException: Added missing bits for serialization.
1466 Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <lupus@ximian.com>
1468 * Directory.cs: allow directories in GetFiles() mask.
1470 2002-01-23 Miguel de Icaza <miguel@ximian.com>
1472 * FileInfo.c (CopyTo, MoveTo): Implement.
1474 * FileStream.cs: Add argument checking to the constructor.
1476 * File.cs: Rewrote most of the file. Implement Copy, Open, Create,
1477 OpenText, OpenWrite, Move. Made pending methods flagged as MonoTODO.
1479 * Directory.cs (Delete): reimplement without using DirectoryInfo.
1480 (Delete): Implement the recursive version.
1481 (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
1482 (Move): Reimplement.
1483 (getNames): dead code removal.
1485 * Path.cs: define an internal DirectorySeparatorStr that we use in
1488 * Wrapper.cs: Updated to new version.
1490 * DirectoryInfo (Delete): Implement using the Directory API.
1492 * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
1493 Delete, Create, Parent, Exists, MoveTo): Implement.
1495 * Directory.cs (GetListing): implement new utility function.
1496 (GetDirectories): Implement.
1497 (GetFileSystemEntries): Implement.
1498 (GetFiles): Implement.
1500 * CheckArgument.cs (Path): Do not allow null by default.
1502 Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <lupus@ximian.com>
1504 * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
1507 2002-01-20 Nick Drochak <ndrochak@gol.com>
1509 * SeekOrigin.cs: Added Serializable attribute.
1511 2002-01-19 Duncan Mak <duncan@ximian.com>
1513 * PathTooLongException.cs:
1514 * EndOfStreamException.cs: Added to CVS.
1516 Thu Jan 10 12:06:46 MST 2002 Matt Kimball <matt@kimball.net>
1518 * BufferedStream.cs: Initial implemenation. The synchronous
1519 methods for both reading and writing are implemented. I'll do the
1520 asynchronous methods in a bit.
1522 Wed Jan 9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
1524 * BinaryWriter.cs: Initial implementation. And it's all there.
1526 * BinaryReader.cs: The constructor now uses the passed in encoding,
1529 Wed Jan 9 13:54:28 MST 2002 Matt Kimball <matt@kimbal.net>
1531 * BinaryReader.cs: Initial implementation. I think it's complete.
1533 2002-01-04 Ravi Pratap <ravi@ximian.com>
1535 * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
1536 attribute decorations.
1538 * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
1539 Path.cs, TextReader.cs, TextWriter.cs : Ditto.
1541 * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs:
1544 2001-12-11 Dick Porter <dick@ximian.com>
1546 * FileStream.cs: Use handles rather than casting file descriptors.
1547 Added Handle property.
1549 Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <lupus@ximian.com>
1551 * CheckPermission.cs: disable ModeAccess() code: it's wrong.
1552 * FileStream.cs: only trow an exception if the read failed in ReadByte().
1553 * StreamReader.cs: implement Peek and Read.
1554 * TextWriter.cs: CLSCompliant updates.
1556 2001-11-10 Sean MacIsaac <macisaac@ximian.com>
1558 * FileNotFoundException.cs: Added some constructors
1560 * Path.cs (GetFullPath): Fixed implementation
1562 Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <lupus@ximian.com>
1564 * DirectoryNotFoundException.cs: implemented.
1566 Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
1568 * File.cs: fix signatures of the Open() and OpenRead() functions
1571 Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
1573 * FileLoadException.cs, FileNotFoundException.cs: added.
1575 2001-08-28 Dietmar Maurer <dietmar@ximian.com>
1577 * TextReader.cs: implemented the Read method
1579 * StreamReader.cs: impl. stubs
1581 * StreamWriter.cs: impl.
1583 * TextWriter.cs: implemented Write and WriteLine methods
1585 Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
1587 * FileAccess.cs, FileMode.cs: change values to be compatible with
1590 Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
1592 * IOException.cs: Implemented System.IO.Exception.
1594 2001-07-18 Michael Lambert <michaellambert@email.com>
1596 *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
1598 2001-07-19 Marcin Szczepanski <marcins@zipworld.com.au>
1600 * System.IO.MemoryStream.cs: Added. Had quite a few cases of
1601 "LAMESPEC", but the tests work against the MS implementation so
1602 the major functions are right (ie. Read/Write/Seek). Some more
1603 tests required for the various constructors and exceptions.
1605 2001-07-16 Marcin Szczepanski <marcins@zipworld.com.au>
1607 * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
1608 New class implemenations.
1610 * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.