New test.
[mono.git] / mcs / class / corlib / System.IO / FileInfo.cs
1 //------------------------------------------------------------------------------
2 // 
3 // System.IO.FileInfo.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 
10 //
11 //------------------------------------------------------------------------------
12
13 //
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
15 //
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.
34 //
35
36 using System;
37
38 namespace System.IO {
39
40         [Serializable]
41         public sealed class FileInfo : FileSystemInfo {
42         
43
44                 private bool exists;
45
46                 public FileInfo (string path) {
47                         CheckPath (path);
48                 
49                         OriginalPath = path;
50                         FullPath = Path.GetFullPath (path);
51                 }
52                 
53                 internal override void InternalRefresh ()
54                 {
55                         exists = File.Exists (FullPath);
56                 }
57
58
59                 // public properties
60
61                 public override bool Exists {
62                         get {
63                                 Refresh (false);
64
65                                 if (stat.Attributes == MonoIO.InvalidFileAttributes)
66                                         return false;
67
68                                 if ((stat.Attributes & FileAttributes.Directory) != 0)
69                                         return false;
70
71                                 return exists;
72                         }
73                 }
74
75                 public override string Name {
76                         get {
77                                 return Path.GetFileName (FullPath);
78                         }
79                 }
80
81 #if NET_2_0
82                 public bool IsReadOnly {
83                         get {
84                                 if (!Exists)
85                                         throw new FileNotFoundException ("Could not find file \"" + OriginalPath + "\".", OriginalPath);
86                                         
87                                 return ((stat.Attributes & FileAttributes.ReadOnly) != 0);
88                         }
89                                 
90                         set {
91                                 if (!Exists)
92                                         throw new FileNotFoundException ("Could not find file \"" + OriginalPath + "\".", OriginalPath);
93                                         
94                                 FileAttributes attrs = File.GetAttributes(FullPath);
95
96                                 if (value) 
97                                         attrs |= FileAttributes.ReadOnly;
98                                 else
99                                         attrs &= ~FileAttributes.ReadOnly;                                      
100
101                                 File.SetAttributes(FullPath, attrs);
102                         }
103                 }
104 #endif
105
106                 public long Length {
107                         get {
108                                 if (!Exists)
109                                         throw new FileNotFoundException ("Could not find file \"" + OriginalPath + "\".", OriginalPath);
110
111                                 return stat.Length;
112                         }
113                 }
114
115                 public string DirectoryName {
116                         get {
117                                 return Path.GetDirectoryName (FullPath);
118                         }
119                 }
120
121                 public DirectoryInfo Directory {
122                         get {
123                                 return new DirectoryInfo (DirectoryName);
124                         }
125                 }
126
127                 // streamreader methods
128
129                 public StreamReader OpenText () {
130                         return new StreamReader (Open (FileMode.Open, FileAccess.Read));
131                 }
132
133                 public StreamWriter CreateText () {
134                         return new StreamWriter (Open (FileMode.Create, FileAccess.Write));
135                 }
136                 
137                 public StreamWriter AppendText () {
138                         return new StreamWriter (Open (FileMode.Append, FileAccess.Write));
139                 }
140
141                 // filestream methods
142
143                 public FileStream Create ()
144                 {
145                         return File.Create (FullPath);
146                 }
147                 
148                 
149                 public FileStream OpenRead () {
150                         return Open (FileMode.Open, FileAccess.Read, FileShare.Read);
151                 }
152
153                 public FileStream OpenWrite () {
154                         return Open (FileMode.OpenOrCreate, FileAccess.Write);
155                 }
156
157                 public FileStream Open (FileMode mode) {
158                         return Open (mode, FileAccess.ReadWrite);
159                 }
160
161                 public FileStream Open (FileMode mode, FileAccess access) {
162                         return Open (mode, access, FileShare.None);
163                 }
164
165                 public FileStream Open (FileMode mode, FileAccess access, FileShare share) {
166                         return new FileStream (FullPath, mode, access, share);
167                 }
168
169                 // file methods
170
171                 public override void Delete () {
172                         MonoIOError error;
173                                                 
174                         if (!MonoIO.Exists (FullPath, out error)) {
175                                 // a weird MS.NET behaviour
176                                 return;
177                         }
178
179                         if (MonoIO.ExistsDirectory (FullPath, out error)) {
180                                 throw new UnauthorizedAccessException ("Access to the path \"" + FullPath + "\" is denied.");
181                         }
182                         
183                         if (!MonoIO.DeleteFile (FullPath, out error)) {
184                                 throw MonoIO.GetException (OriginalPath,
185                                                            error);
186                         }
187                 }
188                 
189                 public void MoveTo (string dest) {
190
191                         if (dest == null)
192                                 throw new ArgumentNullException ();
193
194                         if (dest == Name || dest == FullName)
195                                 return;
196
197                         MonoIOError error;
198                         if (MonoIO.Exists (dest, out error) ||
199                                 MonoIO.ExistsDirectory (dest, out error))
200                                 throw new IOException ();
201                         File.Move (FullPath, dest);
202                         this.FullPath = Path.GetFullPath (dest);
203                 }
204
205                 public FileInfo CopyTo (string path) {
206                         return CopyTo (path, false);
207                 }
208
209                 public FileInfo CopyTo (string path, bool overwrite) {
210                         string dest = Path.GetFullPath (path);
211
212                         if (overwrite && File.Exists (path))
213                                 File.Delete (path);
214
215                         File.Copy (FullPath, dest);
216                 
217                         return new FileInfo (dest);
218                 }
219
220                 public override string ToString () {
221                         return OriginalPath;
222                 }
223         }
224 }