| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- //
- // System.IO.FIle.cs
- //
- //
- // Authors:
- // Miguel de Icaza ([email protected])
- // Jim Richardson ([email protected])
- // Dan Lewis ([email protected])
- //
- // Copyright 2002 Ximian, Inc. http://www.ximian.com
- // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
- //
- using System;
- namespace System.IO
- {
- /// <summary>
- ///
- /// </summary>
- public sealed class File
- {
- private File () {}
-
-
- 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 ("src");
- if (dest.Trim () == "" || dest.IndexOfAny (Path.InvalidPathChars) != -1)
- throw new ArgumentException ("dest");
- if (!Exists (src))
- throw new FileNotFoundException (src + " does not exist");
- if ((GetAttributes(src) & FileAttributes.Directory) == FileAttributes.Directory){
- throw new ArgumentException(src + " is a directory");
- }
-
- if (Exists (dest)) {
- if ((GetAttributes(dest) & FileAttributes.Directory) == FileAttributes.Directory){
- throw new ArgumentException(dest + " is a directory");
- }
- if (!overwrite)
- throw new IOException (dest + " already exists");
- }
- string DirName = Path.GetDirectoryName(dest);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException("Destination directory not found: " + DirName);
- MonoIOError error;
-
- if (!MonoIO.CopyFile (src, dest, overwrite, out error))
- throw MonoIO.GetException (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("path");
- string DirName = Path.GetDirectoryName(path);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException("Destination directory not found: " + DirName);
- if (Exists(path)){
- if ((GetAttributes(path) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly){
- throw new UnauthorizedAccessException(path + " is a read-only");
- }
- }
- 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("path is a directory");
- string DirName = Path.GetDirectoryName(path);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException("Destination directory not found: " + DirName);
- MonoIOError error;
-
- if (!MonoIO.DeleteFile (path, out error)){
- Exception e = MonoIO.GetException (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;
-
- return MonoIO.ExistsFile (path, out error);
- }
- public static FileAttributes GetAttributes (string path)
- {
- if (null == path) {
- throw new ArgumentNullException("path");
- }
-
- if (String.Empty == path.Trim()) {
- throw new ArgumentException("Path is empty");
- }
- if (path.IndexOfAny(Path.InvalidPathChars) >= 0) {
- throw new ArgumentException("Path contains invalid chars");
- }
- MonoIOError error;
-
- return MonoIO.GetFileAttributes (path, out error);
- }
- public static DateTime GetCreationTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
-
- MonoIO.GetFileStat (path, out stat, out error);
- return DateTime.FromFileTime (stat.CreationTime);
- }
- public static DateTime GetLastAccessTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
-
- MonoIO.GetFileStat (path, out stat, out error);
- return DateTime.FromFileTime (stat.LastAccessTime);
- }
- public static DateTime GetLastWriteTime (string path)
- {
- MonoIOStat stat;
- MonoIOError error;
-
- MonoIO.GetFileStat (path, out stat, out error);
- return DateTime.FromFileTime (stat.LastWriteTime);
- }
- public static void Move (string src, string dest)
- {
- 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 (!Exists (src))
- throw new FileNotFoundException (src + " does not exist");
- if (Exists (dest) && ((GetAttributes(dest) & FileAttributes.Directory) == FileAttributes.Directory))
- throw new ArgumentException(dest + " is a directory");
- string DirName;
- DirName = Path.GetDirectoryName(src);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException("Source directory not found: " + DirName);
- DirName = Path.GetDirectoryName(dest);
- if (DirName != String.Empty && !Directory.Exists (DirName))
- throw new DirectoryNotFoundException("Destination directory not found: " + DirName);
- MonoIOError error;
-
- if (!MonoIO.MoveFile (src, dest, out error))
- throw MonoIO.GetException (error);
- }
-
- public static FileStream Open (string path, FileMode mode)
- {
- return new FileStream (path, mode, 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;
-
- if (!MonoIO.SetFileAttributes (path, attributes,
- out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetCreationTime (string path,
- DateTime creation_time)
- {
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (path, creation_time.Ticks,
- -1, -1, out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetLastAccessTime (string path,DateTime last_access_time)
- {
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (path, -1,
- last_access_time.Ticks, -1,
- out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- public static void SetLastWriteTime (string path,
- DateTime last_write_time)
- {
- MonoIOError error;
-
- if (!MonoIO.SetFileTime (path, -1, -1,
- last_write_time.Ticks,
- out error)) {
- throw MonoIO.GetException (path, error);
- }
- }
- }
- }
|