[Mono-bugs] [Bug 74648][Nor] Changed - DirectoryInfo.CreationTime fails on folders burned to CD-R
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 19 Apr 2005 18:32:31 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=74648
--- shadow/74648 2005-04-18 04:58:57.000000000 -0400
+++ shadow/74648.tmp.585 2005-04-19 18:32:31.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 74648
Product: Mono: Class Libraries
Version: 1.1
OS: unknown
OS Details: WinXP SP2
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: NOTABUG
Severity: Unknown
Priority: Normal
Component: CORLIB
AssignedTo: mono-bugs@ximian.com
ReportedBy: zulu99@gmx.net
QAContact: mono-bugs@ximian.com
@@ -34,6 +34,37 @@
a DateTime struct representing the folders CreationTime
How often does this happen?
always. tested on 3 winxp sp2 boxes.
Additional Information:
+
+------- Additional Comments From gonzalo@ximian.com 2005-04-19 18:32 -------
+===========
+$ cat creationtimecd.cs
+using System;
+using System.IO;
+
+class Test {
+ static void Main (string [] args)
+ {
+ if (args.Length == 0) {
+ Console.WriteLine ("I need a dirname in a CD");
+ return;
+ }
+ DirectoryInfo dinfo = new DirectoryInfo (args [0]);
+ Console.WriteLine (dinfo.CreationTime);
+ }
+}
+$ ls -ld e:/suse
+dr-xr-xr-x 4 gonzalo None 0 Jul 2 2004 e:/suse/
+
+gonzalo@monowin1 ~/svn/work
+$ mono ./creationtimecd.exe e:\\suse
+7/2/2004 2:17:20 PM
+
+gonzalo@monowin1 ~/svn/work
+$ ./creationtimecd.exe e:\\suse
+7/2/2004 2:17:20 PM
+==================
+
+I cannot reproduce this bug.