2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.IO / FileSystemInfo.cs
blob574ab1d573c8e14730737a5fd83611c645eadbb5
1 //------------------------------------------------------------------------------
2 //
3 // System.IO.FileSystemInfo.cs
4 //
5 // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
6 //
7 // Author: Jim Richardson, develop@wtfo-guru.com
8 // Dan Lewis (dihlewis@yahoo.co.uk)
9 // Created: Monday, August 13, 2001
11 //------------------------------------------------------------------------------
14 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
16 // Permission is hereby granted, free of charge, to any person obtaining
17 // a copy of this software and associated documentation files (the
18 // "Software"), to deal in the Software without restriction, including
19 // without limitation the rights to use, copy, modify, merge, publish,
20 // distribute, sublicense, and/or sell copies of the Software, and to
21 // permit persons to whom the Software is furnished to do so, subject to
22 // the following conditions:
23 //
24 // The above copyright notice and this permission notice shall be
25 // included in all copies or substantial portions of the Software.
26 //
27 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
31 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 using System.Runtime.InteropServices;
37 using System.Runtime.Serialization;
38 using System.Security.Permissions;
40 namespace System.IO {
42 [Serializable]
43 [FileIOPermission (SecurityAction.InheritanceDemand, Unrestricted = true)]
44 [ComVisible (true)]
45 #if NET_2_1
46 public abstract class FileSystemInfo {
47 #else
48 public abstract class FileSystemInfo : MarshalByRefObject, ISerializable {
50 #region Implementation of ISerializable
52 [ComVisible(false)]
53 public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
55 info.AddValue ("OriginalPath", OriginalPath, typeof(string));
56 info.AddValue ("FullPath", FullPath, typeof(string));
59 #endregion Implementation of ISerializable
60 #endif
61 // public properties
63 public abstract bool Exists { get; }
65 public abstract string Name { get; }
67 public virtual string FullName {
68 get {
69 return FullPath;
73 public string Extension {
74 get {
75 return Path.GetExtension (Name);
79 public FileAttributes Attributes {
80 get {
81 Refresh (false);
82 return stat.Attributes;
85 set {
86 MonoIOError error;
88 if (!MonoIO.SetFileAttributes (FullName,
89 value,
90 out error))
91 throw MonoIO.GetException (FullName,
92 error);
93 Refresh (true);
97 public DateTime CreationTime {
98 get {
99 Refresh (false);
100 return DateTime.FromFileTime (stat.CreationTime);
103 set {
104 long filetime = value.ToFileTime ();
106 MonoIOError error;
108 if (!MonoIO.SetFileTime (FullName, filetime,
109 -1, -1, out error))
110 throw MonoIO.GetException (FullName,
111 error);
112 Refresh (true);
116 [ComVisible(false)]
117 public DateTime CreationTimeUtc {
118 get {
119 return CreationTime.ToUniversalTime ();
122 set {
123 CreationTime = value.ToLocalTime ();
127 public DateTime LastAccessTime {
128 get {
129 Refresh (false);
130 return DateTime.FromFileTime (stat.LastAccessTime);
133 set {
134 long filetime = value.ToFileTime ();
136 MonoIOError error;
138 if (!MonoIO.SetFileTime (FullName, -1,
139 filetime, -1,
140 out error))
141 throw MonoIO.GetException (FullName,
142 error);
143 Refresh (true);
147 [ComVisible(false)]
148 public DateTime LastAccessTimeUtc {
149 get {
150 Refresh (false);
151 return LastAccessTime.ToUniversalTime ();
154 set {
155 LastAccessTime = value.ToLocalTime ();
159 public DateTime LastWriteTime {
160 get {
161 Refresh (false);
162 return DateTime.FromFileTime (stat.LastWriteTime);
165 set {
166 long filetime = value.ToFileTime ();
168 MonoIOError error;
170 if (!MonoIO.SetFileTime (FullName, -1, -1,
171 filetime, out error))
172 throw MonoIO.GetException (FullName,
173 error);
174 Refresh (true);
178 [ComVisible(false)]
179 public DateTime LastWriteTimeUtc {
180 get {
181 Refresh (false);
182 return LastWriteTime.ToUniversalTime ();
185 set {
186 LastWriteTime = value.ToLocalTime ();
190 // public methods
192 public abstract void Delete ();
194 public void Refresh ()
196 Refresh (true);
199 // protected
201 protected FileSystemInfo ()
203 this.valid = false;
204 this.FullPath = null;
207 protected FileSystemInfo (SerializationInfo info, StreamingContext context)
209 if (info == null)
211 throw new ArgumentNullException("info");
214 FullPath = info.GetString("FullPath");
215 OriginalPath = info.GetString("OriginalPath");
218 protected string FullPath;
219 protected string OriginalPath;
221 // internal
223 internal void Refresh (bool force)
225 if (valid && !force)
226 return;
228 MonoIOError error;
230 MonoIO.GetFileStat (FullName, out stat, out error);
231 /* Don't throw on error here, too much other
232 * stuff relies on it not doing so...
235 valid = true;
237 InternalRefresh ();
240 internal virtual void InternalRefresh ()
244 internal void CheckPath (string path)
246 if (path == null)
247 throw new ArgumentNullException ("path");
248 if (path.Length == 0)
249 throw new ArgumentException ("An empty file name is not valid.");
250 if (path.IndexOfAny (Path.InvalidPathChars) != -1)
251 throw new ArgumentException ("Illegal characters in path.");
254 internal MonoIOStat stat;
255 internal bool valid;