New tests.
[mono.git] / mcs / class / corlib / System.IO / Directory.cs
1 // 
2 // System.IO.Directory.cs 
3 //
4 // Authors:
5 //   Jim Richardson  (develop@wtfo-guru.com)
6 //   Miguel de Icaza (miguel@ximian.com)
7 //   Dan Lewis       (dihlewis@yahoo.co.uk)
8 //   Eduardo Garcia  (kiwnix@yahoo.es)
9 //   Ville Palo      (vi64pa@kolumbus.fi)
10 //
11 // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
12 // Copyright (C) 2002 Ximian, Inc.
13 // 
14 // Created:        Monday, August 13, 2001 
15 //
16 //------------------------------------------------------------------------------
17
18 //
19 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
20 //
21 // Permission is hereby granted, free of charge, to any person obtaining
22 // a copy of this software and associated documentation files (the
23 // "Software"), to deal in the Software without restriction, including
24 // without limitation the rights to use, copy, modify, merge, publish,
25 // distribute, sublicense, and/or sell copies of the Software, and to
26 // permit persons to whom the Software is furnished to do so, subject to
27 // the following conditions:
28 // 
29 // The above copyright notice and this permission notice shall be
30 // included in all copies or substantial portions of the Software.
31 // 
32 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
33 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
34 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
36 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
37 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
38 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39 //
40
41 using System.Collections;
42 using System.Collections.Generic;
43 using System.Security;
44 using System.Security.Permissions;
45 using System.Text;
46 using System.Runtime.InteropServices;
47
48 #if !MOONLIGHT
49 using System.Security.AccessControl;
50 #endif
51
52 namespace System.IO
53 {
54         [ComVisible (true)]
55         public static class Directory
56         {
57
58                 public static DirectoryInfo CreateDirectory (string path)
59                 {
60                         if (path == null)
61                                 throw new ArgumentNullException ("path");
62                         
63                         if (path.Length == 0)
64                                 throw new ArgumentException ("Path is empty");
65                         
66                         if (path.IndexOfAny (Path.InvalidPathChars) != -1)
67                                 throw new ArgumentException ("Path contains invalid chars");
68
69                         if (path.Trim ().Length == 0)
70                                 throw new ArgumentException ("Only blank characters in path");
71
72                         // after validations but before File.Exists to avoid an oracle
73                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
74
75                         if (File.Exists(path))
76                                 throw new IOException ("Cannot create " + path + " because a file with the same name already exists.");
77                         
78                         // LAMESPEC: with .net 1.0 version this throw NotSupportedException and msdn says so too
79                         // but v1.1 throws ArgumentException.
80                         if (Environment.IsRunningOnWindows && path == ":")
81                                 throw new ArgumentException ("Only ':' In path");
82                         
83                         return CreateDirectoriesInternal (path);
84                 }
85
86 #if !MOONLIGHT
87                 [MonoLimitation ("DirectorySecurity not implemented")]
88                 public static DirectoryInfo CreateDirectory (string path, DirectorySecurity directorySecurity)
89                 {
90                         return(CreateDirectory (path));
91                 }
92 #endif
93
94                 static DirectoryInfo CreateDirectoriesInternal (string path)
95                 {
96 #if !MOONLIGHT
97                         if (SecurityManager.SecurityEnabled) {
98                                 new FileIOPermission (FileIOPermissionAccess.Read | FileIOPermissionAccess.Write, path).Demand ();
99                         }
100 #endif
101                         DirectoryInfo info = new DirectoryInfo (path, true);
102                         if (info.Parent != null && !info.Parent.Exists)
103                                  info.Parent.Create ();
104
105                         MonoIOError error;
106                         if (!MonoIO.CreateDirectory (path, out error)) {
107                                 // LAMESPEC: 1.1 and 1.2alpha allow CreateDirectory on a file path.
108                                 // So CreateDirectory ("/tmp/somefile") will succeed if 'somefile' is
109                                 // not a directory. However, 1.0 will throw an exception.
110                                 // We behave like 1.0 here (emulating 1.1-like behavior is just a matter
111                                 // of comparing error to ERROR_FILE_EXISTS, but it's lame to do:
112                                 //    DirectoryInfo di = Directory.CreateDirectory (something);
113                                 // and having di.Exists return false afterwards.
114                                 // I hope we don't break anyone's code, as they should be catching
115                                 // the exception anyway.
116                                 if (error != MonoIOError.ERROR_ALREADY_EXISTS &&
117                                     error != MonoIOError.ERROR_FILE_EXISTS)
118                                         throw MonoIO.GetException (path, error);
119                         }
120
121                         return info;
122                 }
123                 
124                 public static void Delete (string path)
125                 {
126                         Path.Validate (path);
127
128                         if (Environment.IsRunningOnWindows && path == ":")
129                                 throw new NotSupportedException ("Only ':' In path");
130
131                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
132
133                         MonoIOError error;
134                         bool success;
135                         
136                         if (MonoIO.ExistsSymlink (path, out error)) {
137                                 /* RemoveDirectory maps to rmdir()
138                                  * which fails on symlinks (ENOTDIR)
139                                  */
140                                 success = MonoIO.DeleteFile (path, out error);
141                         } else {
142                                 success = MonoIO.RemoveDirectory (path, out error);
143                         }
144                         
145                         if (!success) {
146                                 /*
147                                  * FIXME:
148                                  * In io-layer/io.c rmdir returns error_file_not_found if directory does not exists.
149                                  * So maybe this could be handled somewhere else?
150                                  */
151                                 if (error == MonoIOError.ERROR_FILE_NOT_FOUND) {
152                                         if (File.Exists (path))
153                                                 throw new IOException ("Directory does not exist, but a file of the same name exists.");
154                                         else
155                                                 throw new DirectoryNotFoundException ("Directory does not exist.");
156                                 } else
157                                         throw MonoIO.GetException (path, error);
158                         }
159                 }
160
161                 static void RecursiveDelete (string path)
162                 {
163                         MonoIOError error;
164                         
165                         foreach (string dir in GetDirectories (path)) {
166                                 if (MonoIO.ExistsSymlink (dir, out error)) {
167                                         MonoIO.DeleteFile (dir, out error);
168                                 } else {
169                                         RecursiveDelete (dir);
170                                 }
171                         }
172
173                         foreach (string file in GetFiles (path))
174                                 File.Delete (file);
175
176                         Directory.Delete (path);
177                 }
178                 
179                 public static void Delete (string path, bool recursive)
180                 {
181                         Path.Validate (path);                   
182                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
183
184                         if (recursive)
185                                 RecursiveDelete (path);
186                         else
187                                 Delete (path);
188                 }
189
190                 public static bool Exists (string path)
191                 {
192                         if (path == null)
193                                 return false;
194
195                         // on Moonlight this does not throw but returns false
196                         if (!SecurityManager.CheckElevatedPermissions ())
197                                 return false;
198                                 
199                         MonoIOError error;
200                         bool exists;
201                         
202                         exists = MonoIO.ExistsDirectory (path, out error);
203                         /* This should not throw exceptions */
204                         return exists;
205                 }
206
207                 public static DateTime GetLastAccessTime (string path)
208                 {
209                         return File.GetLastAccessTime (path);
210                 }
211
212                 public static DateTime GetLastAccessTimeUtc (string path)
213                 {
214                         return GetLastAccessTime (path).ToUniversalTime ();
215                 }
216
217                 public static DateTime GetLastWriteTime (string path)
218                 {
219                         return File.GetLastWriteTime (path);
220                 }
221                 
222                 public static DateTime GetLastWriteTimeUtc (string path)
223                 {
224                         return GetLastWriteTime (path).ToUniversalTime ();
225                 }
226
227                 public static DateTime GetCreationTime (string path)
228                 {
229                         return File.GetCreationTime (path);
230                 }
231
232                 public static DateTime GetCreationTimeUtc (string path)
233                 {
234                         return GetCreationTime (path).ToUniversalTime ();
235                 }
236
237                 public static string GetCurrentDirectory ()
238                 {
239                         MonoIOError error;
240
241                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
242                                 
243                         string result = MonoIO.GetCurrentDirectory (out error);
244                         if (error != MonoIOError.ERROR_SUCCESS)
245                                 throw MonoIO.GetException (error);
246 #if !MOONLIGHT
247                         if ((result != null) && (result.Length > 0) && SecurityManager.SecurityEnabled) {
248                                 new FileIOPermission (FileIOPermissionAccess.PathDiscovery, result).Demand ();
249                         }
250 #endif
251                         return result;
252                 }
253                 
254                 public static string [] GetDirectories (string path)
255                 {
256                         return GetDirectories (path, "*");
257                 }
258                 
259                 public static string [] GetDirectories (string path, string searchPattern)
260                 {
261                         return GetFileSystemEntries (path, searchPattern, FileAttributes.Directory, FileAttributes.Directory);
262                 }
263                 
264 #if !MOONLIGHT
265                 public static string [] GetDirectories (string path, string searchPattern, SearchOption searchOption)
266                 {
267                         if (searchOption == SearchOption.TopDirectoryOnly)
268                                 return GetDirectories (path, searchPattern);
269                         ArrayList all = new ArrayList ();
270                         GetDirectoriesRecurse (path, searchPattern, all);
271                         return (string []) all.ToArray (typeof (string));
272                 }
273                 
274                 static void GetDirectoriesRecurse (string path, string searchPattern, ArrayList all)
275                 {
276                         all.AddRange (GetDirectories (path, searchPattern));
277                         foreach (string dir in GetDirectories (path))
278                                 GetDirectoriesRecurse (dir, searchPattern, all);
279                 }
280 #endif
281
282                 public static string GetDirectoryRoot (string path)
283                 {
284                         Path.Validate (path);                   
285                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
286
287                         // FIXME nice hack but that does not work under windows
288                         return new String(Path.DirectorySeparatorChar,1);
289                 }
290                 
291                 public static string [] GetFiles (string path)
292                 {
293                         return GetFiles (path, "*");
294                 }
295                 
296                 public static string [] GetFiles (string path, string searchPattern)
297                 {
298                         return GetFileSystemEntries (path, searchPattern, FileAttributes.Directory, 0);
299                 }
300
301 #if !MOONLIGHT
302                 public static string[] GetFiles (string path, string searchPattern, SearchOption searchOption)
303                 {
304                         if (searchOption == SearchOption.TopDirectoryOnly)
305                                 return GetFiles (path, searchPattern);
306                         ArrayList all = new ArrayList ();
307                         GetFilesRecurse (path, searchPattern, all);
308                         return (string []) all.ToArray (typeof (string));
309                 }
310                 
311                 static void GetFilesRecurse (string path, string searchPattern, ArrayList all)
312                 {
313                         all.AddRange (GetFiles (path, searchPattern));
314                         foreach (string dir in GetDirectories (path))
315                                 GetFilesRecurse (dir, searchPattern, all);
316                 }
317 #endif
318
319                 public static string [] GetFileSystemEntries (string path)
320                 {
321                         return GetFileSystemEntries (path, "*");
322                 }
323
324                 public static string [] GetFileSystemEntries (string path, string searchPattern)
325                 {
326                         return GetFileSystemEntries (path, searchPattern, 0, 0);
327                 }
328                 
329                 public static string[] GetLogicalDrives ()
330                 { 
331                         return Environment.GetLogicalDrives ();
332                 }
333
334                 static bool IsRootDirectory (string path)
335                 {
336                         // Unix
337                         if (Path.DirectorySeparatorChar == '/' && path == "/")
338                                 return true;
339
340                         // Windows
341                         if (Path.DirectorySeparatorChar == '\\')
342                                 if (path.Length == 3 && path.EndsWith (":\\"))
343                                         return true;
344
345                         return false;
346                 }
347
348                 public static DirectoryInfo GetParent (string path)
349                 {
350                         Path.Validate (path);                   
351
352                         // return null if the path is the root directory
353                         if (IsRootDirectory (path))
354                                 return null;
355
356                         string parent_name = Path.GetDirectoryName (path);
357                         if (parent_name.Length == 0)
358                                 parent_name = GetCurrentDirectory();
359
360                         return new DirectoryInfo (parent_name);
361                 }
362
363                 public static void Move (string sourceDirName, string destDirName)
364                 {
365                         if (sourceDirName == null)
366                                 throw new ArgumentNullException ("sourceDirName");
367
368                         if (destDirName == null)
369                                 throw new ArgumentNullException ("destDirName");
370
371                         if (sourceDirName.Trim ().Length == 0 || sourceDirName.IndexOfAny (Path.InvalidPathChars) != -1)
372                                 throw new ArgumentException ("Invalid source directory name: " + sourceDirName, "sourceDirName");
373
374                         if (destDirName.Trim ().Length == 0 || destDirName.IndexOfAny (Path.InvalidPathChars) != -1)
375                                 throw new ArgumentException ("Invalid target directory name: " + destDirName, "destDirName");
376
377                         if (sourceDirName == destDirName)
378                                 throw new IOException ("Source and destination path must be different.");
379
380                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
381
382                         if (Exists (destDirName))
383                                 throw new IOException (destDirName + " already exists.");
384
385                         if (!Exists (sourceDirName) && !File.Exists (sourceDirName))
386                                 throw new DirectoryNotFoundException (sourceDirName + " does not exist");
387
388                         MonoIOError error;
389                         if (!MonoIO.MoveFile (sourceDirName, destDirName, out error))
390                                 throw MonoIO.GetException (error);
391                 }
392
393 #if !MOONLIGHT
394                 public static void SetAccessControl (string path, DirectorySecurity directorySecurity)
395                 {
396                         throw new NotImplementedException ();
397                 }
398 #endif
399
400                 public static void SetCreationTime (string path, DateTime creationTime)
401                 {
402                         File.SetCreationTime (path, creationTime);
403                 }
404
405                 public static void SetCreationTimeUtc (string path, DateTime creationTimeUtc)
406                 {
407                         SetCreationTime (path, creationTimeUtc.ToLocalTime ());
408                 }
409
410                 [SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
411                 public static void SetCurrentDirectory (string path)
412                 {
413                         if (path == null)
414                                 throw new ArgumentNullException ("path");
415                         if (path.Trim ().Length == 0)
416                                 throw new ArgumentException ("path string must not be an empty string or whitespace string");
417
418                         MonoIOError error;
419                                 
420                         if (!Exists (path))
421                                 throw new DirectoryNotFoundException ("Directory \"" +
422                                                                         path + "\" not found.");
423
424                         MonoIO.SetCurrentDirectory (path, out error);
425                         if (error != MonoIOError.ERROR_SUCCESS)
426                                 throw MonoIO.GetException (path, error);
427                 }
428
429                 public static void SetLastAccessTime (string path, DateTime lastAccessTime)
430                 {
431                         File.SetLastAccessTime (path, lastAccessTime);
432                 }
433
434                 public static void SetLastAccessTimeUtc (string path, DateTime lastAccessTimeUtc)
435                 {
436                         SetLastAccessTime (path, lastAccessTimeUtc.ToLocalTime ());
437                 }
438
439                 public static void SetLastWriteTime (string path, DateTime lastWriteTime)
440                 {
441                         File.SetLastWriteTime (path, lastWriteTime);
442                 }
443
444                 public static void SetLastWriteTimeUtc (string path, DateTime lastWriteTimeUtc)
445                 {
446                         SetLastWriteTime (path, lastWriteTimeUtc.ToLocalTime ());
447                 }
448
449                 // private
450                 
451                 // Does the common validation, searchPattern has already been checked for not-null
452                 static string ValidateDirectoryListing (string path, string searchPattern, out bool stop)
453                 {
454                         Path.Validate (path);
455
456                         string wild = Path.Combine (path, searchPattern);
457                         string wildpath = Path.GetDirectoryName (wild);
458                         if (wildpath.IndexOfAny (Path.InvalidPathChars) != -1)
459                                 throw new ArgumentException ("Pattern contains invalid characters", "pattern");
460
461                         MonoIOError error;
462                         if (!MonoIO.ExistsDirectory (wildpath, out error)) {
463                                 if (error == MonoIOError.ERROR_SUCCESS) {
464                                         MonoIOError file_error;
465                                         if (MonoIO.ExistsFile (wildpath, out file_error)) {
466                                                 stop = true;
467                                                 return wildpath;
468                                         }
469                                 }
470
471                                 if (error != MonoIOError.ERROR_PATH_NOT_FOUND)
472                                         throw MonoIO.GetException (wildpath, error);
473
474                                 if (wildpath.IndexOfAny (SearchPattern.WildcardChars) == -1)
475                                         throw new DirectoryNotFoundException ("Directory '" + wildpath + "' not found.");
476
477                                 if (path.IndexOfAny (SearchPattern.WildcardChars) == -1)
478                                         throw new ArgumentException ("Pattern is invalid", "searchPattern");
479
480                                 throw new ArgumentException ("Path is invalid", "path");
481                         }
482
483                         stop = false;
484                         return Path.Combine (wildpath, searchPattern);
485                 }
486                 
487                 private static string [] GetFileSystemEntries (string path, string searchPattern, FileAttributes mask, FileAttributes attrs)
488                 {
489                         if (searchPattern == null)
490                                 throw new ArgumentNullException ("searchPattern");
491                         if (searchPattern.Length == 0)
492                                 return new string [] {};
493                         bool stop;
494                         string path_with_pattern = ValidateDirectoryListing (path, searchPattern, out stop);
495                         if (stop)
496                                 return new string [] { path_with_pattern };
497
498                         MonoIOError error;
499                         string [] result = MonoIO.GetFileSystemEntries (path, path_with_pattern, (int) attrs, (int) mask, out error);
500                         if (error != 0)
501                                 throw MonoIO.GetException (Path.GetDirectoryName (Path.Combine (path, searchPattern)), error);
502                         
503                         return result;
504                 }
505
506 #if NET_4_0 || MOONLIGHT
507                 public static string[] GetFileSystemEntries (string path, string searchPattern, SearchOption searchOption)
508                 {
509                         // Take the simple way home:
510                         return new List<string> (EnumerateFileSystemEntries (path, searchPattern, searchOption)).ToArray ();
511                 }
512
513                 static void EnumerateCheck (string path, string searchPattern, SearchOption searchOption)
514                 {
515                         if (searchPattern == null)
516                                 throw new ArgumentNullException ("searchPattern");
517
518                         if (searchPattern.Length == 0)
519                                 return;
520
521                         if (searchOption != SearchOption.TopDirectoryOnly && searchOption != SearchOption.AllDirectories)
522                                 throw new ArgumentOutOfRangeException ("searchoption");
523
524                         Path.Validate (path);
525                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
526                 }
527
528                 internal static IEnumerable<string> EnumerateKind (string path, string searchPattern, SearchOption searchOption, FileAttributes kind)
529                 {
530                         if (searchPattern.Length == 0)
531                                 yield break;
532
533                         bool stop;
534                         string path_with_pattern = ValidateDirectoryListing (path, searchPattern, out stop);
535                         if (stop){
536                                 yield return path_with_pattern;
537                                 yield break;
538                         }
539                         
540                         IntPtr handle;
541                         MonoIOError error;
542                         FileAttributes rattr;
543                         bool subdirs = searchOption == SearchOption.AllDirectories;
544                         
545                         string s = MonoIO.FindFirst (path, path_with_pattern, out rattr, out error, out handle);
546                         if (s == null)
547                                 yield break;
548                         if (error != 0)
549                                 throw MonoIO.GetException (Path.GetDirectoryName (Path.Combine (path, searchPattern)), (MonoIOError) error);
550
551                         try {
552                                 if (((rattr & FileAttributes.ReparsePoint) == 0) && ((rattr & kind) != 0))
553                                         yield return s;
554                                 
555                                 while ((s = MonoIO.FindNext (handle, out rattr, out error)) != null){
556                                         if ((rattr & FileAttributes.ReparsePoint) != 0)
557                                                 continue;
558                                         if ((rattr & kind) != 0)
559                                                 yield return s;
560                                         
561                                         if (((rattr & FileAttributes.Directory) != 0) && subdirs)
562                                                 foreach (string child in EnumerateKind (s, searchPattern, searchOption, kind))
563                                                         yield return child;
564                                 }
565                         } finally {
566                                 MonoIO.FindClose (handle);
567                         }
568                 }
569
570                 public static IEnumerable<string> EnumerateDirectories (string path, string searchPattern, SearchOption searchOption)
571                 {
572                         EnumerateCheck (path, searchPattern, searchOption);
573                         return EnumerateKind (path, searchPattern, searchOption, FileAttributes.Directory);
574                 }
575                 
576                 public static IEnumerable<string> EnumerateDirectories (string path, string searchPattern)
577                 {
578                         EnumerateCheck (path, searchPattern, SearchOption.TopDirectoryOnly);
579                         return EnumerateKind (path, searchPattern, SearchOption.TopDirectoryOnly, FileAttributes.Directory);
580                 }
581
582                 public static IEnumerable<string> EnumerateDirectories (string path)
583                 {
584                         Path.Validate (path); // no need for EnumerateCheck since we supply valid arguments
585                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
586                         return EnumerateKind (path, "*", SearchOption.TopDirectoryOnly, FileAttributes.Directory);
587                 }
588
589                 public static IEnumerable<string> EnumerateFiles (string path, string searchPattern, SearchOption searchOption)
590                 {
591                         EnumerateCheck (path, searchPattern, searchOption);
592                         return EnumerateKind (path, searchPattern, searchOption, FileAttributes.Normal);
593                 }
594
595                 public static IEnumerable<string> EnumerateFiles (string path, string searchPattern)
596                 {
597                         EnumerateCheck (path, searchPattern, SearchOption.TopDirectoryOnly);
598                         return EnumerateKind (path, searchPattern, SearchOption.TopDirectoryOnly, FileAttributes.Normal);
599                 }
600
601                 public static IEnumerable<string> EnumerateFiles (string path)
602                 {
603                         Path.Validate (path); // no need for EnumerateCheck since we supply valid arguments
604                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
605                         return EnumerateKind (path, "*", SearchOption.TopDirectoryOnly, FileAttributes.Normal);
606                 }
607
608                 public static IEnumerable<string> EnumerateFileSystemEntries (string path, string searchPattern, SearchOption searchOption)
609                 {
610                         EnumerateCheck (path, searchPattern, searchOption);
611                         return EnumerateKind (path, searchPattern, searchOption, FileAttributes.Normal | FileAttributes.Directory);
612                 }
613
614                 public static IEnumerable<string> EnumerateFileSystemEntries (string path, string searchPattern)
615                 {
616                         EnumerateCheck (path, searchPattern, SearchOption.TopDirectoryOnly);
617                         return EnumerateKind (path, searchPattern, SearchOption.TopDirectoryOnly, FileAttributes.Normal | FileAttributes.Directory);
618                 }
619
620                 public static IEnumerable<string> EnumerateFileSystemEntries (string path)
621                 {
622                         Path.Validate (path); // no need for EnumerateCheck since we supply valid arguments
623                         SecurityManager.EnsureElevatedPermissions (); // this is a no-op outside moonlight
624                         return EnumerateKind (path, "*", SearchOption.TopDirectoryOnly, FileAttributes.Normal | FileAttributes.Directory);
625                 }
626                 
627 #endif
628
629 #if !MOONLIGHT
630                 [MonoNotSupported ("DirectorySecurity isn't implemented")]
631                 public static DirectorySecurity GetAccessControl (string path, AccessControlSections includeSections)
632                 {
633                         throw new PlatformNotSupportedException ();
634                 }
635
636                 [MonoNotSupported ("DirectorySecurity isn't implemented")]
637                 public static DirectorySecurity GetAccessControl (string path)
638                 {
639                         throw new PlatformNotSupportedException ();
640                 }
641 #endif
642         }
643 }