| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- //------------------------------------------------------------------------------
- //
- // System.IO.FileSystemInfo.cs
- //
- // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
- // Copyright 2011 Xamarin Inc (http://www.xamarin.com).
- //
- // Author: Jim Richardson, [email protected]
- // Dan Lewis ([email protected])
- // Created: Monday, August 13, 2001
- //
- //------------------------------------------------------------------------------
- //
- // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Runtime.InteropServices;
- using System.Runtime.Serialization;
- using System.Security;
- using System.Security.Permissions;
- namespace System.IO {
-
- [Serializable]
- [FileIOPermission (SecurityAction.InheritanceDemand, Unrestricted = true)]
- [ComVisible (true)]
- #if NET_2_1
- public abstract class FileSystemInfo {
- #else
- public abstract class FileSystemInfo : MarshalByRefObject, ISerializable {
- #region Implementation of ISerializable
- [ComVisible(false)]
- public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- info.AddValue ("OriginalPath", OriginalPath, typeof(string));
- info.AddValue ("FullPath", FullPath, typeof(string));
- }
- #endregion Implementation of ISerializable
- #endif
- // public properties
- public abstract bool Exists { get; }
- public abstract string Name { get; }
- public virtual string FullName {
- get {
- return FullPath;
- }
- }
- public string Extension {
- get {
- return Path.GetExtension (Name);
- }
- }
- public FileAttributes Attributes {
- get {
- Refresh (false);
- return stat.Attributes;
- }
- set {
- MonoIOError error;
-
- if (!MonoIO.SetFileAttributes (FullName,
- value,
- out error))
- throw MonoIO.GetException (FullName,
- error);
- Refresh (true);
- }
- }
- public DateTime CreationTime {
- get {
- Refresh (false);
- return DateTime.FromFileTime (stat.CreationTime);
- }
- set {
- SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
- long filetime = value.ToFileTime ();
-
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (FullName, filetime,
- -1, -1, out error))
- throw MonoIO.GetException (FullName,
- error);
- Refresh (true);
- }
- }
- [ComVisible(false)]
- public DateTime CreationTimeUtc {
- get {
- return CreationTime.ToUniversalTime ();
- }
- set {
- CreationTime = value.ToLocalTime ();
- }
- }
- public DateTime LastAccessTime {
- get {
- Refresh (false);
- return DateTime.FromFileTime (stat.LastAccessTime);
- }
- set {
- SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
- long filetime = value.ToFileTime ();
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (FullName, -1,
- filetime, -1,
- out error))
- throw MonoIO.GetException (FullName,
- error);
- Refresh (true);
- }
- }
- [ComVisible(false)]
- public DateTime LastAccessTimeUtc {
- get {
- Refresh (false);
- return LastAccessTime.ToUniversalTime ();
- }
- set {
- LastAccessTime = value.ToLocalTime ();
- }
- }
- public DateTime LastWriteTime {
- get {
- Refresh (false);
- return DateTime.FromFileTime (stat.LastWriteTime);
- }
- set {
- SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
- long filetime = value.ToFileTime ();
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (FullName, -1, -1,
- filetime, out error))
- throw MonoIO.GetException (FullName,
- error);
- Refresh (true);
- }
- }
- [ComVisible(false)]
- public DateTime LastWriteTimeUtc {
- get {
- Refresh (false);
- return LastWriteTime.ToUniversalTime ();
- }
- set {
- LastWriteTime = value.ToLocalTime ();
- }
- }
- // public methods
- public abstract void Delete ();
- public void Refresh ()
- {
- Refresh (true);
- }
- // protected
- protected FileSystemInfo ()
- {
- this.valid = false;
- this.FullPath = null;
- }
- protected FileSystemInfo (SerializationInfo info, StreamingContext context)
- {
- if (info == null)
- {
- throw new ArgumentNullException("info");
- }
- FullPath = info.GetString("FullPath");
- OriginalPath = info.GetString("OriginalPath");
- }
- protected string FullPath;
- protected string OriginalPath;
- // internal
- internal void Refresh (bool force)
- {
- if (valid && !force)
- return;
- MonoIOError error;
-
- MonoIO.GetFileStat (FullName, out stat, out error);
- /* Don't throw on error here, too much other
- * stuff relies on it not doing so...
- */
-
- valid = true;
-
- InternalRefresh ();
- }
-
- internal virtual void InternalRefresh ()
- {
- }
- internal void CheckPath (string path)
- {
- if (path == null)
- throw new ArgumentNullException ("path");
- if (path.Length == 0)
- throw new ArgumentException ("An empty file name is not valid.");
- if (path.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException ("Illegal characters in path.");
- if (Environment.IsRunningOnWindows) {
- int idx = path.IndexOf (':');
- if (idx >= 0 && idx != 1)
- throw new ArgumentException ("path");
- }
- }
- internal MonoIOStat stat;
- internal bool valid;
- }
- }
|