Added a new exception case.
[mono.git] / mcs / class / corlib / System.IO / ChangeLog
1 2003-12-06  Ravindra  <rkumar@novell.com>
2         *MonoIO.cs: Added a new exception case. It is thrown 
3         when a directory creation is attempted with a name that
4         is already used by an existing file.
5
6 2003-11-28  Dick Porter  <dick@ximian.com>
7
8         * Path.cs: Use the char form of LastIndexOf, so that the
9         comparison is done with the Invariant culture.
10
11 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12
13         * Directory.cs: provide the path when getting the IOException.
14
15 2003-11-18  John Luke  <jluke@cfl.rr.com>
16
17         * CheckArgument.cs:
18         (PathLength): fix recursion found by JonK
19         
20 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21
22         * Directory.cs:
23         (GetCurrentDirectory):
24         (SetCurrentDirectory): moved here from Environment. Handle error cases.
25
26         * MonoIO.cs: add path to the default error message.
27
28 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29
30         * StringReader.cs: fixed ReadLine for some cases where there are mixed
31         '\r' and '\n'. Closes bug #51020.
32
33 2003-11-14 Ben Maurer  <bmaurer@users.sourceforge.net>
34
35         * MemoryStream.cs (.ctor): We need to check if buffer is null
36         before we get the Length of it.
37
38 2003-11-14  Miguel de Icaza  <miguel@ximian.com>
39
40         * StreamReader.cs, TextReader, StreamReader (Read): Add [Out]
41
42 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
43
44         * Directory.cs: allow directory names without wildcards in the pattern.
45         Fixes bug #3 50969.
46
47         * SearchPattern.cs: made InvalidChars and WildcardChars internal.
48
49 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
50
51         * FileStream.cs: use the argument name when throwing exception.
52
53         * StreamReader.cs:
54         * StringReader.cs:
55         * TextReader.cs: added [In] attribute for the array in Read.
56
57 2003-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
58
59         * DirectoryInfo.cs: fixed ToString. Closes bug #50842.
60
61 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
62
63         * Directory.cs: Adjust for missing PlatformID.Unix.
64
65 2003-10-28  Miguel de Icaza  <miguel@ximian.com>
66
67         * StreamReader.cs: Add checks for disposed stream from bug report
68         #48696 (Patrik Reali)
69
70         * TextReader.cs (Read): Return the total number of bytes read, 
71         patch from Patrik Realli.
72
73 2003-10-20  Miguel de Icaza  <miguel@ximian.com>
74
75         * FileStream.cs public FileStream (string name, FileMode mode)
76         constructor: If we pass FileMode.Append, we can not pass
77         FileAccess.ReadWrite.  This fixes bug 44959
78
79 2003-09-26  Miguel de Icaza  <miguel@ximian.com>
80
81         * BufferedStream.cs (Write): Use CanWrite in Write.  Patch from
82         Francisco Figueiredo Jr.
83
84 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
85
86         * BinaryReader.cs: return the correct number of bytes read when there
87         are some bytes from peeking.
88
89 2003-09-11  Lluis Sanchez Gual  <lluis@ximian.com>
90
91         * BufferedStream.cs, FileStream.cs, MemoryStream.cs, Stream.cs:
92           Added [In,Out] attributes to Read method.
93
94 2003-08-05  Martin Baulig  <martin@ximian.com>
95
96         * StreamReader.cs (DiscardBufferedData): Do the same like on the
97         ms runtime: just discard the buffered data, but don't modify the
98         BaseStream.Position.
99
100 2003-08-04  Martin Baulig  <martin@ximian.com>
101
102         * StreamReader.cs (DiscardBufferedData): Implemented.
103
104 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
105
106         * IntPtrStream.cs (Read): Use correct offset here;  Change the
107         code to use a byte* instead of an IntPtr to reduce the number of
108         casts used. 
109
110         (Read): Use Marshal.Copy instead of the now
111         deprecated MemCopy.
112
113         (IntPtrStream): New stream implementation, it maps to a region in
114         memory.
115
116 2003-07-23  Duncan Mak  <duncan@ximian.com>
117
118         * StreamReader.cs (Initialize): This method is not exposed in the
119         API, mark as internal.
120
121 Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
122
123         * MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>.
124
125 2003-07-16  Dick Porter  <dick@ximian.com>
126
127         * FileInfo.cs: Update path info when a file is moved.  Patch by
128         John Luke <jluke@cfl.rr.com>, fixes bug 44253.
129
130 2003-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
131
132         * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
133
134 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
135
136         * FileStream.cs (Dispose): Flush the buffer even if we don't own the
137         handle.
138         * FileStream.cs: Add a new constructor parameter to turn off buffering.
139         This is used by the Console.OpenStandard...() methods. Also fix
140         argument checking in InitBuffer(), so a zero buffer size is also 
141         rejected.
142
143 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
144
145         * Stream.cs: use async.delegate invoke 
146
147 2003-06-18  Nick Drochak <ndrochak@gol.com>
148
149         * FileSystemInfo.cs: Refresh cache when changeing file times.
150
151 2003-06-11  Zoltan Varga  <vargaz@freemail.hu>
152
153         * FileStream.cs: Fix errors in previous checkins:
154         (Write): Only take the shortcut route if the data is longer than the
155         buffer length.
156         (Write): Flush the buffer before writing out the new data
157         (Write): Flush the buffer after writing out a segment since otherwise
158         we will go into an infinite loop.
159         (FlushBuffer): Remove my last change since it was clearly wrong.
160         (Seek): Run FlushBuffer () after the in-buffer seek optimization.
161         (Seek): Only use the in-buffer optimization if the buffer is not
162         empty.
163         (Length): Call FlushBuffer () since buffer data might change the size
164         of the stream.
165
166 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
167
168         * FileStream.cs:
169         - removed unusefull bugfix (DirectoryNotFoundException)
170         - Flush before seek.
171         
172 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
173
174         * FileStream.cs: Check buffer size before append/read -exceptios
175         
176 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
177
178         * FileStream.cs: Check DirectoryNotFound before FileNotFound.
179         
180 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
181
182         * FileStream.cs: Does not anymore flush while writing
183         
184 2003-06-02  Nick Drochak <ndrochak@gol.com>
185
186         * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
187         for null too.
188
189 2003-05-27  Lluis Sanchez Gual <lluis@ximian.com>
190
191         * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
192
193 2003-05-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
194
195         * Path.cs: fixed bug #42631.
196
197 2003-05-22  Zoltan Varga  <vargaz@freemail.hu>
198
199         * File.cs (Move): Allow moving of directories.
200         Fix 'destination is a directory' test.
201
202 2003-05-21  Ben Maurer  <bmaurer@users.sourceforge.net>
203
204         * StringWriter.cs: Fixed bug #43431: "StringWriter
205         .ctor(CultureInfo) does not create a new StringBuilder ()"
206
207 2003-05-11  Zoltan Varga  <vargaz@freemail.hu>
208
209         * FileStream.cs (FlushBuffer): After a flush, the buffer is
210         advanced by buf_offset bytes, not buf_length bytes.
211
212 2003-05-16  Dick Porter  <dick@ximian.com>
213
214         * MonoIO.cs: Implement GetTempPath
215
216 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
217
218         * DirectoryInfo.cs: fixed bug #42991.
219         * Path.cs:
220         (CanonicalizePath): store the value of the trimmed input string. Make it
221         work with paths such as "/home/xxx/.".
222
223 2003-05-08  Ben Maurer <bmaurer@users.sourceforge.net>
224         * Path.cs 
225         (CanonicalizePath) Fixed bug #42631, which duplicated the
226         root part of the path under Windows.
227
228 2003-05-08  Ville Palo <vi64pa@kolumbus.fi>
229
230         * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc, 
231         LastWriteTimeUtc and CreationTimeUtc
232         
233 2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
234         * Path.cs 
235         (GetPathRoot) Added support for UNC paths.
236         (CanonicalizePath) Added optimizations per Miguel's requests.
237
238 2003-05-06  Ville Palo <vi64pa@kolumbus.fi>
239
240         * BufferedStream.cs: 
241           - Removed unusefull code.
242           - Added ObjectDisposedException to Position
243           - Dont flush if stream is allready closed.
244           - Flush throws also ObjectDisposedException.
245         * Directory.cs:
246           - GetFileSystemEtries: ArgumentNullException if pattern is null
247         * DirectoryInfo.cs: Fixed little MoveTo () bug.
248         * FileInfo.cs:
249           - Exists: If file does not exists when instance is created the
250           value of the Exists property does not change even if file is created
251           afterwards.
252           - Delete: If path is a directory UnauthorizedException is thrown.
253           - CopyTo: Now we can overwrite file if wanted.
254         * Path.cs: 
255           - GetFullPath: Now throws exception when path is "   ".
256         
257 2003-05-04  Ben Maurer <bmaurer@users.sourceforge.net>
258         * Directory.cs (GetLogicalDrives) Marked as MonoTODO
259         because we need to implement the method on Windows.
260         * Path.cs 
261         (CanonicalizePath) Added new function to get
262         rid of . and .. in path names. Need to figure out what
263         other functions should call this.
264         (GetFullPath) Added call to the above function.
265         
266 2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
267
268         * StreamReader.cs:
269         (.ctor): fixed parameters passed to FileNotFoundException.
270
271 2003-04-25  Dietmar Maurer  <dietmar@ximian.com>
272
273         * BinaryReader.cs (Read): make sure the buffer is big enough (fix
274         bug # 40702)
275
276 2003-04-24  Pedro Martínez Juliá  <yoros@wanadoo.es>
277
278         * BufferedStream.cs: Test if it's possible to seek in a Stream
279         before access to Position. This prevents the exception thrown when
280         the stream is System.Net.Sockets.NetworkStream.
281
282 2003-04-22  Ville Palo <vi64pa@kolumbus.fi>
283
284         * Directory.cs: clean up --> performance improvment. Some exceptions
285         are now checked in File.cs.
286         * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
287         
288 2003-04-21  Ville Palo <vi64pa@kolumbus.fi>
289
290         * Directory.cs: lots of fixes. 
291           - Added GetXXXtimeUtc () (v1.1) methods.
292           - Added SetXXXtimeUtc () (v1.1) methods.      
293         
294 2003-04-20  Igor Nosyryev <nosyryev@attbi.com>
295
296         * StringReader.cs (Read): Increment nextChar by charsToRead
297         instead of count, that will guarantee that the next time the
298         method is called, it will return 0 on an empty string rather than
299         throwing an exception
300
301 2003-04-19  Ville Palo <vi64pa@kolumbus.fi>
302
303         * BufferedStream.cs: Some fixes, mostly throwing exceptions.
304         * MemoryStream.cs: Changed the order of exception checking
305         * StringReader.cs: little clean up
306         
307 2003-04-14  Ville Palo <vi64pa@kolumbus.fi>
308
309         * BinaryWriter.cs: Fixed decimal writing and lots of 
310         ObjectDisposedExceptions added.
311         
312 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
313
314         * BinaryReader.cs: Fix to ReadDecimal() method.
315         
316 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
317
318         * StringReader.cs: Added some ObjectDisposedExceptions.
319         * StringWriter.cs: Added some ObjectDisposedExceptions.
320         * BinaryReader.cs: Added some ObjectDisposedExceptions.
321         
322 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
323
324         * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
325         fill a bug report.
326
327 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
328
329         * FileStream.cs: fixed bug #40182 and made more unit test pass.
330
331 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
332
333         * FileStream.cs: Added new methods Lock () and Unlock ()
334         
335 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
336
337         * StringReader.cs: Throws exceptions if constructor parameter is null.
338         
339 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
340
341         * StringWriter.cs: Now throws an exception if StringBuilder parameter
342         is null
343         
344 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
345
346         * TextWriter.cs: Implemented Synchronized method.
347
348         * TextReader.cs: Implemented Synchronized method.
349
350 2003-04-04  Miguel de Icaza  <miguel@ximian.com>
351
352         * FileStream.cs (Read, ReadByte, Seek): throw
353         ObjectDisposedException if the handle has been released.
354         
355         (Read): Throw exceptions specified in the spec.
356
357         (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
358         instance methods of FileStream to be thread safe, so remove all
359         the calls to lock on the object
360
361 2003-03-31  Nick Drochak <ndrochak@gol.com>
362
363         * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
364
365 2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>
366
367         * FileNotFoundException.cs: fixed serialization bug.
368
369 2003-03-18  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
370
371         * StringWriter.cs : don't release internalString on Dispose().
372
373 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
374
375         * StreamReader.cs: fixed bug #39280.
376
377 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
378
379         * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
380         pointing it out.
381
382 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
383
384         * MemoryStream.cs: general fixes and reformatted. Passes all tests in
385         the new MemoryStreamTest.
386
387 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
388
389         * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
390         ToArray even after closing the stream.
391
392 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
393
394         * Directory.cs:
395         (Move): don't use File.Move.
396         * DirectoryInfo.cs: fixed Name property.
397         
398         Fixes bug #37755.
399
400 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
401
402         * DirectoryInfo.cs: changed ToString to match MS behavior.
403         * Path.cs: further fixes to GetDirectoryName to return null in the
404         same cases that MS does.
405
406         Fixes bug #38387.
407
408 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
409
410         * Path.cs: fixed a couple of bugs reported in #35906.
411
412 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
413
414         * Directory.cs: fixed bugs #38939 and #38940. No need for separate
415         unix/windows/unc shares code paths.
416
417 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
418
419         * File.cs: fix by Elan Feingold <efeingold@mn.rr.com> for
420         SetCreationTime, SetLastAccessTime and SetLastWriteTime.
421
422 2003-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
423
424         * MemoryStream.cs:
425         (ToArray): return only the portion of the buffer that contains
426         data, not the whole buffer. (note: this makes XmlDocument.Load work
427         again with documents that have a <?xml without the 'encoding'
428         attribute, which makes gtk-sharp generator work again).
429
430 2003-02-25  Nick Drochak <ndrochak@gol.com>
431
432         * File.cs (GetCreationTime): Throw proper execption when path is not
433         found.
434
435 Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <lupus@ximian.com>
436
437         * MemoryStream.cs: make it behave sanely when the stream is
438         incrementally expanded.
439
440 2003-02-21  Dick Porter  <dick@ximian.com>
441
442         * FileStream.cs: Use locks around buffer manipulations.  Fixes bug
443         32344
444
445 2003-02-18  Dick Porter  <dick@ximian.com>
446
447         * FileStream.cs: Make FileMode.Append work, and check for Seeking
448         back over old data (undocumented ms behaviour, throws an exception
449         if you try).  Fixes bug 35975.
450
451 2003-02-17  Dick Porter  <dick@ximian.com>
452
453         * FileStream.cs: Don't close the handle if the stream doesn't own
454         it.  Patch from Raymond Penners (raymond@dotsphinx.com), bug
455         35623.
456
457 2003-02-14  Zoltan Varga  <vargaz@freemail.hu>
458
459         * FileStream.cs (Write): flush after writing the last segment as well.
460
461 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
462
463         * StringReader.cs:
464         (ReadLine): fixed the case when the string ends with a '\n'.
465
466 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
467
468         * MemoryStream.cs: create the buffer of the specified capacity.
469
470 2003-01-31  Patrik Torstensson
471
472         * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
473         the same way as MS does it (performance improvement)
474
475 2003-01-29  Zoltan Varga  <vargaz@freemail.hu>
476
477         * Directory.cs (GetFileSystemEntries): moved error handling to the
478         correct instance of GetFileSystemEntries so all callers can enjoy it.
479
480 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
481
482         * File.cs: add error handling to Get...Time methods.
483
484 2003-01-26  Zoltan Varga  <vargaz@freemail.hu>
485
486         * Directory.cs: fix GetParent so it actually works.
487
488 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
489
490         * Path.cs: fixlet to ChangeExtension for the case when the path is
491         empty.
492
493 2003-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
494
495         * BufferedStream.cs: don't try to write a 0 sized array on when
496         flushing the stream.
497         
498         Fixes bug #37045.
499
500 2003-01-18  Jonathan Pryor <jonpryor@vt.edu>
501
502         * FileStream.cs: Add IsAsync property.  (Documented in "C# In A Nutshell".)
503
504 2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
505
506         * MemoryStream.cs: fixed bug #36319.
507
508 2002-12-16  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
509         
510         * Directory.cs: Some fixes to SMB shares handling, and not compiling 
511         with csc, mcs compiles it correctly (mcs bug 35652)
512
513 2002-12-14  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
514
515         * Directory.cs: Some fixes related to correct some exceptions thrown
516
517 2002-12-11  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
518
519         * Directory.cs: Some Exceptions added, fixed GetParent(),
520         CreateDirectory() should work with unix, native windows and
521         windows samba shares. Converted end-lines from dos-mode to unix-mode
522
523 2002-12-08  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
524
525         * Directory.cs: CreateDirectory  works now with Absolute paths
526         too, not only with relative ones.
527
528 2002-12-07  Peter Williams  <peterw@ximian.com>
529
530         * Directory.cs: Don't use the uninitialized pathsumm here.
531         Don't try and create "" if we're using an absolute path.
532
533 2002-12-07  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
534
535         * Directory.cs: Now the creation of a new directory works recursively
536         it will make parents as needed.
537
538 2002-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
539
540         * BufferedStream.cs: applied patch from <carlosga@telefonica.net> that
541         fixes Flush ().
542
543 Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <lupus@ximian.com>
544
545         * StreamWriter.cs: output the encoding preamble at the start of a
546         stream if needed.
547
548 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
549
550         * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
551
552 2002-11-06  Miguel de Icaza  <miguel@ximian.com>
553
554         * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
555
556 2002-10-31  Dick Porter  <dick@ximian.com>
557
558         * FileStream.cs: Fix buffering properly this time.  Also kludge
559         around broken pipe errors, treating them as EOF instead of
560         throwing an IO exception.
561
562         * MonoIO.cs: Return the error status in a parameter, as the
563         GetLastError() value has long since been blown away if we try and
564         look it up in a subsequent internal call invocation.
565
566         * FileSystemInfo.cs: 
567         * FileInfo.cs: 
568         * File.cs: 
569         * Directory.cs: MonoIO methods now have an error parameter
570
571 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
572
573         * TextReader.cs: implemented ReadBlock ().
574
575 2002-10-30  Miguel de Icaza  <miguel@ximian.com>
576
577         * StreamWriter.cs: Ditto for Null stream.
578
579         * BinaryReader.cs: Use Unmarked here too.
580
581         * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
582         is what .NET does.
583
584 2002-10-23  Dick Porter  <dick@ximian.com>
585
586         * FileStream.cs: Implemented CanSeek, and used it around all the
587         calls to MonoIO.Seek.  Fixed buffering in Read() so that it
588         doesn't block forever on short reads.
589
590         * MonoFileType.cs: New enum for GetFileType
591         
592         * MonoIO.cs: Added GetFileType
593
594 2002-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
595
596         * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
597         \n (this is what MS does).
598
599 2002-10-18  Dick Porter  <dick@ximian.com>
600
601         * FileStream.cs: SeekOrigin.End still calculates the offset from
602         the end of the file with positive values extending the length.
603         Fixes bug 32471.
604
605 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
606
607         * Path.cs: some cleanup. Thanks to Martin Aliger.
608
609 2002-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
610
611         * FileStream.cs: throw an exception if trying to open a directory.
612         Thanks to Martin Aliger.
613
614 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
615
616         * Path.cs: fixes bug #28046.
617
618 2002-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
619
620         * StreamReader.cs: give more information when wrong parameters passed.
621
622 2002-09-21  Miguel de Icaza  <miguel@ximian.com>
623
624         * FileStream.cs: Do not call FSync on the file.
625
626 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
627
628         * TextWriter.cs (Null): The Null field should be an instance of a
629         TextWriter class that does nothing, so it is an instance of the
630         NullTextWriter class.
631
632 2002-09-16  Nick Drochak  <ndrochak@gol.com>
633
634         * MemoryStream.cs (Close): Don't throw an exception if the stream
635         is already closed.
636
637 2002-09-15  Miguel de Icaza  <miguel@ximian.com>
638
639         * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
640         Flush calls fsync().  
641
642         The API docs show no explicit mention that Flush() should even do
643         an fsync, I am thinking that we should drop that from the
644         runtime. 
645
646 2002-09-09  Miguel de Icaza  <miguel@ximian.com>
647
648         * StreamWriter.cs: When no encoding is provided, create an
649         encoding without markers, this is what MS does.
650
651 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
652
653         * StreamReader.cs: Implement detection of byte marks and skipping
654         of byte marks at the beginning of the stream.
655
656         (ReadToEnd): Use buffered read instead of char-by-char
657         processing. 
658
659         Correct the default arguments for creating the StreamReader.
660
661 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
662
663         * CheckArgument.cs: fixed check for empty string.
664         * Path.cs: various fixes. It passes all the tests in new PathTest.
665
666 2002-08-29  Duncan Mak  <duncan@ximian.com>
667
668         * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
669         the build for gtk#.
670
671 2002-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
672
673         * BinaryReader.cs:
674         * BinaryWriter.cs:
675         * MemoryStream.cs:
676         * StreamReader.cs:
677         * StreamWriter.cs:
678         * StringReader.cs:
679         * StringWriter.cs:
680         * TextWriter.cs: IDisposable fixes.
681
682 2002-08-24  Miguel de Icaza  <miguel@ximian.com>
683
684         * StreamReader.cs: Removed TODOs, as the code seems to be
685         complete. 
686
687         * Path.cs (GetTempFileName): Make this routine atomic by not
688         testing and then creating, but using the create call to ensure
689         that we own the filename.
690
691 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
692
693         * FileLoadException.cs: implemented ToString.
694
695         * StreamWriter.cs: added Null field and implemented Write (char) and
696         Write (char []).
697
698 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
699
700         * StreamReader.cs: implemented NullStreamReader.
701
702 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
703
704         * Path.cs (GetDirectoryName): Fix for filenames with size = 1
705
706         * File.cs: Removed all references that threw exceptions when the
707         paths contains a colon, as this is a valid part of an identifier
708         on Unix.
709
710         Everywhere: The String.Empty return from GetDirectoryName means
711         that there is no directory information about the path.
712
713 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
714
715         * FileNotFoundException.cs: use Message and InnerException from base
716         class. Changed Message and ToString ().
717
718 2002-08-19  Dick Porter  <dick@ximian.com>
719
720         * BinaryWriter.cs: The length of a string is counted in bytes, not
721         chars
722
723 2002-08-18  Dick Porter  <dick@ximian.com>
724
725         * BinaryReader.cs: Fixed buffering
726
727 2002-08-09  Nick Drochak  <ndrochak@gol.com>
728
729         * BinaryReader.cs: added virtual to Dispose(bool).
730
731 2002-08-03  Jason Diamond  <jason@injektilo.org>
732
733         * StringWriter.cs: Return UnicodeEncoding for Encoding property.
734
735 2002-08-03  Jason Diamond  <jason@injektilo.org>
736
737         * StreamWriter.cs: Use GetByteCount() to get exact length instead
738         of GetMaxByteCount when converting chars to bytes.
739
740 2002-07-31  Duncan Mak  <duncan@ximian.com>
741
742         * StreamReader.cs: 
743         (Dispose): Added and implmented.
744
745         * StreamWriter.cs: 
746         (Dispose): Fixed visibility.
747         (Initialize): Fixed visibility, made internal.
748
749         * BinaryReader.cs:
750         (Dispose): Fixed visibility.
751
752 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
753
754         * File.cs:
755         (Create): allow file names without path.
756
757 Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
758
759         * FileStream.cs: patch from erik@bagfors.nu to add
760         Name property support.
761
762 2002-07-20  Dick Porter  <dick@ximian.com>
763
764         * MonoIO.cs: Added icall to CreatePipe
765
766 2002-07-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
767
768         * FileInfo.cs: fixes buglet #27940
769
770 2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
771
772         * Path.cs: removed unneeded line from GetExtension.
773
774 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
775
776         * FileStream.cs:
777         (.ctor): call MonoIO.GetException with the file name.
778
779 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
780
781         * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
782
783 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
784
785         * StreamReader.cs: Revert the last Peek change and fix the ReadLine
786         end of line detection code instead.
787
788 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
789
790         * StreamReader.cs:
791         (Peek): no need to have seek capabilitites. 
792
793 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
794
795         * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
796
797         * File.cs (Delete): only call Directory.Exists() if DirName != ""
798
799 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
800
801         * Directory.cs: fixed bug #26133 and also test if the directory exist
802         before performing the search.
803
804 2002-06-12  Nick Drochak  <ndrochak@gol.com>
805
806         * StringReader.cs (ReadLine): Return null when we get to end of the
807         string.
808
809 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
810
811         * StreamWriter.cs: added ability to write null value
812         
813 2002-05-19  Lawrence Pit  <loz@cable.a2000.nl>
814
815         * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
816         prevent endless loops.
817
818 2002-05-17  Dan Lewis  <dihlewis@yahoo.co.uk>
819
820         * FileStream.cs: Enforce lower bound on buffer size.
821
822 2002-05-16  Piers Haken <piersh@friskit.com>
823
824         * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
825
826 2002-05-17  Nick Drochak  <ndrochak@gol.com>
827
828         * StreamWriter.cs: Implement buffering.  Also implemented dispose
829         pattern as recommended by the MS docs.  Must call Close() now
830         to ensure the buffer is flushed.
831
832 2002-05-15  Nick Drochak  <ndrochak@gol.com>
833
834         * Path.cs (GetDirectoryName): Return String.Empty if there is no
835         directory
836
837         * StreamReader.cs: Add some parameter checking on file names.
838
839         * StreamWriter.cs: Add some parameter checking on file names.
840
841 2002-05-14 Nick Drochak  <ndrochak@gol.com>
842
843         * File.cs: Add parameter checks to most methods. Not completely done,
844         but all current unit tests pass.
845
846         * Path.cs: Implement GetTempFileName().
847
848 2002-05-10  Nick Drochak  <ndrochak@gol.com>
849
850         * StreamWriter.cs (Flush): Throw proper exception if internal stream
851         has already been closed when we try to flush.
852
853 2002/05/10  Nick Drochak <ndrochak@gol.com>
854
855         * FileNotFoundException.cs (ToString): Don't try to use the inner
856         exception, because it might be null.  Use the message instead.
857
858 2002-05-09  Nick Drochak  <ndrochak@gol.com>
859
860         * File.cs (Delete): Do not throw an exception if the file does not
861         exist.
862
863 2002-05-08  Mike Gray     <mikeg@mikegray.org>
864
865         * File.cs: According to ECMA spec and MS docs Copy(src, dest)
866         should not overwrite dest by default.
867
868 2002-05-08  Nick Drochak  <ndrochak@gol.com>
869
870         * StreamWriter.cs: Add paramter check to constructors and throw
871         exceptions where appropriate.
872
873 Tue May 7 11:47:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
874
875         * StreamReader.cs: return the number of chars read even if we diddn't
876         fill the whole buffer (makes Sergey's ilasm work with mono).
877
878 2002-05-07  Mike Gray     <mikeg_us@hotmail.com> 
879
880         * FileInfo.cs (Create): Implement missing method.
881
882 2002-05-07  Mike Gray     <mikeg_us@hotmail.com>
883
884         * File.cs: Implemented CreateText method, and fixed dst compares
885         to compare against "" instead of null twice.
886
887 2002-05-05  Nick Drochak  <ndrochak@gol.com>
888
889         * StreamReader.cs: Throw exceptions where needed. Changed Null field to
890         use new internal class since null cannot be passed to constructor 
891         anymore. Also, fix a coule of small bugs.
892
893 2002-05-03  Nick Drochak  <ndrochak@gol.com>
894
895         * MemoryStream.cs: Refrain from allocating array until the space is
896         really needed. This fixes a bug in the Length property when the
897         constructor without the byte array is used.
898
899 2002-05-01  Duncan Mak  <duncan@ximian.com>
900
901         * DirectoryNotFoundException.cs (constructor): Added missing
902         serialization constructor.
903
904 2002-04-30  Duncan Mak  <duncan@ximian.com>
905
906         * FileLoadException.cs (constructors): Added missing (string,
907         string) ctor, as well as (string, string, Exception) ctor.
908
909         (Message): Added more info to the error message
910
911         (ToString): Added. We'll need to add the StackTrace stuff when
912         that works.
913
914         * FileShare.cs: Add a missing field, Inheritable.
915         
916         * TextReader.cs: Renamed Synchronised method to Synchronized.
917
918         * TextWriter.cs: Renamed Synchronised method to Synchronized.
919         Renamed protected member coreNewLine to CoreNewLine.
920
921 2002-04-30  Sergey Chaban  <serge@wildwestsoftware.com>
922
923         * BinaryReader.cs: Allocate buffer before its first use.
924         Handle end of stream properly. Methods to read native types
925         (ReadInt* etc.) are little-endian (see Compact Framework docs).
926
927         * BinaryWriter.cs: Store data in little-endian format.
928         Use internal buffer for conversions.
929
930 2002-03-31  Dick Porter  <dick@ximian.com>
931
932         * Directory.cs: Strip out "." and ".." from returned list
933
934         * FileAttributes.cs: Get the right enum values
935
936 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
937
938         * TextWriter.cs (write): added check for null
939
940 2002-03-28  Dan Lewis  <dihlewis@yahoo.co.uk>
941
942         * Directory.cs: Throws DirectoryNotFoundException.
943         * MonoIO.cs: Fixed to work around enum problem.
944
945 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
946
947         * StreamReader.cs: Implemented ReadLine() and ReadEnd().
948
949 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
950
951         * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
952         DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
953         wrapper and PAL classes.
954
955         * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
956
957 2002-03-25  Mike Kestner <mkestner@speakeasy.net>
958
959         * MemoryStream.cs (Read): Fixed bug in exception throw.
960
961 2002-03-24  Mike Kestner <mkestner@speakeasy.net>
962
963         * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
964
965 2002-03-23  Martin Baulig  <martin@gnome.org>
966
967         * StreamReader.cs: Always do buffered reading, use 4k blocks.
968         (Read (char[], int, int)): Implemented.
969         (DiscardBufferedData): Implemented.
970
971 2002-03-21  Mike Kestner <mkestner@speakeasy.net>
972
973         * StreamReader.cs : Fill out, add buffering, and use encoding.
974
975 2002-03-19  Martin Baulig  <martin@gnome.org>
976
977         * StreamWriter.cs (StreamWriter (string)): The default is to override
978         the file, not to append to it.
979         (StreamWriter (string path, bool append)): When appending, seek to the
980         end of the file, otherwise truncate the file to zero length.
981         (Dispose (bool)): Close the internalStream.
982         (Flush): Flush the interalStream.
983         (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
984
985 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
986
987         * FileStream.cs: Flush buffer before FileSetLength.
988
989 2002-02-28  Miguel de Icaza  <miguel@ximian.com>
990
991         * Stream.cs (NullStream): Do not track position, this beast does
992         nothing in practice.
993
994 2002-03-15  Dan Lewis <dihlewis@yahoo.co.uk>
995
996         * SearchPattern.cs: New class. Glob matching code for Directory.
997         * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
998
999 2002/03/15 Nick Drochak <ndrochak@gol.com>
1000
1001         * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
1002         This code seemed to be copied from somewhere, and it was close,
1003         but didn't match the docs.  This was the last bit needed to get
1004         NAnt to compile with our class libs.
1005
1006 2002-03-12  Duncan Mak  <duncan@ximian.com>
1007
1008         * EndOfStreamException.cs:
1009         * FileLoadException.cs:
1010         * FileNotFoundException.cs:
1011         * PathTooLongException.cs: Changed the base classes to IOException
1012         instead of SystemException.
1013
1014         * IOException.cs: Added missing constructors.
1015         
1016 2002-03-07  Nick Drochak  <ndrochak@gol.com>
1017
1018         * FileMode.cs: Docs don't say this should be explicitly derived from
1019         int, so just make it a normal Enum.
1020
1021 2002-03-02  Jason Diamond  <jason@injektilo.org>
1022
1023         * StringReader.cs: Fixed off-by-one error in Peek() and Read().
1024
1025 2002-02-12  Nick Drochak  <ndrochak@gol.com>
1026
1027         * PathTooLongException.cs: put it in the correct namespace
1028         * EndOfStreamException.cs: put it in the correct namespace
1029
1030 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <lupus@ximian.com>
1031
1032         * Directory.cs: handle opendir() return NULL and absolute filenames.
1033
1034 2002-01-31  Duncan Mak  <duncan@ximian.com>
1035
1036         * FileLoadException.cs:
1037         * FileNotFoundException: Added missing bits for serialization.
1038
1039 Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <lupus@ximian.com>
1040
1041         * Directory.cs: allow directories in GetFiles() mask.
1042
1043 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
1044
1045         * FileInfo.c (CopyTo, MoveTo): Implement.
1046
1047         * FileStream.cs: Add argument checking to the constructor.
1048
1049         * File.cs: Rewrote most of the file.  Implement Copy, Open, Create,
1050         OpenText, OpenWrite, Move.  Made pending methods flagged as MonoTODO. 
1051         
1052         * Directory.cs (Delete): reimplement without using DirectoryInfo.
1053         (Delete): Implement the recursive version.
1054         (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
1055         (Move): Reimplement.
1056         (getNames): dead code removal.
1057
1058         * Path.cs: define an internal DirectorySeparatorStr that we use in
1059         a few spots.
1060
1061         * Wrapper.cs: Updated to new version.
1062         
1063         * DirectoryInfo (Delete): Implement using the Directory API.
1064
1065         * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
1066         Delete, Create, Parent, Exists, MoveTo): Implement. 
1067
1068         * Directory.cs (GetListing): implement new utility function.
1069         (GetDirectories): Implement.
1070         (GetFileSystemEntries): Implement.
1071         (GetFiles): Implement.
1072
1073         * CheckArgument.cs (Path): Do not allow null by default.
1074
1075 Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <lupus@ximian.com>
1076
1077         * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
1078         assembly in corlib.
1079
1080 2002-01-20 Nick Drochak  <ndrochak@gol.com>
1081
1082         * SeekOrigin.cs: Added Serializable attribute.
1083
1084 2002-01-19  Duncan Mak  <duncan@ximian.com>
1085
1086         * PathTooLongException.cs: 
1087         * EndOfStreamException.cs: Added to CVS.
1088
1089 Thu Jan 10 12:06:46 MST 2002 Matt Kimball <matt@kimball.net>
1090
1091         * BufferedStream.cs: Initial implemenation.  The synchronous
1092         methods for both reading and writing are implemented.  I'll do the
1093         asynchronous methods in a bit.
1094         
1095 Wed Jan  9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
1096
1097         * BinaryWriter.cs: Initial implementation.  And it's all there.
1098
1099         * BinaryReader.cs: The constructor now uses the passed in encoding,
1100         not UTF8 always.
1101
1102 Wed Jan  9 13:54:28 MST 2002 Matt Kimball <matt@kimbal.net>
1103
1104         * BinaryReader.cs: Initial implementation.  I think it's complete.
1105
1106 2002-01-04  Ravi Pratap  <ravi@ximian.com>
1107
1108         * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
1109         attribute decorations.
1110
1111         * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
1112         Path.cs, TextReader.cs, TextWriter.cs : Ditto.
1113
1114         * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs: 
1115         Ditto.
1116
1117 2001-12-11  Dick Porter  <dick@ximian.com>
1118
1119         * FileStream.cs: Use handles rather than casting file descriptors.
1120         Added Handle property.
1121
1122 Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <lupus@ximian.com>
1123
1124         * CheckPermission.cs: disable ModeAccess() code: it's wrong.
1125         * FileStream.cs: only trow an exception if the read failed in ReadByte().
1126         * StreamReader.cs: implement Peek and Read.
1127         * TextWriter.cs: CLSCompliant updates.
1128
1129 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
1130
1131         * FileNotFoundException.cs: Added some constructors
1132
1133         * Path.cs (GetFullPath): Fixed implementation
1134
1135 Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <lupus@ximian.com>
1136
1137         * DirectoryNotFoundException.cs: implemented.
1138
1139 Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
1140
1141         * File.cs: fix signatures of the Open() and OpenRead() functions
1142         (they are static).
1143
1144 Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
1145
1146         * FileLoadException.cs, FileNotFoundException.cs: added.
1147
1148 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
1149
1150         * TextReader.cs: implemented the Read method
1151
1152         * StreamReader.cs: impl. stubs
1153
1154         * StreamWriter.cs: impl.
1155
1156         * TextWriter.cs: implemented Write and WriteLine methods
1157
1158 Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
1159
1160         * FileAccess.cs, FileMode.cs: change values to be compatible with
1161         the ms ones.
1162         
1163 Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
1164
1165         * IOException.cs: Implemented System.IO.Exception.
1166
1167 2001-07-18  Michael Lambert <michaellambert@email.com>
1168
1169         *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
1170
1171 2001-07-19  Marcin Szczepanski <marcins@zipworld.com.au>
1172
1173         * System.IO.MemoryStream.cs: Added.  Had quite a few cases of
1174         "LAMESPEC", but the tests work against the MS implementation so
1175         the major functions are right (ie. Read/Write/Seek).  Some more
1176         tests required for the various constructors and exceptions.
1177
1178 2001-07-16  Marcin Szczepanski <marcins@zipworld.com.au>
1179
1180         * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
1181         New class implemenations.
1182
1183         * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.