| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- //
- // System.IO.FIle.cs
- //
- //
- // Authors:
- // Miguel de Icaza ([email protected])
- // Jim Richardson ([email protected])
- // Dan Lewis ([email protected])
- // Ville Palo ([email protected])
- //
- // Copyright 2002 Ximian, Inc. http://www.ximian.com
- // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
- //
- //
- // Copyright (C) 2004 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;
- using System.Text;
- namespace System.IO
- {
- /// <summary>
- ///
- /// </summary>
- public
- #if NET_2_0
- static
- #else
- sealed
- #endif
- class File
- {
- #if !NET_2_0
- private File () {}
- #endif
-
- public static StreamWriter AppendText (string path)
- {
- return new StreamWriter (path, true);
- }
- [MonoTODO("Security Permision Checks")]
- public static void Copy (string sourceFilename, string destFilename)
- {
- Copy (sourceFilename, destFilename, false);
- }
- public static void Copy (string src, string dest, bool overwrite)
- {
- if (src == null)
- throw new ArgumentNullException ("src");
- if (dest == null)
- throw new ArgumentNullException ("dest");
- if (src.Trim () == "" || src.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException (Locale.GetText ("src is null"));
- if (dest.Trim () == "" || dest.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException (Locale.GetText ("dest is empty or contains invalid characters"));
- if (!Exists (src))
- throw new FileNotFoundException (Locale.GetText ("{0} does not exist", src), src);
- if ((GetAttributes(src) & FileAttributes.Directory) == FileAttributes.Directory){
- throw new ArgumentException(Locale.GetText ("{0} is a directory", src));
- }
-
- if (Exists (dest)) {
- if ((GetAttributes(dest) & FileAttributes.Directory) == FileAttributes.Directory){
- throw new ArgumentException (Locale.GetText ("{0} is a directory", dest));
- }
- if (!overwrite)
- throw new IOException (Locale.GetText ("{0} already exists", dest));
- }
- string DirName = Path.GetDirectoryName(dest);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException (Locale.GetText ("Destination directory not found: {0}",DirName));
- MonoIOError error;
-
- if (!MonoIO.CopyFile (src, dest, overwrite, out error)){
- string p = Locale.GetText ("{0}\" or \"{1}", src, dest);
- throw MonoIO.GetException (p, error);
- }
- }
- public static FileStream Create (string path)
- {
- return Create (path, 8192);
- }
- public static FileStream Create (string path, int buffersize)
- {
- if (null == path)
- throw new ArgumentNullException ("path");
- if (String.Empty == path.Trim() || path.IndexOfAny(Path.InvalidPathChars) >= 0)
- throw new ArgumentException (Locale.GetText ("path is invalid"));
- string DirName = Path.GetDirectoryName(path);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException (Locale.GetText ("Destination directory not found: {0}", DirName));
- if (Exists(path)){
- if ((GetAttributes(path) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly){
- throw new UnauthorizedAccessException (Locale.GetText ("{0} is read-only", path));
- }
- }
- return new FileStream (path, FileMode.Create, FileAccess.ReadWrite,
- FileShare.None, buffersize);
- }
- public static StreamWriter CreateText(string path)
-
- {
- return new StreamWriter (path, false);
-
- }
-
-
-
- public static void Delete (string path)
- {
- if (null == path)
- throw new ArgumentNullException("path");
- if (String.Empty == path.Trim() || path.IndexOfAny(Path.InvalidPathChars) >= 0)
- throw new ArgumentException("path");
- if (Directory.Exists (path))
- throw new UnauthorizedAccessException(Locale.GetText ("{0} is a directory", path));
- string DirName = Path.GetDirectoryName(path);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException (Locale.GetText ("Destination directory not found: {0}", DirName));
- MonoIOError error;
-
- if (!MonoIO.DeleteFile (path, out error)){
- Exception e = MonoIO.GetException (path, error);
- if (! (e is FileNotFoundException))
- throw e;
- }
- }
- public static bool Exists (string path)
- {
- // For security reasons no exceptions are
- // thrown, only false is returned if there is
- // any problem with the path or permissions.
- // Minimizes what information can be
- // discovered by using this method.
- if (null == path || String.Empty == path.Trim()
- || path.IndexOfAny(Path.InvalidPathChars) >= 0) {
- return false;
- }
- MonoIOError error;
- bool exists;
-
- exists = MonoIO.ExistsFile (path, out error);
- if (error != MonoIOError.ERROR_SUCCESS &&
- error != MonoIOError.ERROR_FILE_NOT_FOUND &&
- error != MonoIOError.ERROR_PATH_NOT_FOUND &&
- error != MonoIOError.ERROR_INVALID_NAME) {
- throw MonoIO.GetException (path, error);
- }
-
- return(exists);
- }
- public static FileAttributes GetAttributes (string path)
- {
- if (null == path) {
- throw new ArgumentNullException("path");
- }
-
- if (String.Empty == path.Trim()) {
- throw new ArgumentException (Locale.GetText ("Path is empty"));
- }
- if (path.IndexOfAny(Path.InvalidPathChars) >= 0) {
- throw new ArgumentException(Locale.GetText ("Path contains invalid chars"));
- }
- MonoIOError error;
- FileAttributes attrs;
-
- attrs = MonoIO.GetFileAttributes (path, out error);
- if (error != MonoIOError.ERROR_SUCCESS) {
- throw MonoIO.GetException (path, error);
- }
- return(attrs);
- }
- public static DateTime GetCreationTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.GetFileStat (path, out stat, out error)) {
- #if NET_2_0
- if (error == MonoIOError.ERROR_PATH_NOT_FOUND || error == MonoIOError.ERROR_FILE_NOT_FOUND)
- return _defaultLocalFileTime;
- else
- throw new IOException (path);
- #else
- throw new IOException (path);
- #endif
- }
- return DateTime.FromFileTime (stat.CreationTime);
- }
- public static DateTime GetCreationTimeUtc (string path)
- {
- return GetCreationTime (path).ToUniversalTime ();
- }
- public static DateTime GetLastAccessTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.GetFileStat (path, out stat, out error)) {
- #if NET_2_0
- if (error == MonoIOError.ERROR_PATH_NOT_FOUND || error == MonoIOError.ERROR_FILE_NOT_FOUND)
- return _defaultLocalFileTime;
- else
- throw new IOException (path);
- #else
- throw new IOException (path);
- #endif
- }
- return DateTime.FromFileTime (stat.LastAccessTime);
- }
- public static DateTime GetLastAccessTimeUtc (string path)
- {
- return GetLastAccessTime (path).ToUniversalTime ();
- }
- public static DateTime GetLastWriteTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.GetFileStat (path, out stat, out error)) {
- #if NET_2_0
- if (error == MonoIOError.ERROR_PATH_NOT_FOUND || error == MonoIOError.ERROR_FILE_NOT_FOUND)
- return _defaultLocalFileTime;
- else
- throw new IOException (path);
- #else
- throw new IOException (path);
- #endif
- }
- return DateTime.FromFileTime (stat.LastWriteTime);
- }
- public static DateTime GetLastWriteTimeUtc (string path)
- {
- return GetLastWriteTime (path).ToUniversalTime ();
- }
- public static void Move (string src, string dest)
- {
- MonoIOError error;
- if (src == null)
- throw new ArgumentNullException ("src");
- if (dest == null)
- throw new ArgumentNullException ("dest");
- if (src.Trim () == "" || src.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException ("src");
- if (dest.Trim () == "" || dest.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException ("dest");
- if (!MonoIO.Exists (src, out error))
- throw new FileNotFoundException (Locale.GetText ("{0} does not exist", src), src);
- if (MonoIO.ExistsDirectory (dest, out error))
- throw new IOException (Locale.GetText ("{0} is a directory", dest));
- // Don't check for this error here to allow the runtime to check if src and dest
- // are equal. Comparing src and dest is not enough.
- //if (MonoIO.Exists (dest, out error))
- // throw new IOException (Locale.GetText ("{0} already exists", dest));
- string DirName;
- DirName = Path.GetDirectoryName(src);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException(Locale.GetText ("Source directory not found: {0}", DirName));
- DirName = Path.GetDirectoryName(dest);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException(Locale.GetText ("Destination directory not found: {0}", DirName));
- if (!MonoIO.MoveFile (src, dest, out error)) {
- if (error == MonoIOError.ERROR_ALREADY_EXISTS)
- throw MonoIO.GetException (dest, error);
- throw MonoIO.GetException (error);
- }
- }
-
- public static FileStream Open (string path, FileMode mode)
- {
- return new FileStream (path, mode, mode == FileMode.Append ? FileAccess.Write : FileAccess.ReadWrite, FileShare.None);
- }
-
- public static FileStream Open (string path, FileMode mode, FileAccess access)
- {
- return new FileStream (path, mode, access, FileShare.None);
- }
- public static FileStream Open (string path, FileMode mode, FileAccess access,
- FileShare share)
- {
- return new FileStream (path, mode, access, share);
- }
-
- public static FileStream OpenRead (string path)
- {
- return new FileStream (path, FileMode.Open, FileAccess.Read, FileShare.Read);
- }
- public static StreamReader OpenText (string path)
- {
- return new StreamReader (path);
- }
- public static FileStream OpenWrite (string path)
- {
- return new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
- }
- public static void SetAttributes (string path,
- FileAttributes attributes)
- {
- MonoIOError error;
- CheckPathExceptions (path);
-
- if (!MonoIO.SetFileAttributes (path, attributes,
- out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetCreationTime (string path,
- DateTime creation_time)
- {
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.Exists (path, out error))
- throw MonoIO.GetException (path, error);
-
- if (!MonoIO.SetCreationTime (path, creation_time, out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetCreationTimeUtc (string path,
- DateTime creation_time)
- {
- SetCreationTime (path, creation_time.ToLocalTime ());
- }
- public static void SetLastAccessTime (string path,DateTime last_access_time)
- {
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.Exists (path, out error))
- throw MonoIO.GetException (path, error);
- if (!MonoIO.SetLastAccessTime (path, last_access_time, out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetLastAccessTimeUtc (string path,DateTime last_access_time)
- {
- SetLastAccessTime (path, last_access_time.ToLocalTime ());
- }
- public static void SetLastWriteTime (string path,
- DateTime last_write_time)
- {
- MonoIOError error;
- CheckPathExceptions (path);
- if (!MonoIO.Exists (path, out error))
- throw MonoIO.GetException (path, error);
- if (!MonoIO.SetLastWriteTime (path, last_write_time, out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetLastWriteTimeUtc (string path,
- DateTime last_write_time)
- {
- SetLastWriteTime (path, last_write_time.ToLocalTime ());
- }
- #region Private
- private static void CheckPathExceptions (string path)
- {
- if (path == null)
- throw new System.ArgumentNullException("path");
- if (path == "")
- throw new System.ArgumentException(Locale.GetText ("Path is empty"));
- if (path.Trim().Length == 0)
- throw new ArgumentException (Locale.GetText ("Path is empty"));
- if (path.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException (Locale.GetText ("Path contains invalid chars"));
- }
- #endregion
- #if NET_2_0
- static File() {
- _defaultLocalFileTime = new DateTime (1601, 1, 1);
- _defaultLocalFileTime = _defaultLocalFileTime.ToLocalTime ();
- }
- //
- // The documentation for this method is most likely wrong, it
- // talks about doing a "binary read", but the remarks say
- // that this "detects the encoding".
- //
- // This can not detect and do anything useful with the encoding
- // since the result is a byte [] not a char [].
- //
- public static byte [] ReadAllBytes (string path)
- {
- using (FileStream s = Open (path, FileMode.Open, FileAccess.Read, FileShare.Read)){
- long size = s.Length;
- //
- // Is this worth supporting?
- //
- if (size > Int32.MaxValue)
- throw new ArgumentException ("Reading more than 4gigs with this call is not supported");
-
- byte [] result = new byte [s.Length];
- s.Read (result, 0, (int) size);
- return result;
- }
- }
- public static string ReadAllText (string path)
- {
- return ReadAllText (path, Encoding.UTF8Unmarked);
- }
- public static string ReadAllText (string path, Encoding enc)
- {
- using (StreamReader sr = new StreamReader (path, enc)) {
- return sr.ReadToEnd ();
- }
- }
- public static void WriteAllText (string path, string contents)
- {
- WriteAllText (path, contents, Encoding.UTF8Unmarked);
- }
- public static void WriteAllText (string path, string contents, Encoding enc)
- {
- using (StreamWriter sw = new StreamWriter (path, false, enc)) {
- sw.Write (contents);
- }
- }
- private static readonly DateTime _defaultLocalFileTime;
- #endif
- }
- }
|