Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.IO.FileSystem.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.IO.FileSystem</name>
5   </assembly>
6   <members>
7     <member name="T:System.IO.Directory">
8       <summary>Exposes static methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited.</summary>
9     </member>
10     <member name="M:System.IO.Directory.CreateDirectory(System.String)">
11       <summary>Creates all directories and subdirectories in the specified path unless they already exist.</summary>
12       <param name="path">The directory to create.</param>
13       <returns>An object that represents the directory at the specified path. This object is returned regardless of whether a directory at the specified path already exists.</returns>
14       <exception cref="T:System.IO.IOException">The directory specified by <paramref name="path" /> is a file.
15 -or-
16 The network name is not known.</exception>
17       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
18       <exception cref="T:System.ArgumentException">
19         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
20 -or-
21 <paramref name="path" /> is prefixed with, or contains, only a colon character (:).</exception>
22       <exception cref="T:System.ArgumentNullException">
23         <paramref name="path" /> is <see langword="null" />.</exception>
24       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
25       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
26       <exception cref="T:System.NotSupportedException">
27         <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\").</exception>
28     </member>
29     <member name="M:System.IO.Directory.Delete(System.String)">
30       <summary>Deletes an empty directory from a specified path.</summary>
31       <param name="path">The name of the empty directory to remove. This directory must be writable and empty.</param>
32       <exception cref="T:System.IO.IOException">A file with the same name and location specified by <paramref name="path" /> exists.
33 -or-
34 The directory is the application's current working directory.
35 -or-
36 The directory specified by <paramref name="path" /> is not empty.
37 -or-
38 The directory is read-only or contains a read-only file.
39 -or-
40 The directory is being used by another process.</exception>
41       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
42       <exception cref="T:System.ArgumentException">
43         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
44       <exception cref="T:System.ArgumentNullException">
45         <paramref name="path" /> is <see langword="null" />.</exception>
46       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
47       <exception cref="T:System.IO.DirectoryNotFoundException">
48         <paramref name="path" /> does not exist or could not be found.
49 -or-
50 The specified path is invalid (for example, it is on an unmapped drive).</exception>
51     </member>
52     <member name="M:System.IO.Directory.Delete(System.String,System.Boolean)">
53       <summary>Deletes the specified directory and, if indicated, any subdirectories and files in the directory.</summary>
54       <param name="path">The name of the directory to remove.</param>
55       <param name="recursive">
56         <see langword="true" /> to remove directories, subdirectories, and files in <paramref name="path" />; otherwise, <see langword="false" />.</param>
57       <exception cref="T:System.IO.IOException">A file with the same name and location specified by <paramref name="path" /> exists.
58 -or-
59 The directory specified by <paramref name="path" /> is read-only, or <paramref name="recursive" /> is <see langword="false" /> and <paramref name="path" /> is not an empty directory.
60 -or-
61 The directory is the application's current working directory.
62 -or-
63 The directory contains a read-only file.
64 -or-
65 The directory is being used by another process.</exception>
66       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
67       <exception cref="T:System.ArgumentException">
68         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
69       <exception cref="T:System.ArgumentNullException">
70         <paramref name="path" /> is <see langword="null" />.</exception>
71       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
72       <exception cref="T:System.IO.DirectoryNotFoundException">
73         <paramref name="path" /> does not exist or could not be found.
74 -or-
75 The specified path is invalid (for example, it is on an unmapped drive).</exception>
76     </member>
77     <member name="M:System.IO.Directory.EnumerateDirectories(System.String)">
78       <summary>Returns an enumerable collection of directory names in a specified path.</summary>
79       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
80       <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path" />.</returns>
81       <exception cref="T:System.ArgumentException">
82         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
83       <exception cref="T:System.ArgumentNullException">
84         <paramref name="path" /> is <see langword="null" />.</exception>
85       <exception cref="T:System.IO.DirectoryNotFoundException">
86         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
87       <exception cref="T:System.IO.IOException">
88         <paramref name="path" /> is a file name.</exception>
89       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
90       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
91       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
92     </member>
93     <member name="M:System.IO.Directory.EnumerateDirectories(System.String,System.String)">
94       <summary>Returns an enumerable collection of directory names that match a search pattern in a specified path.</summary>
95       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
96       <param name="searchPattern">The search string to match against the names of directories in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
97       <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path" /> and that match the specified search pattern.</returns>
98       <exception cref="T:System.ArgumentException">
99         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
100 -or-
101 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
102       <exception cref="T:System.ArgumentNullException">
103         <paramref name="path" /> is <see langword="null" />.
104 -or-
105 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
106       <exception cref="T:System.IO.DirectoryNotFoundException">
107         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
108       <exception cref="T:System.IO.IOException">
109         <paramref name="path" /> is a file name.</exception>
110       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
111       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
112       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
113     </member>
114     <member name="M:System.IO.Directory.EnumerateDirectories(System.String,System.String,System.IO.EnumerationOptions)">
115       <param name="path" />
116       <param name="searchPattern" />
117       <param name="enumerationOptions" />
118     </member>
119     <member name="M:System.IO.Directory.EnumerateDirectories(System.String,System.String,System.IO.SearchOption)">
120       <summary>Returns an enumerable collection of directory names that match a search pattern in a specified path, and optionally searches subdirectories.</summary>
121       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
122       <param name="searchPattern">The search string to match against the names of directories in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
123       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.
124 The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
125       <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path" /> and that match the specified search pattern and option.</returns>
126       <exception cref="T:System.ArgumentException">
127         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
128 -or-
129 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
130       <exception cref="T:System.ArgumentNullException">
131         <paramref name="path" /> is <see langword="null" />.
132 -or-
133 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
134       <exception cref="T:System.ArgumentOutOfRangeException">
135         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
136       <exception cref="T:System.IO.DirectoryNotFoundException">
137         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
138       <exception cref="T:System.IO.IOException">
139         <paramref name="path" /> is a file name.</exception>
140       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
141       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
142       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
143     </member>
144     <member name="M:System.IO.Directory.EnumerateFiles(System.String)">
145       <summary>Returns an enumerable collection of file names in a specified path.</summary>
146       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
147       <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path" />.</returns>
148       <exception cref="T:System.ArgumentException">
149         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
150       <exception cref="T:System.ArgumentNullException">
151         <paramref name="path" /> is <see langword="null" />.</exception>
152       <exception cref="T:System.IO.DirectoryNotFoundException">
153         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
154       <exception cref="T:System.IO.IOException">
155         <paramref name="path" /> is a file name.</exception>
156       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
157       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
158       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
159     </member>
160     <member name="M:System.IO.Directory.EnumerateFiles(System.String,System.String)">
161       <summary>Returns an enumerable collection of file names that match a search pattern in a specified path.</summary>
162       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
163       <param name="searchPattern">The search string to match against the names of files in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
164       <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path" /> and that match the specified search pattern.</returns>
165       <exception cref="T:System.ArgumentException">
166         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
167 -or-
168 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
169       <exception cref="T:System.ArgumentNullException">
170         <paramref name="path" /> is <see langword="null" />.
171 -or-
172 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
173       <exception cref="T:System.IO.DirectoryNotFoundException">
174         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
175       <exception cref="T:System.IO.IOException">
176         <paramref name="path" /> is a file name.</exception>
177       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
178       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
179       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
180     </member>
181     <member name="M:System.IO.Directory.EnumerateFiles(System.String,System.String,System.IO.EnumerationOptions)">
182       <param name="path" />
183       <param name="searchPattern" />
184       <param name="enumerationOptions" />
185     </member>
186     <member name="M:System.IO.Directory.EnumerateFiles(System.String,System.String,System.IO.SearchOption)">
187       <summary>Returns an enumerable collection of file names that match a search pattern in a specified path, and optionally searches subdirectories.</summary>
188       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
189       <param name="searchPattern">The search string to match against the names of files in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
190       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.
191 The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
192       <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path" /> and that match the specified search pattern and option.</returns>
193       <exception cref="T:System.ArgumentException">
194         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
195 -or-
196 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
197       <exception cref="T:System.ArgumentNullException">
198         <paramref name="path" /> is <see langword="null" />.
199 -or-
200 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
201       <exception cref="T:System.ArgumentOutOfRangeException">
202         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
203       <exception cref="T:System.IO.DirectoryNotFoundException">
204         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
205       <exception cref="T:System.IO.IOException">
206         <paramref name="path" /> is a file name.</exception>
207       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
208       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
209       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
210     </member>
211     <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String)">
212       <summary>Returns an enumerable collection of file names and directory names in a specified path.</summary>
213       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
214       <returns>An enumerable collection of file-system entries in the directory specified by <paramref name="path" />.</returns>
215       <exception cref="T:System.ArgumentException">
216         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
217       <exception cref="T:System.ArgumentNullException">
218         <paramref name="path" /> is <see langword="null" />.</exception>
219       <exception cref="T:System.IO.DirectoryNotFoundException">
220         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
221       <exception cref="T:System.IO.IOException">
222         <paramref name="path" /> is a file name.</exception>
223       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
224       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
225       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
226     </member>
227     <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String,System.String)">
228       <summary>Returns an enumerable collection of file names and directory names that  match a search pattern in a specified path.</summary>
229       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
230       <param name="searchPattern">The search string to match against the names of file-system entries in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
231       <returns>An enumerable collection of file-system entries in the directory specified by <paramref name="path" /> and that match the specified search pattern.</returns>
232       <exception cref="T:System.ArgumentException">
233         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
234 -or-
235 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
236       <exception cref="T:System.ArgumentNullException">
237         <paramref name="path" /> is <see langword="null" />.
238 -or-
239 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
240       <exception cref="T:System.IO.DirectoryNotFoundException">
241         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
242       <exception cref="T:System.IO.IOException">
243         <paramref name="path" /> is a file name.</exception>
244       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
245       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
246       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
247     </member>
248     <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String,System.String,System.IO.EnumerationOptions)">
249       <param name="path" />
250       <param name="searchPattern" />
251       <param name="enumerationOptions" />
252     </member>
253     <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
254       <summary>Returns an enumerable collection of file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.</summary>
255       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
256       <param name="searchPattern">The search string to match against file-system entries in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
257       <param name="searchOption">One of the enumeration values  that specifies whether the search operation should include only the current directory or should include all subdirectories.
258 The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
259       <returns>An enumerable collection of file-system entries in the directory specified by <paramref name="path" /> and that match the specified search pattern and option.</returns>
260       <exception cref="T:System.ArgumentException">
261         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
262 -or-
263 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
264       <exception cref="T:System.ArgumentNullException">
265         <paramref name="path" /> is <see langword="null" />.
266 -or-
267 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
268       <exception cref="T:System.ArgumentOutOfRangeException">
269         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
270       <exception cref="T:System.IO.DirectoryNotFoundException">
271         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
272       <exception cref="T:System.IO.IOException">
273         <paramref name="path" /> is a file name.</exception>
274       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
275       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
276       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
277     </member>
278     <member name="M:System.IO.Directory.Exists(System.String)">
279       <summary>Determines whether the given path refers to an existing directory on disk.</summary>
280       <param name="path">The path to test.</param>
281       <returns>
282         <see langword="true" /> if <paramref name="path" /> refers to an existing directory; <see langword="false" /> if the directory does not exist or an error occurs when trying to determine if the specified directory exists.</returns>
283     </member>
284     <member name="M:System.IO.Directory.GetCreationTime(System.String)">
285       <summary>Gets the creation date and time of a directory.</summary>
286       <param name="path">The path of the directory.</param>
287       <returns>A structure that is set to the creation date and time for the specified directory. This value is expressed in local time.</returns>
288       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
289       <exception cref="T:System.ArgumentException">
290         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
291       <exception cref="T:System.ArgumentNullException">
292         <paramref name="path" /> is <see langword="null" />.</exception>
293       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
294     </member>
295     <member name="M:System.IO.Directory.GetCreationTimeUtc(System.String)">
296       <summary>Gets the creation date and time, in Coordinated Universal Time (UTC) format, of a directory.</summary>
297       <param name="path">The path of the directory.</param>
298       <returns>A structure that is set to the creation date and time for the specified directory. This value is expressed in UTC time.</returns>
299       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
300       <exception cref="T:System.ArgumentException">
301         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
302       <exception cref="T:System.ArgumentNullException">
303         <paramref name="path" /> is <see langword="null" />.</exception>
304       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
305     </member>
306     <member name="M:System.IO.Directory.GetCurrentDirectory">
307       <summary>Gets the current working directory of the application.</summary>
308       <returns>A string that contains the absolute path of the current working directory, and does not end with a backslash (\).</returns>
309       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
310       <exception cref="T:System.NotSupportedException">The operating system is Windows CE, which does not have current directory functionality.
311 This method is available in the .NET Compact Framework, but is not currently supported.</exception>
312     </member>
313     <member name="M:System.IO.Directory.GetDirectories(System.String)">
314       <summary>Returns the names of subdirectories (including their paths) in the specified directory.</summary>
315       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
316       <returns>An array of the full names (including paths) of subdirectories in the specified path, or an empty array if no directories are found.</returns>
317       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
318       <exception cref="T:System.ArgumentException">
319         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
320       <exception cref="T:System.ArgumentNullException">
321         <paramref name="path" /> is <see langword="null" />.</exception>
322       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
323       <exception cref="T:System.IO.IOException">
324         <paramref name="path" /> is a file name.</exception>
325       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
326     </member>
327     <member name="M:System.IO.Directory.GetDirectories(System.String,System.String)">
328       <summary>Returns the names of subdirectories (including their paths) that match the specified search pattern in the specified directory.</summary>
329       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
330       <param name="searchPattern">The search string to match against the names of subdirectories in <paramref name="path" />. This parameter can contain a combination of valid literal and wildcard characters, but it doesn't support regular expressions.</param>
331       <returns>An array of the full names (including paths) of the subdirectories that match the search pattern in the specified directory, or an empty array if no directories are found.</returns>
332       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
333       <exception cref="T:System.ArgumentException">
334         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using <see cref="M:System.IO.Path.GetInvalidPathChars" />.
335 -or-
336 <paramref name="searchPattern" /> doesn't contain a valid pattern.</exception>
337       <exception cref="T:System.ArgumentNullException">
338         <paramref name="path" /> or <paramref name="searchPattern" /> is <see langword="null" />.</exception>
339       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
340       <exception cref="T:System.IO.IOException">
341         <paramref name="path" /> is a file name.</exception>
342       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
343     </member>
344     <member name="M:System.IO.Directory.GetDirectories(System.String,System.String,System.IO.EnumerationOptions)">
345       <param name="path" />
346       <param name="searchPattern" />
347       <param name="enumerationOptions" />
348     </member>
349     <member name="M:System.IO.Directory.GetDirectories(System.String,System.String,System.IO.SearchOption)">
350       <summary>Returns the names of the subdirectories (including their paths) that match the specified search pattern in the specified directory, and optionally searches subdirectories.</summary>
351       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
352       <param name="searchPattern">The search string to match against the names of subdirectories in <paramref name="path" />. This parameter can contain a combination of valid literal and wildcard characters, but it doesn't support regular expressions.</param>
353       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include all subdirectories or only the current directory.</param>
354       <returns>An array of the full names (including paths) of the subdirectories that match the specified criteria, or an empty array if no directories are found.</returns>
355       <exception cref="T:System.ArgumentException">
356         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
357 -or-
358 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
359       <exception cref="T:System.ArgumentNullException">
360         <paramref name="path" /> or <paramref name="searchPattern" /> is <see langword="null" />.</exception>
361       <exception cref="T:System.ArgumentOutOfRangeException">
362         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
363       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
364       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
365       <exception cref="T:System.IO.IOException">
366         <paramref name="path" /> is a file name.</exception>
367       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
368     </member>
369     <member name="M:System.IO.Directory.GetDirectoryRoot(System.String)">
370       <summary>Returns the volume information, root information, or both for the specified path.</summary>
371       <param name="path">The path of a file or directory.</param>
372       <returns>A string that contains the volume information, root information, or both for the specified path.</returns>
373       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
374       <exception cref="T:System.ArgumentException">
375         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
376       <exception cref="T:System.ArgumentNullException">
377         <paramref name="path" /> is <see langword="null" />.</exception>
378       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
379     </member>
380     <member name="M:System.IO.Directory.GetFiles(System.String)">
381       <summary>Returns the names of files (including their paths) in the specified directory.</summary>
382       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
383       <returns>An array of the full names (including paths) for the files in the specified directory, or an empty array if no files are found.</returns>
384       <exception cref="T:System.IO.IOException">
385         <paramref name="path" /> is a file name.
386 -or-
387 A network error has occurred.</exception>
388       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
389       <exception cref="T:System.ArgumentException">
390         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
391       <exception cref="T:System.ArgumentNullException">
392         <paramref name="path" /> is <see langword="null" />.</exception>
393       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
394       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is not found or is invalid (for example, it is on an unmapped drive).</exception>
395     </member>
396     <member name="M:System.IO.Directory.GetFiles(System.String,System.String)">
397       <summary>Returns the names of files (including their paths) that match the specified search pattern in the specified directory.</summary>
398       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
399       <param name="searchPattern">The search string to match against the names of files in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
400       <returns>An array of the full names (including paths) for the files in the specified directory that match the specified search pattern, or an empty array if no files are found.</returns>
401       <exception cref="T:System.IO.IOException">
402         <paramref name="path" /> is a file name.
403 -or-
404 A network error has occurred.</exception>
405       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
406       <exception cref="T:System.ArgumentException">
407         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using <see cref="M:System.IO.Path.GetInvalidPathChars" />.
408 -or-
409 <paramref name="searchPattern" /> doesn't contain a valid pattern.</exception>
410       <exception cref="T:System.ArgumentNullException">
411         <paramref name="path" /> or <paramref name="searchPattern" /> is <see langword="null" />.</exception>
412       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
413       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is not found or is invalid (for example, it is on an unmapped drive).</exception>
414     </member>
415     <member name="M:System.IO.Directory.GetFiles(System.String,System.String,System.IO.EnumerationOptions)">
416       <param name="path" />
417       <param name="searchPattern" />
418       <param name="enumerationOptions" />
419     </member>
420     <member name="M:System.IO.Directory.GetFiles(System.String,System.String,System.IO.SearchOption)">
421       <summary>Returns the names of files (including their paths) that match the specified search pattern in the specified directory, using a value to determine whether to search subdirectories.</summary>
422       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
423       <param name="searchPattern">The search string to match against the names of files in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
424       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include all subdirectories or only the current directory.</param>
425       <returns>An array of the full names (including paths) for the files in the specified directory that match the specified search pattern and option, or an empty array if no files are found.</returns>
426       <exception cref="T:System.ArgumentException">
427         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
428 -or-
429 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
430       <exception cref="T:System.ArgumentNullException">
431         <paramref name="path" /> or <paramref name="searchpattern" /> is <see langword="null" />.</exception>
432       <exception cref="T:System.ArgumentOutOfRangeException">
433         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
434       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
435       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is not found or is invalid (for example, it is on an unmapped drive).</exception>
436       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
437       <exception cref="T:System.IO.IOException">
438         <paramref name="path" /> is a file name.
439 -or-
440 A network error has occurred.</exception>
441     </member>
442     <member name="M:System.IO.Directory.GetFileSystemEntries(System.String)">
443       <summary>Returns the names of all files and subdirectories in a specified path.</summary>
444       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
445       <returns>An array of the names of files and subdirectories in the specified directory, or an empty array if no files or subdirectories are found.</returns>
446       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
447       <exception cref="T:System.ArgumentException">
448         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
449       <exception cref="T:System.ArgumentNullException">
450         <paramref name="path" /> is <see langword="null" />.</exception>
451       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
452       <exception cref="T:System.IO.IOException">
453         <paramref name="path" /> is a file name.</exception>
454       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
455     </member>
456     <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String)">
457       <summary>Returns an array of file names and directory names that match a search pattern in a specified path.</summary>
458       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
459       <param name="searchPattern">The search string to match against the names of file and directories in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
460       <returns>An array of file names and directory names that match the specified search criteria, or an empty array if no files or directories are found.</returns>
461       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
462       <exception cref="T:System.ArgumentException">
463         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
464 -or-
465 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
466       <exception cref="T:System.ArgumentNullException">
467         <paramref name="path" /> or <paramref name="searchPattern" /> is <see langword="null" />.</exception>
468       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
469       <exception cref="T:System.IO.IOException">
470         <paramref name="path" /> is a file name.</exception>
471       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
472     </member>
473     <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String,System.IO.EnumerationOptions)">
474       <param name="path" />
475       <param name="searchPattern" />
476       <param name="enumerationOptions" />
477     </member>
478     <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
479       <summary>Returns an array of all the file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.</summary>
480       <param name="path">The relative or absolute path to the directory to search. This string is not case-sensitive.</param>
481       <param name="searchPattern">The search string to match against the names of files and directories in <paramref name="path" />.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
482       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.
483 The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
484       <returns>An array of file the file names and directory names that match the specified search criteria, or an empty array if no files or directories are found.</returns>
485       <exception cref="T:System.ArgumentException">
486         <paramref name="path" /> is a zero-length string, contains only white space, or contains invalid characters. You can query for invalid characters by using the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.
487 -or-
488 <paramref name="searchPattern" /> does not contain a valid pattern.</exception>
489       <exception cref="T:System.ArgumentNullException">
490         <paramref name="path" /> is <see langword="null" />.
491 -or-
492 <paramref name="searchPattern" /> is <see langword="null" />.</exception>
493       <exception cref="T:System.ArgumentOutOfRangeException">
494         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
495       <exception cref="T:System.IO.DirectoryNotFoundException">
496         <paramref name="path" /> is invalid, such as referring to an unmapped drive.</exception>
497       <exception cref="T:System.IO.IOException">
498         <paramref name="path" /> is a file name.</exception>
499       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or combined exceed the system-defined maximum length.</exception>
500       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
501       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
502     </member>
503     <member name="M:System.IO.Directory.GetLastAccessTime(System.String)">
504       <summary>Returns the date and time the specified file or directory was last accessed.</summary>
505       <param name="path">The file or directory for which to obtain access date and time information.</param>
506       <returns>A structure that is set to the date and time the specified file or directory was last accessed. This value is expressed in local time.</returns>
507       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
508       <exception cref="T:System.ArgumentException">
509         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
510       <exception cref="T:System.ArgumentNullException">
511         <paramref name="path" /> is <see langword="null" />.</exception>
512       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
513       <exception cref="T:System.NotSupportedException">The <paramref name="path" /> parameter is in an invalid format.</exception>
514     </member>
515     <member name="M:System.IO.Directory.GetLastAccessTimeUtc(System.String)">
516       <summary>Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.</summary>
517       <param name="path">The file or directory for which to obtain access date and time information.</param>
518       <returns>A structure that is set to the date and time the specified file or directory was last accessed. This value is expressed in UTC time.</returns>
519       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
520       <exception cref="T:System.ArgumentException">
521         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
522       <exception cref="T:System.ArgumentNullException">
523         <paramref name="path" /> is <see langword="null" />.</exception>
524       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
525       <exception cref="T:System.NotSupportedException">The <paramref name="path" /> parameter is in an invalid format.</exception>
526     </member>
527     <member name="M:System.IO.Directory.GetLastWriteTime(System.String)">
528       <summary>Returns the date and time the specified file or directory was last written to.</summary>
529       <param name="path">The file or directory for which to obtain modification date and time information.</param>
530       <returns>A structure that is set to the date and time the specified file or directory was last written to. This value is expressed in local time.</returns>
531       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
532       <exception cref="T:System.ArgumentException">
533         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
534       <exception cref="T:System.ArgumentNullException">
535         <paramref name="path" /> is <see langword="null" />.</exception>
536       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
537     </member>
538     <member name="M:System.IO.Directory.GetLastWriteTimeUtc(System.String)">
539       <summary>Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last written to.</summary>
540       <param name="path">The file or directory for which to obtain modification date and time information.</param>
541       <returns>A structure that is set to the date and time the specified file or directory was last written to. This value is expressed in UTC time.</returns>
542       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
543       <exception cref="T:System.ArgumentException">
544         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
545       <exception cref="T:System.ArgumentNullException">
546         <paramref name="path" /> is <see langword="null" />.</exception>
547       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
548     </member>
549     <member name="M:System.IO.Directory.GetLogicalDrives">
550       <summary>Retrieves the names of the logical drives on this computer in the form "&lt;drive letter&gt;:\".</summary>
551       <returns>The logical drives on this computer.</returns>
552       <exception cref="T:System.IO.IOException">An I/O error occurred (for example, a disk error).</exception>
553       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
554     </member>
555     <member name="M:System.IO.Directory.GetParent(System.String)">
556       <summary>Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
557       <param name="path">The path for which to retrieve the parent directory.</param>
558       <returns>The parent directory, or <see langword="null" /> if <paramref name="path" /> is the root directory, including the root of a UNC server or share name.</returns>
559       <exception cref="T:System.IO.IOException">The directory specified by <paramref name="path" /> is read-only.</exception>
560       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
561       <exception cref="T:System.ArgumentException">
562         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
563       <exception cref="T:System.ArgumentNullException">
564         <paramref name="path" /> is <see langword="null" />.</exception>
565       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length. For more information, see the <see cref="T:System.IO.PathTooLongException" /> topic.</exception>
566       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path was not found.</exception>
567       <exception cref="T:System.NotSupportedException">
568         <paramref name="path" /> is in an invalid format.</exception>
569       <exception cref="T:System.Security.SecurityException">.NET Framework only: The caller does not have the required permissions.</exception>
570     </member>
571     <member name="M:System.IO.Directory.Move(System.String,System.String)">
572       <summary>Moves a file or a directory and its contents to a new location.</summary>
573       <param name="sourceDirName">The path of the file or directory to move.</param>
574       <param name="destDirName">The path to the new location for <paramref name="sourceDirName" />. If <paramref name="sourceDirName" /> is a file, then <paramref name="destDirName" /> must also be a file name.</param>
575       <exception cref="T:System.IO.IOException">An attempt was made to move a directory to a different volume.
576 -or-
577 <paramref name="destDirName" /> already exists. See the Note in the Remarks section.
578 -or-
579 The <paramref name="sourceDirName" /> and <paramref name="destDirName" /> parameters refer to the same file or directory.
580 -or-
581 The directory or a file within it is being used by another process.</exception>
582       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
583       <exception cref="T:System.ArgumentException">
584         <paramref name="sourceDirName" /> or <paramref name="destDirName" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
585       <exception cref="T:System.ArgumentNullException">
586         <paramref name="sourceDirName" /> or <paramref name="destDirName" /> is <see langword="null" />.</exception>
587       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
588       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified by <paramref name="sourceDirName" /> is invalid (for example, it is on an unmapped drive).</exception>
589     </member>
590     <member name="M:System.IO.Directory.SetCreationTime(System.String,System.DateTime)">
591       <summary>Sets the creation date and time for the specified file or directory.</summary>
592       <param name="path">The file or directory for which to set the creation date and time information.</param>
593       <param name="creationTime">The date and time the file or directory was last written to. This value is expressed in local time.</param>
594       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
595       <exception cref="T:System.ArgumentException">
596         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
597       <exception cref="T:System.ArgumentNullException">
598         <paramref name="path" /> is <see langword="null" />.</exception>
599       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
600       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
601       <exception cref="T:System.ArgumentOutOfRangeException">
602         <paramref name="creationTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
603       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
604     </member>
605     <member name="M:System.IO.Directory.SetCreationTimeUtc(System.String,System.DateTime)">
606       <summary>Sets the creation date and time, in Coordinated Universal Time (UTC) format, for the specified file or directory.</summary>
607       <param name="path">The file or directory for which to set the creation date and time information.</param>
608       <param name="creationTimeUtc">The date and time the directory or file was created. This value is expressed in local time.</param>
609       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
610       <exception cref="T:System.ArgumentException">
611         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
612       <exception cref="T:System.ArgumentNullException">
613         <paramref name="path" /> is <see langword="null" />.</exception>
614       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
615       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
616       <exception cref="T:System.ArgumentOutOfRangeException">
617         <paramref name="creationTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
618       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
619     </member>
620     <member name="M:System.IO.Directory.SetCurrentDirectory(System.String)">
621       <summary>Sets the application's current working directory to the specified directory.</summary>
622       <param name="path">The path to which the current working directory is set.</param>
623       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
624       <exception cref="T:System.ArgumentException">
625         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
626       <exception cref="T:System.ArgumentNullException">
627         <paramref name="path" /> is <see langword="null" />.</exception>
628       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
629       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to access unmanaged code.</exception>
630       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
631       <exception cref="T:System.IO.DirectoryNotFoundException">The specified directory was not found.</exception>
632     </member>
633     <member name="M:System.IO.Directory.SetLastAccessTime(System.String,System.DateTime)">
634       <summary>Sets the date and time the specified file or directory was last accessed.</summary>
635       <param name="path">The file or directory for which to set the access date and time information.</param>
636       <param name="lastAccessTime">An object that contains the value to set for the access date and time of <paramref name="path" />. This value is expressed in local time.</param>
637       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
638       <exception cref="T:System.ArgumentException">
639         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
640       <exception cref="T:System.ArgumentNullException">
641         <paramref name="path" /> is <see langword="null" />.</exception>
642       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
643       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
644       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
645       <exception cref="T:System.ArgumentOutOfRangeException">
646         <paramref name="lastAccessTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
647     </member>
648     <member name="M:System.IO.Directory.SetLastAccessTimeUtc(System.String,System.DateTime)">
649       <summary>Sets the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.</summary>
650       <param name="path">The file or directory for which to set the access date and time information.</param>
651       <param name="lastAccessTimeUtc">An object that  contains the value to set for the access date and time of <paramref name="path" />. This value is expressed in UTC time.</param>
652       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
653       <exception cref="T:System.ArgumentException">
654         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
655       <exception cref="T:System.ArgumentNullException">
656         <paramref name="path" /> is <see langword="null" />.</exception>
657       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
658       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
659       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
660       <exception cref="T:System.ArgumentOutOfRangeException">
661         <paramref name="lastAccessTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
662     </member>
663     <member name="M:System.IO.Directory.SetLastWriteTime(System.String,System.DateTime)">
664       <summary>Sets the date and time a directory was last written to.</summary>
665       <param name="path">The path of the directory.</param>
666       <param name="lastWriteTime">The date and time the directory was last written to. This value is expressed in local time.</param>
667       <exception cref="T:System.IO.FileNotFoundException">
668         <paramref name="path" /> was not found (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
669       <exception cref="T:System.IO.DirectoryNotFoundException">
670         <paramref name="path" /> was not found (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
671       <exception cref="T:System.ArgumentException">
672         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
673       <exception cref="T:System.ArgumentNullException">
674         <paramref name="path" /> is <see langword="null" />.</exception>
675       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
676       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
677       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
678       <exception cref="T:System.ArgumentOutOfRangeException">
679         <paramref name="lastWriteTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
680     </member>
681     <member name="M:System.IO.Directory.SetLastWriteTimeUtc(System.String,System.DateTime)">
682       <summary>Sets the date and time, in Coordinated Universal Time (UTC) format, that a directory was last written to.</summary>
683       <param name="path">The path of the directory.</param>
684       <param name="lastWriteTimeUtc">The date and time the directory was last written to. This value is expressed in UTC time.</param>
685       <exception cref="T:System.IO.FileNotFoundException">
686         <paramref name="path" /> was not found (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
687       <exception cref="T:System.IO.DirectoryNotFoundException">
688         <paramref name="path" /> was not found (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
689       <exception cref="T:System.ArgumentException">
690         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters with the  <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
691       <exception cref="T:System.ArgumentNullException">
692         <paramref name="path" /> is <see langword="null" />.</exception>
693       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
694       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
695       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
696       <exception cref="T:System.ArgumentOutOfRangeException">
697         <paramref name="lastWriteTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
698     </member>
699     <member name="T:System.IO.DirectoryInfo">
700       <summary>Exposes instance methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited.</summary>
701     </member>
702     <member name="M:System.IO.DirectoryInfo.#ctor(System.String)">
703       <summary>Initializes a new instance of the <see cref="T:System.IO.DirectoryInfo" /> class on the specified path.</summary>
704       <param name="path">A string specifying the path on which to create the <see langword="DirectoryInfo" />.</param>
705       <exception cref="T:System.ArgumentNullException">
706         <paramref name="path" /> is <see langword="null" />.</exception>
707       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
708       <exception cref="T:System.ArgumentException">
709         <paramref name="path" /> contains invalid characters such as ", &lt;, &gt;, or |.</exception>
710       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
711     </member>
712     <member name="M:System.IO.DirectoryInfo.Create">
713       <summary>Creates a directory.</summary>
714       <exception cref="T:System.IO.IOException">The directory cannot be created.</exception>
715     </member>
716     <member name="M:System.IO.DirectoryInfo.CreateSubdirectory(System.String)">
717       <summary>Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:System.IO.DirectoryInfo" /> class.</summary>
718       <param name="path">The specified path. This cannot be a different disk volume or Universal Naming Convention (UNC) name.</param>
719       <returns>The last directory specified in <paramref name="path" />.</returns>
720       <exception cref="T:System.ArgumentException">
721         <paramref name="path" /> does not specify a valid file path or contains invalid <see langword="DirectoryInfo" /> characters.</exception>
722       <exception cref="T:System.ArgumentNullException">
723         <paramref name="path" /> is <see langword="null" />.</exception>
724       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
725       <exception cref="T:System.IO.IOException">The subdirectory cannot be created.
726 -or-
727 A file or directory already has the name specified by <paramref name="path" />.</exception>
728       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
729       <exception cref="T:System.Security.SecurityException">The caller does not have code access permission to create the directory.
730 -or-
731 The caller does not have code access permission to read the directory described by the returned <see cref="T:System.IO.DirectoryInfo" /> object.  This can occur when the <paramref name="path" /> parameter describes an existing directory.</exception>
732       <exception cref="T:System.NotSupportedException">
733         <paramref name="path" /> contains a colon character (:) that is not part of a drive label ("C:\").</exception>
734     </member>
735     <member name="M:System.IO.DirectoryInfo.Delete">
736       <summary>Deletes this <see cref="T:System.IO.DirectoryInfo" /> if it is empty.</summary>
737       <exception cref="T:System.UnauthorizedAccessException">The directory contains a read-only file.</exception>
738       <exception cref="T:System.IO.DirectoryNotFoundException">The directory described by this <see cref="T:System.IO.DirectoryInfo" /> object does not exist or could not be found.</exception>
739       <exception cref="T:System.IO.IOException">The directory is not empty.
740 -or-
741 The directory is the application's current working directory.
742 -or-
743 There is an open handle on the directory, and the operating system is Windows XP or earlier. This open handle can result from enumerating directories. For more information, see How to: Enumerate Directories and Files.</exception>
744       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
745     </member>
746     <member name="M:System.IO.DirectoryInfo.Delete(System.Boolean)">
747       <summary>Deletes this instance of a <see cref="T:System.IO.DirectoryInfo" />, specifying whether to delete subdirectories and files.</summary>
748       <param name="recursive">
749         <see langword="true" /> to delete this directory, its subdirectories, and all files; otherwise, <see langword="false" />.</param>
750       <exception cref="T:System.UnauthorizedAccessException">The directory contains a read-only file.</exception>
751       <exception cref="T:System.IO.DirectoryNotFoundException">The directory described by this <see cref="T:System.IO.DirectoryInfo" /> object does not exist or could not be found.</exception>
752       <exception cref="T:System.IO.IOException">The directory is read-only.
753 -or-
754 The directory contains one or more files or subdirectories and <paramref name="recursive" /> is <see langword="false" />.
755 -or-
756 The directory is the application's current working directory.
757 -or-
758 There is an open handle on the directory or on one of its files, and the operating system is Windows XP or earlier. This open handle can result from enumerating directories and files. For more information, see How to: Enumerate Directories and Files.</exception>
759       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
760     </member>
761     <member name="M:System.IO.DirectoryInfo.EnumerateDirectories">
762       <summary>Returns an enumerable collection of directory information in the current directory.</summary>
763       <returns>An enumerable collection of directories in the current directory.</returns>
764       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
765       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
766     </member>
767     <member name="M:System.IO.DirectoryInfo.EnumerateDirectories(System.String)">
768       <summary>Returns an enumerable collection of directory information that matches a specified search pattern.</summary>
769       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
770       <returns>An enumerable collection of directories that matches <paramref name="searchPattern" />.</returns>
771       <exception cref="T:System.ArgumentNullException">
772         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
773       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
774       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
775     </member>
776     <member name="M:System.IO.DirectoryInfo.EnumerateDirectories(System.String,System.IO.EnumerationOptions)">
777       <param name="searchPattern" />
778       <param name="enumerationOptions" />
779     </member>
780     <member name="M:System.IO.DirectoryInfo.EnumerateDirectories(System.String,System.IO.SearchOption)">
781       <summary>Returns an enumerable collection of directory information that matches a specified search pattern and search subdirectory option.</summary>
782       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
783       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories. The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
784       <returns>An enumerable collection of directories that matches <paramref name="searchPattern" /> and <paramref name="searchOption" />.</returns>
785       <exception cref="T:System.ArgumentNullException">
786         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
787       <exception cref="T:System.ArgumentOutOfRangeException">
788         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
789       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
790       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
791     </member>
792     <member name="M:System.IO.DirectoryInfo.EnumerateFiles">
793       <summary>Returns an enumerable collection of file information in the current directory.</summary>
794       <returns>An enumerable collection of the files in the current directory.</returns>
795       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
796       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
797     </member>
798     <member name="M:System.IO.DirectoryInfo.EnumerateFiles(System.String)">
799       <summary>Returns an enumerable collection of file information that matches a search pattern.</summary>
800       <param name="searchPattern">The search string to match against the names of files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
801       <returns>An enumerable collection of files that matches <paramref name="searchPattern" />.</returns>
802       <exception cref="T:System.ArgumentNullException">
803         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
804       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid, (for example, it is on an unmapped drive).</exception>
805       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
806     </member>
807     <member name="M:System.IO.DirectoryInfo.EnumerateFiles(System.String,System.IO.EnumerationOptions)">
808       <param name="searchPattern" />
809       <param name="enumerationOptions" />
810     </member>
811     <member name="M:System.IO.DirectoryInfo.EnumerateFiles(System.String,System.IO.SearchOption)">
812       <summary>Returns an enumerable collection of file information that matches a specified search pattern and search subdirectory option.</summary>
813       <param name="searchPattern">The search string to match against the names of files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
814       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories. The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
815       <returns>An enumerable collection of files that matches <paramref name="searchPattern" /> and <paramref name="searchOption" />.</returns>
816       <exception cref="T:System.ArgumentNullException">
817         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
818       <exception cref="T:System.ArgumentOutOfRangeException">
819         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
820       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
821       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
822     </member>
823     <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos">
824       <summary>Returns an enumerable collection of file system information in the current directory.</summary>
825       <returns>An enumerable collection of file system information in the current directory.</returns>
826       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
827       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
828     </member>
829     <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos(System.String)">
830       <summary>Returns an enumerable collection of file system information that matches a specified search pattern.</summary>
831       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
832       <returns>An enumerable collection of file system information objects that matches <paramref name="searchPattern" />.</returns>
833       <exception cref="T:System.ArgumentNullException">
834         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
835       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
836       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
837     </member>
838     <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos(System.String,System.IO.EnumerationOptions)">
839       <param name="searchPattern" />
840       <param name="enumerationOptions" />
841     </member>
842     <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos(System.String,System.IO.SearchOption)">
843       <summary>Returns an enumerable collection of file system information that matches a specified search pattern and search subdirectory option.</summary>
844       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
845       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories. The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
846       <returns>An enumerable collection of file system information objects that matches <paramref name="searchPattern" /> and <paramref name="searchOption" />.</returns>
847       <exception cref="T:System.ArgumentNullException">
848         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
849       <exception cref="T:System.ArgumentOutOfRangeException">
850         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
851       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
852       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
853     </member>
854     <member name="P:System.IO.DirectoryInfo.Exists">
855       <summary>Gets a value indicating whether the directory exists.</summary>
856       <returns>
857         <see langword="true" /> if the directory exists; otherwise, <see langword="false" />.</returns>
858     </member>
859     <member name="M:System.IO.DirectoryInfo.GetDirectories">
860       <summary>Returns the subdirectories of the current directory.</summary>
861       <returns>An array of <see cref="T:System.IO.DirectoryInfo" /> objects.</returns>
862       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see cref="T:System.IO.DirectoryInfo" /> object is invalid, such as being on an unmapped drive.</exception>
863       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
864       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
865     </member>
866     <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String)">
867       <summary>Returns an array of directories in the current <see cref="T:System.IO.DirectoryInfo" /> matching the given search criteria.</summary>
868       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
869       <returns>An array of type <see langword="DirectoryInfo" /> matching <paramref name="searchPattern" />.</returns>
870       <exception cref="T:System.ArgumentException">
871         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
872       <exception cref="T:System.ArgumentNullException">
873         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
874       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see langword="DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
875       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
876     </member>
877     <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String,System.IO.EnumerationOptions)">
878       <param name="searchPattern" />
879       <param name="enumerationOptions" />
880     </member>
881     <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String,System.IO.SearchOption)">
882       <summary>Returns an array of directories in the current <see cref="T:System.IO.DirectoryInfo" /> matching the given search criteria and using a value to determine whether to search subdirectories.</summary>
883       <param name="searchPattern">The search string to match against the names of directories.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
884       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories.</param>
885       <returns>An array of type <see langword="DirectoryInfo" /> matching <paramref name="searchPattern" />.</returns>
886       <exception cref="T:System.ArgumentException">
887         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
888       <exception cref="T:System.ArgumentNullException">
889         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
890       <exception cref="T:System.ArgumentOutOfRangeException">
891         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
892       <exception cref="T:System.IO.DirectoryNotFoundException">The path encapsulated in the <see langword="DirectoryInfo" /> object is invalid (for example, it is on an unmapped drive).</exception>
893       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
894     </member>
895     <member name="M:System.IO.DirectoryInfo.GetFiles">
896       <summary>Returns a file list from the current directory.</summary>
897       <returns>An array of type <see cref="T:System.IO.FileInfo" />.</returns>
898       <exception cref="T:System.IO.DirectoryNotFoundException">The path is invalid, such as being on an unmapped drive.</exception>
899     </member>
900     <member name="M:System.IO.DirectoryInfo.GetFiles(System.String)">
901       <summary>Returns a file list from the current directory matching the given search pattern.</summary>
902       <param name="searchPattern">The search string to match against the names of files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
903       <returns>An array of type <see cref="T:System.IO.FileInfo" />.</returns>
904       <exception cref="T:System.ArgumentException">
905         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
906       <exception cref="T:System.ArgumentNullException">
907         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
908       <exception cref="T:System.IO.DirectoryNotFoundException">The path is invalid (for example, it is on an unmapped drive).</exception>
909       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
910     </member>
911     <member name="M:System.IO.DirectoryInfo.GetFiles(System.String,System.IO.EnumerationOptions)">
912       <param name="searchPattern" />
913       <param name="enumerationOptions" />
914     </member>
915     <member name="M:System.IO.DirectoryInfo.GetFiles(System.String,System.IO.SearchOption)">
916       <summary>Returns a file list from the current directory matching the given search pattern and using a value to determine whether to search subdirectories.</summary>
917       <param name="searchPattern">The search string to match against the names of files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
918       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories.</param>
919       <returns>An array of type <see cref="T:System.IO.FileInfo" />.</returns>
920       <exception cref="T:System.ArgumentException">
921         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
922       <exception cref="T:System.ArgumentNullException">
923         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
924       <exception cref="T:System.ArgumentOutOfRangeException">
925         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
926       <exception cref="T:System.IO.DirectoryNotFoundException">The path is invalid (for example, it is on an unmapped drive).</exception>
927       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
928     </member>
929     <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos">
930       <summary>Returns an array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> entries representing all the files and subdirectories in a directory.</summary>
931       <returns>An array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> entries.</returns>
932       <exception cref="T:System.IO.DirectoryNotFoundException">The path is invalid (for example, it is on an unmapped drive).</exception>
933     </member>
934     <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String)">
935       <summary>Retrieves an array of strongly typed <see cref="T:System.IO.FileSystemInfo" /> objects representing the files and subdirectories that match the specified search criteria.</summary>
936       <param name="searchPattern">The search string to match against the names of directories and files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
937       <returns>An array of strongly typed <see langword="FileSystemInfo" /> objects matching the search criteria.</returns>
938       <exception cref="T:System.ArgumentException">
939         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
940       <exception cref="T:System.ArgumentNullException">
941         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
942       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
943       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
944     </member>
945     <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String,System.IO.EnumerationOptions)">
946       <param name="searchPattern" />
947       <param name="enumerationOptions" />
948     </member>
949     <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String,System.IO.SearchOption)">
950       <summary>Retrieves an array of <see cref="T:System.IO.FileSystemInfo" /> objects that represent the files and subdirectories matching the specified search criteria.</summary>
951       <param name="searchPattern">The search string to match against the names of directories and files.  This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions.</param>
952       <param name="searchOption">One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories. The default value is <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.</param>
953       <returns>An array of file system entries that match the search criteria.</returns>
954       <exception cref="T:System.ArgumentException">
955         <paramref name="searchPattern" /> contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
956       <exception cref="T:System.ArgumentNullException">
957         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
958       <exception cref="T:System.ArgumentOutOfRangeException">
959         <paramref name="searchOption" /> is not a valid <see cref="T:System.IO.SearchOption" /> value.</exception>
960       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
961       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
962     </member>
963     <member name="M:System.IO.DirectoryInfo.MoveTo(System.String)">
964       <summary>Moves a <see cref="T:System.IO.DirectoryInfo" /> instance and its contents to a new path.</summary>
965       <param name="destDirName">The name and path to which to move this directory. The destination cannot be another disk volume or a directory with the identical name. It can be an existing directory to which you want to add this directory as a subdirectory.</param>
966       <exception cref="T:System.ArgumentNullException">
967         <paramref name="destDirName" /> is <see langword="null" />.</exception>
968       <exception cref="T:System.ArgumentException">
969         <paramref name="destDirName" /> is an empty string (''").</exception>
970       <exception cref="T:System.IO.IOException">An attempt was made to move a directory to a different volume.
971 -or-
972 <paramref name="destDirName" /> already exists.
973 -or-
974 You are not authorized to access this path.
975 -or-
976 The directory being moved and the destination directory have the same name.</exception>
977       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
978       <exception cref="T:System.IO.DirectoryNotFoundException">The destination directory cannot be found.</exception>
979     </member>
980     <member name="P:System.IO.DirectoryInfo.Name">
981       <summary>Gets the name of this <see cref="T:System.IO.DirectoryInfo" /> instance.</summary>
982       <returns>The directory name.</returns>
983     </member>
984     <member name="P:System.IO.DirectoryInfo.Parent">
985       <summary>Gets the parent directory of a specified subdirectory.</summary>
986       <returns>The parent directory, or <see langword="null" /> if the path is null or if the file path denotes a root (such as \, C:\, or \\server\share).</returns>
987       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
988     </member>
989     <member name="P:System.IO.DirectoryInfo.Root">
990       <summary>Gets the root portion of the directory.</summary>
991       <returns>An object that represents the root of the directory.</returns>
992       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
993     </member>
994     <member name="M:System.IO.DirectoryInfo.ToString">
995       <summary>Returns the original path that was passed to the <see cref="T:System.IO.DirectoryInfo" /> constructor. Use the <see cref="P:System.IO.DirectoryInfo.FullName" /> or <see cref="P:System.IO.DirectoryInfo.Name" /> properties for the full path or file/directory name instead of this method.</summary>
996       <returns>The original path that was passed by the user.</returns>
997     </member>
998     <member name="T:System.IO.Enumeration.FileSystemEntry">
999       <summary>Provides a lower level view of <see cref="T:System.IO.FileSystemInfo" /> to help process and filter find results.</summary>
1000     </member>
1001     <member name="P:System.IO.Enumeration.FileSystemEntry.Attributes">
1002       <summary>Gets the attributes for this entry.</summary>
1003       <returns>The attributes for this entry.</returns>
1004     </member>
1005     <member name="P:System.IO.Enumeration.FileSystemEntry.CreationTimeUtc">
1006       <summary>Gets the creation time for the entry or the oldest available time stamp if the operating system does not support creation time stamps.</summary>
1007       <returns>The creation time for the entry.</returns>
1008     </member>
1009     <member name="P:System.IO.Enumeration.FileSystemEntry.Directory">
1010       <summary>Gets the full path of the directory this entry resides in.</summary>
1011       <returns>The full path of this entry's directory.</returns>
1012     </member>
1013     <member name="P:System.IO.Enumeration.FileSystemEntry.FileName">
1014       <summary>Gets the file name for this entry.</summary>
1015       <returns>This entry's file name.</returns>
1016     </member>
1017     <member name="P:System.IO.Enumeration.FileSystemEntry.IsDirectory">
1018       <summary>Gets a value that indicates whether this entry is a directory.</summary>
1019       <returns>
1020         <see langword="true" /> if the entry is a directory; otherwise, <see langword="true" />.</returns>
1021     </member>
1022     <member name="P:System.IO.Enumeration.FileSystemEntry.IsHidden">
1023       <summary>Gets a value that indicates whether the file has the hidden attribute.</summary>
1024       <returns>
1025         <see langword="true" /> if the file has the hidden attribute; otherwise, <see langword="false" />.</returns>
1026     </member>
1027     <member name="P:System.IO.Enumeration.FileSystemEntry.LastAccessTimeUtc">
1028       <summary>Gets a datetime offset that represents the last access time in UTC.</summary>
1029       <returns>The last access time in UTC.</returns>
1030     </member>
1031     <member name="P:System.IO.Enumeration.FileSystemEntry.LastWriteTimeUtc">
1032       <summary>Gets a datetime offset that represents the last write time in UTC.</summary>
1033       <returns>The last write time in UTC.</returns>
1034     </member>
1035     <member name="P:System.IO.Enumeration.FileSystemEntry.Length">
1036       <summary>Gets the length of the file, in bytes.</summary>
1037       <returns>The file length in bytes.</returns>
1038     </member>
1039     <member name="P:System.IO.Enumeration.FileSystemEntry.OriginalRootDirectory">
1040       <summary>Gets the root directory for the enumeration as specified in the constructor.</summary>
1041       <returns>The original root directory.</returns>
1042     </member>
1043     <member name="P:System.IO.Enumeration.FileSystemEntry.RootDirectory">
1044       <summary>Gets the full path of the root directory used for the enumeration.</summary>
1045       <returns>The root directory.</returns>
1046     </member>
1047     <member name="M:System.IO.Enumeration.FileSystemEntry.ToFileSystemInfo">
1048       <summary>Converts the value of this instance to a <see cref="T:System.IO.FileSystemInfo" />.</summary>
1049       <returns>The value of this instance as a <see cref="T:System.IO.FileSystemInfo" />.</returns>
1050     </member>
1051     <member name="M:System.IO.Enumeration.FileSystemEntry.ToFullPath">
1052       <summary>Returns the full path of the find result.</summary>
1053       <returns>A string representing the full path.</returns>
1054     </member>
1055     <member name="M:System.IO.Enumeration.FileSystemEntry.ToSpecifiedFullPath">
1056       <summary>Returns the full path for the find results, based on the initially provided path.</summary>
1057       <returns>A string representing the full path.</returns>
1058     </member>
1059     <member name="T:System.IO.Enumeration.FileSystemEnumerable`1">
1060       <summary>Allows utilizing custom filter predicates and transform delegates for enumeration purposes.</summary>
1061       <typeparam name="TResult">The type that this enumerable encapsulates.</typeparam>
1062     </member>
1063     <member name="M:System.IO.Enumeration.FileSystemEnumerable`1.#ctor(System.String,System.IO.Enumeration.FileSystemEnumerable{`0}.FindTransform,System.IO.EnumerationOptions)">
1064       <param name="directory" />
1065       <param name="transform" />
1066       <param name="options" />
1067     </member>
1068     <member name="T:System.IO.Enumeration.FileSystemEnumerable`1.FindPredicate">
1069       <summary>Encapsulates a method for filtering out find results.</summary>
1070       <param name="entry">A reference to the file system entry that will be evaluated with the predicate condition.</param>
1071       <typeparam name="TResult" />
1072       <returns>
1073         <see langword="true" /> if the predicate condition is met; otherwise, <see langword="false" />.</returns>
1074     </member>
1075     <member name="T:System.IO.Enumeration.FileSystemEnumerable`1.FindTransform">
1076       <summary>Encapsulates a method for transforming raw find data into a result.</summary>
1077       <param name="entry">A reference to the file system entry that will be evaluated with the predicate condition.</param>
1078       <typeparam name="TResult" />
1079       <returns>An instance of the type that this delegate encapsulates.</returns>
1080     </member>
1081     <member name="M:System.IO.Enumeration.FileSystemEnumerable`1.GetEnumerator">
1082       <summary>Retrieves the enumerator for this type of result.</summary>
1083       <returns>An enumerator.</returns>
1084     </member>
1085     <member name="P:System.IO.Enumeration.FileSystemEnumerable`1.ShouldIncludePredicate">
1086       <summary>Gets or sets the predicate that can be used to verify if the TResults should be included.</summary>
1087       <returns>The include predicate.</returns>
1088     </member>
1089     <member name="P:System.IO.Enumeration.FileSystemEnumerable`1.ShouldRecursePredicate">
1090       <summary>Gets or sets the predicate that can be used to verify if the TResults should be recursed.</summary>
1091       <returns>The recurse predicate.</returns>
1092     </member>
1093     <member name="M:System.IO.Enumeration.FileSystemEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
1094       <summary>Gets an enumerator that can be used to iterate.</summary>
1095       <returns>An enumerator instance.</returns>
1096     </member>
1097     <member name="T:System.IO.Enumeration.FileSystemEnumerator`1">
1098       <typeparam name="TResult" />
1099     </member>
1100     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.#ctor(System.String,System.IO.EnumerationOptions)">
1101       <summary>Encapsulates a find operation.</summary>
1102       <param name="directory">The directory to search in.</param>
1103       <param name="options">Enumeration options to use.</param>
1104     </member>
1105     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.ContinueOnError(System.Int32)">
1106       <summary>When overriden in a derived class, returns a value that indicates whether to continue execution or throw the default exception.</summary>
1107       <param name="error">The native error code.</param>
1108       <returns>
1109         <see langword="true" /> to continue; <see langword="false" /> to throw the default exception for the given error.</returns>
1110     </member>
1111     <member name="P:System.IO.Enumeration.FileSystemEnumerator`1.Current">
1112       <summary>Gets the currently visited element.</summary>
1113       <returns>The currently visited element.</returns>
1114     </member>
1115     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.Dispose">
1116       <summary>Releases the resources used by the current instance of the <see cref="T:System.IO.Enumeration.FileSystemEnumerator`1" /> class.</summary>
1117     </member>
1118     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.Dispose(System.Boolean)">
1119       <summary>When overridden in a derived class, releases the unmanaged resources used by the <see cref="T:System.IO.Enumeration.FileSystemEnumerator`1" /> class and optionally releases the managed resources.</summary>
1120       <param name="disposing">
1121         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
1122     </member>
1123     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.MoveNext">
1124       <summary>Advances the enumerator to the next item of the <see cref="T:System.IO.Enumeration.FileSystemEnumerator`1" />.</summary>
1125       <returns>
1126         <see langword="true" /> if the enumerator successfully advanced to the next item; <see langword="false" /> if the end of the enumerator has been passed.</returns>
1127     </member>
1128     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.OnDirectoryFinished(System.ReadOnlySpan{System.Char})">
1129       <summary>When overriden in a derived class, this method is called whenever the end of a directory is reached.</summary>
1130       <param name="directory">The directory path as a read-only span.</param>
1131     </member>
1132     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.Reset">
1133       <summary>Always throws <see cref="T:System.NotSupportedException" />.</summary>
1134     </member>
1135     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.ShouldIncludeEntry(System.IO.Enumeration.FileSystemEntry@)">
1136       <summary>When overridden in a derived class, determines whether the specified file system entry should be included in the results.</summary>
1137       <param name="entry">A file system entry reference.</param>
1138       <returns>
1139         <see langword="true" /> if the specified file system entry should be included in the results; otherwise, <see langword="false" />.</returns>
1140     </member>
1141     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.ShouldRecurseIntoEntry(System.IO.Enumeration.FileSystemEntry@)">
1142       <summary>When overridden in a derived class, determines whether the specified file system entry should be recursed.</summary>
1143       <param name="entry">A file system entry reference.</param>
1144       <returns>
1145         <see langword="true" /> if the specified directory entry should be recursed into; otherwise, <see langword="false" />.</returns>
1146     </member>
1147     <member name="P:System.IO.Enumeration.FileSystemEnumerator`1.System#Collections#IEnumerator#Current">
1148       <summary>Gets the currently visited object.</summary>
1149       <returns>The currently visited object.</returns>
1150     </member>
1151     <member name="M:System.IO.Enumeration.FileSystemEnumerator`1.TransformEntry(System.IO.Enumeration.FileSystemEntry@)">
1152       <summary>When overridden in a derived class, generates the result type from the current entry.</summary>
1153       <param name="entry" />
1154       <returns>The result type from the current entry.</returns>
1155     </member>
1156     <member name="T:System.IO.Enumeration.FileSystemName">
1157       <summary>Provides methods for matching file system names.</summary>
1158     </member>
1159     <member name="M:System.IO.Enumeration.FileSystemName.MatchesSimpleExpression(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Boolean)">
1160       <summary>Verifies if the given expression matches the given name. Supports the following wildcards: '*' and '?'. The backslash character '' escapes.</summary>
1161       <param name="expression">The expression to match with.</param>
1162       <param name="name">The name to check against the expression.</param>
1163       <param name="ignoreCase">
1164         <see langword="true" /> to ignore case (default); <see langword="false" /> if the match should be case-sensitive.</param>
1165       <returns>
1166         <see langword="true" /> if the given expression matches the given name; otherwise, <see langword="false" />.</returns>
1167     </member>
1168     <member name="M:System.IO.Enumeration.FileSystemName.MatchesWin32Expression(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Boolean)">
1169       <summary>Verifies if the given Win32 expression matches the given name. Supports the following wildcards: '*', '?', '&lt;', '&gt;', '"'. The backslash character '' escapes.</summary>
1170       <param name="expression">The expression to match with, such as "*.foo".</param>
1171       <param name="name">The name to check against the expression.</param>
1172       <param name="ignoreCase">
1173         <see langword="true" /> to ignore case (default), <see langword="false" /> if the match should be case-sensitive.</param>
1174       <returns>
1175         <see langword="true" /> if the given expression matches the given name; otherwise, <see langword="false" />.</returns>
1176     </member>
1177     <member name="M:System.IO.Enumeration.FileSystemName.TranslateWin32Expression(System.String)">
1178       <summary>Translates the given Win32 expression. Change '*' and '?' to '&lt;', '&gt;' and '"' to match Win32 behavior.</summary>
1179       <param name="expression">The expression to translate.</param>
1180       <returns>A string with the translated Win32 expression.</returns>
1181     </member>
1182     <member name="T:System.IO.EnumerationOptions" />
1183     <member name="M:System.IO.EnumerationOptions.#ctor">
1184       <summary>Initializes a new instance of the <see cref="T:System.IO.EnumerationOptions" /> class with the recommended default options.</summary>
1185     </member>
1186     <member name="P:System.IO.EnumerationOptions.AttributesToSkip">
1187       <summary>Gets or sets the attributes to skip. The default is <c>FileAttributes.Hidden | FileAttributes.System</c>.</summary>
1188       <returns>The attributes to skip.</returns>
1189     </member>
1190     <member name="P:System.IO.EnumerationOptions.BufferSize">
1191       <summary>Gets or sets the suggested buffer size, in bytes. The default is 0 (no suggestion).</summary>
1192       <returns>The buffer size.</returns>
1193     </member>
1194     <member name="P:System.IO.EnumerationOptions.IgnoreInaccessible">
1195       <summary>Gets or sets a value that indicates whether to skip files or directories when access is denied (for example, <see cref="T:System.UnauthorizedAccessException" /> or <see cref="T:System.Security.SecurityException" />). The default is <see langword="true" />.</summary>
1196       <returns>
1197         <see langword="true" /> to skip innacessible files or directories; otherwise, <see langword="false" />.</returns>
1198     </member>
1199     <member name="P:System.IO.EnumerationOptions.MatchCasing">
1200       <summary>Gets or sets the case matching behavior.</summary>
1201       <returns>One of the enumeration values that indicates the case matching behavior.</returns>
1202     </member>
1203     <member name="P:System.IO.EnumerationOptions.MatchType">
1204       <summary>Gets or sets the match type.</summary>
1205       <returns>One of the enumeration values that indicates the match type.</returns>
1206     </member>
1207     <member name="P:System.IO.EnumerationOptions.RecurseSubdirectories">
1208       <summary>Gets or sets a value that indicates whether to recurse into subdirectories while enumerating. The default is <see langword="false" />.</summary>
1209       <returns>
1210         <see langword="true" /> to recurse into subdirectories; otherwise, <see langword="false" />.</returns>
1211     </member>
1212     <member name="P:System.IO.EnumerationOptions.ReturnSpecialDirectories">
1213       <summary>Gets or sets a value that indicates whether to return the special directory entries "." and "..".</summary>
1214       <returns>
1215         <see langword="true" /> to return the special directory entries "." and ".."; otherwise, <see langword="false" />.</returns>
1216     </member>
1217     <member name="T:System.IO.File">
1218       <summary>Provides static methods for the creation, copying, deletion, moving, and opening of a single file, and aids in the creation of <see cref="T:System.IO.FileStream" /> objects.</summary>
1219     </member>
1220     <member name="M:System.IO.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
1221       <summary>Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file, writes the specified lines to the file, and then closes the file.</summary>
1222       <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
1223       <param name="contents">The lines to append to the file.</param>
1224       <exception cref="T:System.ArgumentException">
1225         <paramref name="path" /> is a zero-length string, contains only white space, or contains one more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
1226       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" /> or <paramref name="contents" /> is <see langword="null" />.</exception>
1227       <exception cref="T:System.IO.DirectoryNotFoundException">
1228         <paramref name="path" /> is invalid (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
1229       <exception cref="T:System.IO.FileNotFoundException">The file specified by <paramref name="path" /> was not found.</exception>
1230       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1231       <exception cref="T:System.IO.PathTooLongException">
1232         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
1233       <exception cref="T:System.NotSupportedException">
1234         <paramref name="path" /> is in an invalid format.</exception>
1235       <exception cref="T:System.Security.SecurityException">The caller does not have permission to write to the file.</exception>
1236       <exception cref="T:System.UnauthorizedAccessException">
1237         <paramref name="path" /> specifies a file that is read-only.
1238 -or-
1239 This operation is not supported on the current platform.
1240 -or-
1241 <paramref name="path" /> is a directory.</exception>
1242     </member>
1243     <member name="M:System.IO.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
1244       <summary>Appends lines to a file by using a specified encoding, and then closes the file. If the specified file does not exist, this method creates a file, writes the specified lines to the file, and then closes the file.</summary>
1245       <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
1246       <param name="contents">The lines to append to the file.</param>
1247       <param name="encoding">The character encoding to use.</param>
1248       <exception cref="T:System.ArgumentException">
1249         <paramref name="path" /> is a zero-length string, contains only white space, or contains one more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
1250       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" />, <paramref name="contents" />, or <paramref name="encoding" /> is <see langword="null" />.</exception>
1251       <exception cref="T:System.IO.DirectoryNotFoundException">
1252         <paramref name="path" /> is invalid (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
1253       <exception cref="T:System.IO.FileNotFoundException">The file specified by <paramref name="path" /> was not found.</exception>
1254       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1255       <exception cref="T:System.IO.PathTooLongException">
1256         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
1257       <exception cref="T:System.NotSupportedException">
1258         <paramref name="path" /> is in an invalid format.</exception>
1259       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1260       <exception cref="T:System.UnauthorizedAccessException">
1261         <paramref name="path" /> specifies a file that is read-only.
1262 -or-
1263 This operation is not supported on the current platform.
1264 -or-
1265 <paramref name="path" /> is a directory.
1266 -or-
1267 The caller does not have the required permission.</exception>
1268     </member>
1269     <member name="M:System.IO.File.AppendAllLinesAsync(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,System.Threading.CancellationToken)">
1270       <summary>Asynchronously appends lines to a file by using a specified encoding, and then closes the file. If the specified file does not exist, this method creates a file, writes the specified lines to the file, and then closes the file.</summary>
1271       <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
1272       <param name="contents">The lines to append to the file.</param>
1273       <param name="encoding">The character encoding to use.</param>
1274       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1275       <returns>A task that represents the asynchronous append operation.</returns>
1276     </member>
1277     <member name="M:System.IO.File.AppendAllLinesAsync(System.String,System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)">
1278       <summary>Asynchronously appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file, writes the specified lines to the file, and then closes the file.</summary>
1279       <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
1280       <param name="contents">The lines to append to the file.</param>
1281       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1282       <returns>A task that represents the asynchronous append operation.</returns>
1283     </member>
1284     <member name="M:System.IO.File.AppendAllText(System.String,System.String)">
1285       <summary>Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.</summary>
1286       <param name="path">The file to append the specified string to.</param>
1287       <param name="contents">The string to append to the file.</param>
1288       <exception cref="T:System.ArgumentException">
1289         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1290       <exception cref="T:System.ArgumentNullException">
1291         <paramref name="path" /> is <see langword="null" />.</exception>
1292       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1293       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
1294       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1295       <exception cref="T:System.UnauthorizedAccessException">
1296         <paramref name="path" /> specified a file that is read-only.
1297 -or-
1298 This operation is not supported on the current platform.
1299 -or-
1300 <paramref name="path" /> specified a directory.
1301 -or-
1302 The caller does not have the required permission.</exception>
1303       <exception cref="T:System.NotSupportedException">
1304         <paramref name="path" /> is in an invalid format.</exception>
1305       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1306     </member>
1307     <member name="M:System.IO.File.AppendAllText(System.String,System.String,System.Text.Encoding)">
1308       <summary>Appends the specified string to the file using the specified encoding, creating the file if it does not already exist.</summary>
1309       <param name="path">The file to append the specified string to.</param>
1310       <param name="contents">The string to append to the file.</param>
1311       <param name="encoding">The character encoding to use.</param>
1312       <exception cref="T:System.ArgumentException">
1313         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1314       <exception cref="T:System.ArgumentNullException">
1315         <paramref name="path" /> is <see langword="null" />.</exception>
1316       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1317       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
1318       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1319       <exception cref="T:System.UnauthorizedAccessException">
1320         <paramref name="path" /> specified a file that is read-only.
1321 -or-
1322 This operation is not supported on the current platform.
1323 -or-
1324 <paramref name="path" /> specified a directory.
1325 -or-
1326 The caller does not have the required permission.</exception>
1327       <exception cref="T:System.NotSupportedException">
1328         <paramref name="path" /> is in an invalid format.</exception>
1329       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1330     </member>
1331     <member name="M:System.IO.File.AppendAllTextAsync(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken)">
1332       <summary>Asynchronously opens a file or creates the file if it does not already exist, appends the specified string to the file using the specified encoding, and then closes the file.</summary>
1333       <param name="path">The file to append the specified string to.</param>
1334       <param name="contents">The string to append to the file.</param>
1335       <param name="encoding">The character encoding to use.</param>
1336       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1337       <returns>A task that represents the asynchronous append operation.</returns>
1338     </member>
1339     <member name="M:System.IO.File.AppendAllTextAsync(System.String,System.String,System.Threading.CancellationToken)">
1340       <summary>Asynchronously opens a file or creates a file if it does not already exist, appends the specified string to the file, and then closes the file.</summary>
1341       <param name="path">The file to append the specified string to.</param>
1342       <param name="contents">The string to append to the file.</param>
1343       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1344       <returns>A task that represents the asynchronous append operation.</returns>
1345     </member>
1346     <member name="M:System.IO.File.AppendText(System.String)">
1347       <summary>Creates a <see cref="T:System.IO.StreamWriter" /> that appends UTF-8 encoded text to an existing file, or to a new file if the specified file does not exist.</summary>
1348       <param name="path">The path to the file to append to.</param>
1349       <returns>A stream writer that appends UTF-8 encoded text to the specified file or to a new file.</returns>
1350       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1351       <exception cref="T:System.ArgumentException">
1352         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1353       <exception cref="T:System.ArgumentNullException">
1354         <paramref name="path" /> is <see langword="null" />.</exception>
1355       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1356       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, the directory doesn't exist or it is on an unmapped drive).</exception>
1357       <exception cref="T:System.NotSupportedException">
1358         <paramref name="path" /> is in an invalid format.</exception>
1359     </member>
1360     <member name="M:System.IO.File.Copy(System.String,System.String)">
1361       <summary>Copies an existing file to a new file. Overwriting a file of the same name is not allowed.</summary>
1362       <param name="sourceFileName">The file to copy.</param>
1363       <param name="destFileName">The name of the destination file. This cannot be a directory or an existing file.</param>
1364       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1365       <exception cref="T:System.ArgumentException">
1366         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.
1367 -or-
1368 <paramref name="sourceFileName" /> or <paramref name="destFileName" /> specifies a directory.</exception>
1369       <exception cref="T:System.ArgumentNullException">
1370         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is <see langword="null" />.</exception>
1371       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1372       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid (for example, it is on an unmapped drive).</exception>
1373       <exception cref="T:System.IO.FileNotFoundException">
1374         <paramref name="sourceFileName" /> was not found.</exception>
1375       <exception cref="T:System.IO.IOException">
1376         <paramref name="destFileName" /> exists.
1377 -or-
1378 An I/O error has occurred.</exception>
1379       <exception cref="T:System.NotSupportedException">
1380         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format.</exception>
1381     </member>
1382     <member name="M:System.IO.File.Copy(System.String,System.String,System.Boolean)">
1383       <summary>Copies an existing file to a new file. Overwriting a file of the same name is allowed.</summary>
1384       <param name="sourceFileName">The file to copy.</param>
1385       <param name="destFileName">The name of the destination file. This cannot be a directory.</param>
1386       <param name="overwrite">
1387         <see langword="true" /> if the destination file can be overwritten; otherwise, <see langword="false" />.</param>
1388       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1389 -or-
1390 <paramref name="destFileName" /> is read-only.
1391 -or-
1392 <paramref name="overwrite" /> is <see langword="true" />, <paramref name="destFileName" /> exists and is hidden, but <paramref name="sourceFileName" /> is not hidden.</exception>
1393       <exception cref="T:System.ArgumentException">
1394         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.
1395 -or-
1396 <paramref name="sourceFileName" /> or <paramref name="destFileName" /> specifies a directory.</exception>
1397       <exception cref="T:System.ArgumentNullException">
1398         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is <see langword="null" />.</exception>
1399       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1400       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid (for example, it is on an unmapped drive).</exception>
1401       <exception cref="T:System.IO.FileNotFoundException">
1402         <paramref name="sourceFileName" /> was not found.</exception>
1403       <exception cref="T:System.IO.IOException">
1404         <paramref name="destFileName" /> exists and <paramref name="overwrite" /> is <see langword="false" />.
1405 -or-
1406 An I/O error has occurred.</exception>
1407       <exception cref="T:System.NotSupportedException">
1408         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format.</exception>
1409     </member>
1410     <member name="M:System.IO.File.Create(System.String)">
1411       <summary>Creates or overwrites a file in the specified path.</summary>
1412       <param name="path">The path and name of the file to create.</param>
1413       <returns>A <see cref="T:System.IO.FileStream" /> that provides read/write access to the file specified in <paramref name="path" />.</returns>
1414       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1415 -or-
1416 <paramref name="path" /> specified a file that is read-only.
1417 -or-
1418 <paramref name="path" /> specified a file that is hidden.</exception>
1419       <exception cref="T:System.ArgumentException">
1420         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1421       <exception cref="T:System.ArgumentNullException">
1422         <paramref name="path" /> is <see langword="null" />.</exception>
1423       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1424       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1425       <exception cref="T:System.IO.IOException">An I/O error occurred while creating the file.</exception>
1426       <exception cref="T:System.NotSupportedException">
1427         <paramref name="path" /> is in an invalid format.</exception>
1428     </member>
1429     <member name="M:System.IO.File.Create(System.String,System.Int32)">
1430       <summary>Creates or overwrites a file in the specified path, specifying a buffer size.</summary>
1431       <param name="path">The path and name of the file to create.</param>
1432       <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
1433       <returns>A <see cref="T:System.IO.FileStream" /> with the specified buffer size that provides read/write access to the file specified in <paramref name="path" />.</returns>
1434       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1435 -or-
1436 <paramref name="path" /> specified a file that is read-only.
1437 -or-
1438 <paramref name="path" /> specified a file that is hidden.</exception>
1439       <exception cref="T:System.ArgumentException">
1440         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1441       <exception cref="T:System.ArgumentNullException">
1442         <paramref name="path" /> is <see langword="null" />.</exception>
1443       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1444       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1445       <exception cref="T:System.IO.IOException">An I/O error occurred while creating the file.</exception>
1446       <exception cref="T:System.NotSupportedException">
1447         <paramref name="path" /> is in an invalid format.</exception>
1448     </member>
1449     <member name="M:System.IO.File.Create(System.String,System.Int32,System.IO.FileOptions)">
1450       <summary>Creates or overwrites a file in the specified path, specifying a buffer size and options that describe how to create or overwrite the file.</summary>
1451       <param name="path">The path and name of the file to create.</param>
1452       <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
1453       <param name="options">One of the <see cref="T:System.IO.FileOptions" /> values that describes how to create or overwrite the file.</param>
1454       <returns>A new file with the specified buffer size.</returns>
1455       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1456 -or-
1457 <paramref name="path" /> specified a file that is read-only.
1458 -or-
1459 <paramref name="path" /> specified a file that is hidden.</exception>
1460       <exception cref="T:System.ArgumentException">
1461         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1462       <exception cref="T:System.ArgumentNullException">
1463         <paramref name="path" /> is <see langword="null" />.</exception>
1464       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1465       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive.</exception>
1466       <exception cref="T:System.IO.IOException">An I/O error occurred while creating the file.</exception>
1467       <exception cref="T:System.NotSupportedException">
1468         <paramref name="path" /> is in an invalid format.</exception>
1469     </member>
1470     <member name="M:System.IO.File.CreateText(System.String)">
1471       <summary>Creates or opens a file for writing UTF-8 encoded text. If the file already exists, its contents are overwritten.</summary>
1472       <param name="path">The file to be opened for writing.</param>
1473       <returns>A <see cref="T:System.IO.StreamWriter" /> that writes to the specified file using UTF-8 encoding.</returns>
1474       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1475 -or-
1476 <paramref name="path" /> specified a file that is read-only.
1477 -or-
1478 <paramref name="path" /> specified a file that is hidden.</exception>
1479       <exception cref="T:System.ArgumentException">
1480         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1481       <exception cref="T:System.ArgumentNullException">
1482         <paramref name="path" /> is <see langword="null" />.</exception>
1483       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1484       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1485       <exception cref="T:System.NotSupportedException">
1486         <paramref name="path" /> is in an invalid format.</exception>
1487     </member>
1488     <member name="M:System.IO.File.Decrypt(System.String)">
1489       <summary>Decrypts a file that was encrypted by the current account using the <see cref="M:System.IO.File.Encrypt(System.String)" /> method.</summary>
1490       <param name="path">A path that describes a file to decrypt.</param>
1491       <exception cref="T:System.ArgumentException">The <paramref name="path" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1492       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> parameter is <see langword="null" />.</exception>
1493       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
1494       <exception cref="T:System.IO.FileNotFoundException">The file described by the <paramref name="path" /> parameter could not be found.</exception>
1495       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file. For example, the encrypted file is already open.
1496 -or-
1497 This operation is not supported on the current platform.</exception>
1498       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1499       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
1500       <exception cref="T:System.NotSupportedException">The file system is not NTFS.</exception>
1501       <exception cref="T:System.UnauthorizedAccessException">The <paramref name="path" /> parameter specified a file that is read-only.
1502 -or-
1503 This operation is not supported on the current platform.
1504 -or-
1505 The <paramref name="path" /> parameter specified a directory.
1506 -or-
1507 The caller does not have the required permission.</exception>
1508     </member>
1509     <member name="M:System.IO.File.Delete(System.String)">
1510       <summary>Deletes the specified file.</summary>
1511       <param name="path">The name of the file to be deleted. Wildcard characters are not supported.</param>
1512       <exception cref="T:System.ArgumentException">
1513         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1514       <exception cref="T:System.ArgumentNullException">
1515         <paramref name="path" /> is <see langword="null" />.</exception>
1516       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1517       <exception cref="T:System.IO.IOException">The specified file is in use.
1518 -or-
1519 There is an open handle on the file, and the operating system is Windows XP or earlier. This open handle can result from enumerating directories and files. For more information, see How to: Enumerate Directories and Files.</exception>
1520       <exception cref="T:System.NotSupportedException">
1521         <paramref name="path" /> is in an invalid format.</exception>
1522       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1523       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1524 -or-
1525 The file is an executable file that is in use.
1526 -or-
1527 <paramref name="path" /> is a directory.
1528 -or-
1529 <paramref name="path" /> specified a read-only file.</exception>
1530     </member>
1531     <member name="M:System.IO.File.Encrypt(System.String)">
1532       <summary>Encrypts a file so that only the account used to encrypt the file can decrypt it.</summary>
1533       <param name="path">A path that describes a file to encrypt.</param>
1534       <exception cref="T:System.ArgumentException">The <paramref name="path" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1535       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> parameter is <see langword="null" />.</exception>
1536       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
1537       <exception cref="T:System.IO.FileNotFoundException">The file described by the <paramref name="path" /> parameter could not be found.</exception>
1538       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.
1539 -or-
1540 This operation is not supported on the current platform.</exception>
1541       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1542       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
1543       <exception cref="T:System.NotSupportedException">The file system is not NTFS.</exception>
1544       <exception cref="T:System.UnauthorizedAccessException">The <paramref name="path" /> parameter specified a file that is read-only.
1545 -or-
1546 This operation is not supported on the current platform.
1547 -or-
1548 The <paramref name="path" /> parameter specified a directory.
1549 -or-
1550 The caller does not have the required permission.</exception>
1551     </member>
1552     <member name="M:System.IO.File.Exists(System.String)">
1553       <summary>Determines whether the specified file exists.</summary>
1554       <param name="path">The file to check.</param>
1555       <returns>
1556         <see langword="true" /> if the caller has the required permissions and <paramref name="path" /> contains the name of an existing file; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="path" /> is <see langword="null" />, an invalid path, or a zero-length string. If the caller does not have sufficient permissions to read the specified file, no exception is thrown and the method returns <see langword="false" /> regardless of the existence of <paramref name="path" />.</returns>
1557     </member>
1558     <member name="M:System.IO.File.GetAttributes(System.String)">
1559       <summary>Gets the <see cref="T:System.IO.FileAttributes" /> of the file on the path.</summary>
1560       <param name="path">The path to the file.</param>
1561       <returns>The <see cref="T:System.IO.FileAttributes" /> of the file on the path.</returns>
1562       <exception cref="T:System.ArgumentException">
1563         <paramref name="path" /> is empty, contains only white spaces, or contains invalid characters.</exception>
1564       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1565       <exception cref="T:System.NotSupportedException">
1566         <paramref name="path" /> is in an invalid format.</exception>
1567       <exception cref="T:System.IO.FileNotFoundException">
1568         <paramref name="path" /> represents a file and is invalid, such as being on an unmapped drive, or the file cannot be found.</exception>
1569       <exception cref="T:System.IO.DirectoryNotFoundException">
1570         <paramref name="path" /> represents a directory and is invalid, such as being on an unmapped drive, or the directory cannot be found.</exception>
1571       <exception cref="T:System.IO.IOException">This file is being used by another process.</exception>
1572       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1573     </member>
1574     <member name="M:System.IO.File.GetCreationTime(System.String)">
1575       <summary>Returns the creation date and time of the specified file or directory.</summary>
1576       <param name="path">The file or directory for which to obtain creation date and time information.</param>
1577       <returns>A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified file or directory. This value is expressed in local time.</returns>
1578       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1579       <exception cref="T:System.ArgumentException">
1580         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1581       <exception cref="T:System.ArgumentNullException">
1582         <paramref name="path" /> is <see langword="null" />.</exception>
1583       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1584       <exception cref="T:System.NotSupportedException">
1585         <paramref name="path" /> is in an invalid format.</exception>
1586     </member>
1587     <member name="M:System.IO.File.GetCreationTimeUtc(System.String)">
1588       <summary>Returns the creation date and time, in coordinated universal time (UTC), of the specified file or directory.</summary>
1589       <param name="path">The file or directory for which to obtain creation date and time information.</param>
1590       <returns>A <see cref="T:System.DateTime" /> structure set to the creation date and time for the specified file or directory. This value is expressed in UTC time.</returns>
1591       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1592       <exception cref="T:System.ArgumentException">
1593         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1594       <exception cref="T:System.ArgumentNullException">
1595         <paramref name="path" /> is <see langword="null" />.</exception>
1596       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1597       <exception cref="T:System.NotSupportedException">
1598         <paramref name="path" /> is in an invalid format.</exception>
1599     </member>
1600     <member name="M:System.IO.File.GetLastAccessTime(System.String)">
1601       <summary>Returns the date and time the specified file or directory was last accessed.</summary>
1602       <param name="path">The file or directory for which to obtain access date and time information.</param>
1603       <returns>A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time.</returns>
1604       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1605       <exception cref="T:System.ArgumentException">
1606         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1607       <exception cref="T:System.ArgumentNullException">
1608         <paramref name="path" /> is <see langword="null" />.</exception>
1609       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1610       <exception cref="T:System.NotSupportedException">
1611         <paramref name="path" /> is in an invalid format.</exception>
1612     </member>
1613     <member name="M:System.IO.File.GetLastAccessTimeUtc(System.String)">
1614       <summary>Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last accessed.</summary>
1615       <param name="path">The file or directory for which to obtain access date and time information.</param>
1616       <returns>A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in UTC time.</returns>
1617       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1618       <exception cref="T:System.ArgumentException">
1619         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1620       <exception cref="T:System.ArgumentNullException">
1621         <paramref name="path" /> is <see langword="null" />.</exception>
1622       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1623       <exception cref="T:System.NotSupportedException">
1624         <paramref name="path" /> is in an invalid format.</exception>
1625     </member>
1626     <member name="M:System.IO.File.GetLastWriteTime(System.String)">
1627       <summary>Returns the date and time the specified file or directory was last written to.</summary>
1628       <param name="path">The file or directory for which to obtain write date and time information.</param>
1629       <returns>A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last written to. This value is expressed in local time.</returns>
1630       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1631       <exception cref="T:System.ArgumentException">
1632         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1633       <exception cref="T:System.ArgumentNullException">
1634         <paramref name="path" /> is <see langword="null" />.</exception>
1635       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1636       <exception cref="T:System.NotSupportedException">
1637         <paramref name="path" /> is in an invalid format.</exception>
1638     </member>
1639     <member name="M:System.IO.File.GetLastWriteTimeUtc(System.String)">
1640       <summary>Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last written to.</summary>
1641       <param name="path">The file or directory for which to obtain write date and time information.</param>
1642       <returns>A <see cref="T:System.DateTime" /> structure set to the date and time that the specified file or directory was last written to. This value is expressed in UTC time.</returns>
1643       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1644       <exception cref="T:System.ArgumentException">
1645         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1646       <exception cref="T:System.ArgumentNullException">
1647         <paramref name="path" /> is <see langword="null" />.</exception>
1648       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1649       <exception cref="T:System.NotSupportedException">
1650         <paramref name="path" /> is in an invalid format.</exception>
1651     </member>
1652     <member name="M:System.IO.File.Move(System.String,System.String)">
1653       <summary>Moves a specified file to a new location, providing the option to specify a new file name.</summary>
1654       <param name="sourceFileName">The name of the file to move. Can include a relative or absolute path.</param>
1655       <param name="destFileName">The new path and name for the file.</param>
1656       <exception cref="T:System.IO.IOException">The destination file already exists.
1657 -or-
1658 <paramref name="sourceFileName" /> was not found.</exception>
1659       <exception cref="T:System.ArgumentNullException">
1660         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is <see langword="null" />.</exception>
1661       <exception cref="T:System.ArgumentException">
1662         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains invalid characters as defined in <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1663       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1664       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1665       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid, (for example, it is on an unmapped drive).</exception>
1666       <exception cref="T:System.NotSupportedException">
1667         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format.</exception>
1668     </member>
1669     <member name="M:System.IO.File.Move(System.String,System.String,System.Boolean)">
1670       <summary>Moves a specified file to a new location, providing the options to specify a new file name and to overwrite the destination file if it already exists.</summary>
1671       <param name="sourceFileName">The name of the file to move. Can include a relative or absolute path.</param>
1672       <param name="destFileName">The new path and name for the file.</param>
1673       <param name="overwrite">
1674         <see langword="true" /> to overwrite the destination file if it already exists; <see langword="false" /> otherwise.</param>
1675       <exception cref="T:System.IO.IOException">
1676         <paramref name="sourceFileName" /> was not found.</exception>
1677       <exception cref="T:System.ArgumentNullException">
1678         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is <see langword="null" />.</exception>
1679       <exception cref="T:System.ArgumentException">
1680         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is a zero-length string, contains only white space, or contains invalid characters as defined in <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1681       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1682       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1683       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified in <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is invalid, (for example, it is on an unmapped drive).</exception>
1684       <exception cref="T:System.NotSupportedException">
1685         <paramref name="sourceFileName" /> or <paramref name="destFileName" /> is in an invalid format.</exception>
1686     </member>
1687     <member name="M:System.IO.File.Open(System.String,System.IO.FileMode)">
1688       <summary>Opens a <see cref="T:System.IO.FileStream" /> on the specified path with read/write access with no sharing.</summary>
1689       <param name="path">The file to open.</param>
1690       <param name="mode">A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
1691       <returns>A <see cref="T:System.IO.FileStream" /> opened in the specified mode and path, with read/write access and not shared.</returns>
1692       <exception cref="T:System.ArgumentException">
1693         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1694       <exception cref="T:System.ArgumentNullException">
1695         <paramref name="path" /> is <see langword="null" />.</exception>
1696       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1697       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1698       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1699       <exception cref="T:System.UnauthorizedAccessException">
1700         <paramref name="path" /> specified a file that is read-only.
1701 -or-
1702 This operation is not supported on the current platform.
1703 -or-
1704 <paramref name="path" /> specified a directory.
1705 -or-
1706 The caller does not have the required permission.
1707 -or-
1708 <paramref name="mode" /> is <see cref="F:System.IO.FileMode.Create" /> and the specified file is a hidden file.</exception>
1709       <exception cref="T:System.ArgumentOutOfRangeException">
1710         <paramref name="mode" /> specified an invalid value.</exception>
1711       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1712       <exception cref="T:System.NotSupportedException">
1713         <paramref name="path" /> is in an invalid format.</exception>
1714     </member>
1715     <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess)">
1716       <summary>Opens a <see cref="T:System.IO.FileStream" /> on the specified path, with the specified mode and access with no sharing.</summary>
1717       <param name="path">The file to open.</param>
1718       <param name="mode">A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
1719       <param name="access">A <see cref="T:System.IO.FileAccess" /> value that specifies the operations that can be performed on the file.</param>
1720       <returns>An unshared <see cref="T:System.IO.FileStream" /> that provides access to the specified file, with the specified mode and access.</returns>
1721       <exception cref="T:System.ArgumentException">
1722         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.
1723 -or-
1724 <paramref name="access" /> specified <see langword="Read" /> and <paramref name="mode" /> specified <see langword="Create" />, <see langword="CreateNew" />, <see langword="Truncate" />, or <see langword="Append" />.</exception>
1725       <exception cref="T:System.ArgumentNullException">
1726         <paramref name="path" /> is <see langword="null" />.</exception>
1727       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1728       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1729       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1730       <exception cref="T:System.UnauthorizedAccessException">
1731         <paramref name="path" /> specified a file that is read-only and <paramref name="access" /> is not <see langword="Read" />.
1732 -or-
1733 <paramref name="path" /> specified a directory.
1734 -or-
1735 The caller does not have the required permission.
1736 -or-
1737 <paramref name="mode" /> is <see cref="F:System.IO.FileMode.Create" /> and the specified file is a hidden file.</exception>
1738       <exception cref="T:System.ArgumentOutOfRangeException">
1739         <paramref name="mode" /> or <paramref name="access" /> specified an invalid value.</exception>
1740       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1741       <exception cref="T:System.NotSupportedException">
1742         <paramref name="path" /> is in an invalid format.</exception>
1743     </member>
1744     <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
1745       <summary>Opens a <see cref="T:System.IO.FileStream" /> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
1746       <param name="path">The file to open.</param>
1747       <param name="mode">A <see cref="T:System.IO.FileMode" /> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
1748       <param name="access">A <see cref="T:System.IO.FileAccess" /> value that specifies the operations that can be performed on the file.</param>
1749       <param name="share">A <see cref="T:System.IO.FileShare" /> value specifying the type of access other threads have to the file.</param>
1750       <returns>A <see cref="T:System.IO.FileStream" /> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</returns>
1751       <exception cref="T:System.ArgumentException">
1752         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.
1753 -or-
1754 <paramref name="access" /> specified <see langword="Read" /> and <paramref name="mode" /> specified <see langword="Create" />, <see langword="CreateNew" />, <see langword="Truncate" />, or <see langword="Append" />.</exception>
1755       <exception cref="T:System.ArgumentNullException">
1756         <paramref name="path" /> is <see langword="null" />.</exception>
1757       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1758       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1759       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1760       <exception cref="T:System.UnauthorizedAccessException">
1761         <paramref name="path" /> specified a file that is read-only and <paramref name="access" /> is not <see langword="Read" />.
1762 -or-
1763 <paramref name="path" /> specified a directory.
1764 -or-
1765 The caller does not have the required permission.
1766 -or-
1767 <paramref name="mode" /> is <see cref="F:System.IO.FileMode.Create" /> and the specified file is a hidden file.</exception>
1768       <exception cref="T:System.ArgumentOutOfRangeException">
1769         <paramref name="mode" />, <paramref name="access" />, or <paramref name="share" /> specified an invalid value.</exception>
1770       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1771       <exception cref="T:System.NotSupportedException">
1772         <paramref name="path" /> is in an invalid format.</exception>
1773     </member>
1774     <member name="M:System.IO.File.OpenRead(System.String)">
1775       <summary>Opens an existing file for reading.</summary>
1776       <param name="path">The file to be opened for reading.</param>
1777       <returns>A read-only <see cref="T:System.IO.FileStream" /> on the specified path.</returns>
1778       <exception cref="T:System.ArgumentException">
1779         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1780       <exception cref="T:System.ArgumentNullException">
1781         <paramref name="path" /> is <see langword="null" />.</exception>
1782       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1783       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1784       <exception cref="T:System.UnauthorizedAccessException">
1785         <paramref name="path" /> specified a directory.
1786 -or-
1787 The caller does not have the required permission.</exception>
1788       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1789       <exception cref="T:System.NotSupportedException">
1790         <paramref name="path" /> is in an invalid format.</exception>
1791       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1792     </member>
1793     <member name="M:System.IO.File.OpenText(System.String)">
1794       <summary>Opens an existing UTF-8 encoded text file for reading.</summary>
1795       <param name="path">The file to be opened for reading.</param>
1796       <returns>A <see cref="T:System.IO.StreamReader" /> on the specified path.</returns>
1797       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
1798       <exception cref="T:System.ArgumentException">
1799         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1800       <exception cref="T:System.ArgumentNullException">
1801         <paramref name="path" /> is <see langword="null" />.</exception>
1802       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1803       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1804       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1805       <exception cref="T:System.NotSupportedException">
1806         <paramref name="path" /> is in an invalid format.</exception>
1807     </member>
1808     <member name="M:System.IO.File.OpenWrite(System.String)">
1809       <summary>Opens an existing file or creates a new file for writing.</summary>
1810       <param name="path">The file to be opened for writing.</param>
1811       <returns>An unshared <see cref="T:System.IO.FileStream" /> object on the specified path with <see cref="F:System.IO.FileAccess.Write" /> access.</returns>
1812       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.
1813 -or-
1814 <paramref name="path" /> specified a read-only file or directory.</exception>
1815       <exception cref="T:System.ArgumentException">
1816         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1817       <exception cref="T:System.ArgumentNullException">
1818         <paramref name="path" /> is <see langword="null" />.</exception>
1819       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1820       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
1821       <exception cref="T:System.NotSupportedException">
1822         <paramref name="path" /> is in an invalid format.</exception>
1823     </member>
1824     <member name="M:System.IO.File.ReadAllBytes(System.String)">
1825       <summary>Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
1826       <param name="path">The file to open for reading.</param>
1827       <returns>A byte array containing the contents of the file.</returns>
1828       <exception cref="T:System.ArgumentException">
1829         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1830       <exception cref="T:System.ArgumentNullException">
1831         <paramref name="path" /> is <see langword="null" />.</exception>
1832       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1833       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1834       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1835       <exception cref="T:System.UnauthorizedAccessException">This operation is not supported on the current platform.
1836 -or-
1837 <paramref name="path" /> specified a directory.
1838 -or-
1839 The caller does not have the required permission.</exception>
1840       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1841       <exception cref="T:System.NotSupportedException">
1842         <paramref name="path" /> is in an invalid format.</exception>
1843       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1844     </member>
1845     <member name="M:System.IO.File.ReadAllBytesAsync(System.String,System.Threading.CancellationToken)">
1846       <summary>Asynchronously opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
1847       <param name="path">The file to open for reading.</param>
1848       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1849       <returns>A task that represents the asynchronous read operation, which wraps the byte array containing the contents of the file.</returns>
1850     </member>
1851     <member name="M:System.IO.File.ReadAllLines(System.String)">
1852       <summary>Opens a text file, reads all lines of the file, and then closes the file.</summary>
1853       <param name="path">The file to open for reading.</param>
1854       <returns>A string array containing all lines of the file.</returns>
1855       <exception cref="T:System.ArgumentException">
1856         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1857       <exception cref="T:System.ArgumentNullException">
1858         <paramref name="path" /> is <see langword="null" />.</exception>
1859       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1860       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1861       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1862       <exception cref="T:System.UnauthorizedAccessException">
1863         <paramref name="path" /> specified a file that is read-only.
1864 -or-
1865 This operation is not supported on the current platform.
1866 -or-
1867 <paramref name="path" /> specified a directory.
1868 -or-
1869 The caller does not have the required permission.</exception>
1870       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1871       <exception cref="T:System.NotSupportedException">
1872         <paramref name="path" /> is in an invalid format.</exception>
1873       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1874     </member>
1875     <member name="M:System.IO.File.ReadAllLines(System.String,System.Text.Encoding)">
1876       <summary>Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
1877       <param name="path">The file to open for reading.</param>
1878       <param name="encoding">The encoding applied to the contents of the file.</param>
1879       <returns>A string array containing all lines of the file.</returns>
1880       <exception cref="T:System.ArgumentException">
1881         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1882       <exception cref="T:System.ArgumentNullException">
1883         <paramref name="path" /> is <see langword="null" />.</exception>
1884       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1885       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1886       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1887       <exception cref="T:System.UnauthorizedAccessException">
1888         <paramref name="path" /> specified a file that is read-only.
1889 -or-
1890 This operation is not supported on the current platform.
1891 -or-
1892 <paramref name="path" /> specified a directory.
1893 -or-
1894 The caller does not have the required permission.</exception>
1895       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1896       <exception cref="T:System.NotSupportedException">
1897         <paramref name="path" /> is in an invalid format.</exception>
1898       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1899     </member>
1900     <member name="M:System.IO.File.ReadAllLinesAsync(System.String,System.Text.Encoding,System.Threading.CancellationToken)">
1901       <summary>Asynchronously opens a text file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
1902       <param name="path">The file to open for reading.</param>
1903       <param name="encoding">The encoding applied to the contents of the file.</param>
1904       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1905       <returns>A task that represents the asynchronous read operation, which wraps the string array containing all lines of the file.</returns>
1906     </member>
1907     <member name="M:System.IO.File.ReadAllLinesAsync(System.String,System.Threading.CancellationToken)">
1908       <summary>Asynchronously opens a text file, reads all lines of the file, and then closes the file.</summary>
1909       <param name="path">The file to open for reading.</param>
1910       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1911       <returns>A task that represents the asynchronous read operation, which wraps the string array containing all lines of the file.</returns>
1912     </member>
1913     <member name="M:System.IO.File.ReadAllText(System.String)">
1914       <summary>Opens a text file, reads all the text in the file, and then closes the file.</summary>
1915       <param name="path">The file to open for reading.</param>
1916       <returns>A string containing all the text in the file.</returns>
1917       <exception cref="T:System.ArgumentException">
1918         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1919       <exception cref="T:System.ArgumentNullException">
1920         <paramref name="path" /> is <see langword="null" />.</exception>
1921       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1922       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1923       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1924       <exception cref="T:System.UnauthorizedAccessException">
1925         <paramref name="path" /> specified a file that is read-only.
1926 -or-
1927 This operation is not supported on the current platform.
1928 -or-
1929 <paramref name="path" /> specified a directory.
1930 -or-
1931 The caller does not have the required permission.</exception>
1932       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1933       <exception cref="T:System.NotSupportedException">
1934         <paramref name="path" /> is in an invalid format.</exception>
1935       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1936     </member>
1937     <member name="M:System.IO.File.ReadAllText(System.String,System.Text.Encoding)">
1938       <summary>Opens a file, reads all text in the file with the specified encoding, and then closes the file.</summary>
1939       <param name="path">The file to open for reading.</param>
1940       <param name="encoding">The encoding applied to the contents of the file.</param>
1941       <returns>A string containing all text in the file.</returns>
1942       <exception cref="T:System.ArgumentException">
1943         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
1944       <exception cref="T:System.ArgumentNullException">
1945         <paramref name="path" /> is <see langword="null" />.</exception>
1946       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
1947       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
1948       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1949       <exception cref="T:System.UnauthorizedAccessException">
1950         <paramref name="path" /> specified a file that is read-only.
1951 -or-
1952 This operation is not supported on the current platform.
1953 -or-
1954 <paramref name="path" /> specified a directory.
1955 -or-
1956 The caller does not have the required permission.</exception>
1957       <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="path" /> was not found.</exception>
1958       <exception cref="T:System.NotSupportedException">
1959         <paramref name="path" /> is in an invalid format.</exception>
1960       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1961     </member>
1962     <member name="M:System.IO.File.ReadAllTextAsync(System.String,System.Text.Encoding,System.Threading.CancellationToken)">
1963       <summary>Asynchronously opens a text file, reads all text in the file with the specified encoding, and then closes the file.</summary>
1964       <param name="path">The file to open for reading.</param>
1965       <param name="encoding">The encoding applied to the contents of the file.</param>
1966       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1967       <returns>A task that represents the asynchronous read operation, which wraps the string containing all text in the file.</returns>
1968     </member>
1969     <member name="M:System.IO.File.ReadAllTextAsync(System.String,System.Threading.CancellationToken)">
1970       <summary>Asynchronously opens a text file, reads all the text in the file, and then closes the file.</summary>
1971       <param name="path">The file to open for reading.</param>
1972       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1973       <returns>A task that represents the asynchronous read operation, which wraps the string containing all text in the file.</returns>
1974     </member>
1975     <member name="M:System.IO.File.ReadLines(System.String)">
1976       <summary>Reads the lines of a file.</summary>
1977       <param name="path">The file to read.</param>
1978       <returns>All the lines of the file, or the lines that are the result of a query.</returns>
1979       <exception cref="T:System.ArgumentException">
1980         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
1981       <exception cref="T:System.ArgumentNullException">
1982         <paramref name="path" /> is <see langword="null" />.</exception>
1983       <exception cref="T:System.IO.DirectoryNotFoundException">
1984         <paramref name="path" /> is invalid (for example, it is on an unmapped drive).</exception>
1985       <exception cref="T:System.IO.FileNotFoundException">The file specified by <paramref name="path" /> was not found.</exception>
1986       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
1987       <exception cref="T:System.IO.PathTooLongException">
1988         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
1989       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
1990       <exception cref="T:System.UnauthorizedAccessException">
1991         <paramref name="path" /> specifies a file that is read-only.
1992 -or-
1993 This operation is not supported on the current platform.
1994 -or-
1995 <paramref name="path" /> is a directory.
1996 -or-
1997 The caller does not have the required permission.</exception>
1998     </member>
1999     <member name="M:System.IO.File.ReadLines(System.String,System.Text.Encoding)">
2000       <summary>Read the lines of a file that has a specified encoding.</summary>
2001       <param name="path">The file to read.</param>
2002       <param name="encoding">The encoding that is applied to the contents of the file.</param>
2003       <returns>All the lines of the file, or the lines that are the result of a query.</returns>
2004       <exception cref="T:System.ArgumentException">
2005         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
2006       <exception cref="T:System.ArgumentNullException">
2007         <paramref name="path" /> is <see langword="null" />.</exception>
2008       <exception cref="T:System.IO.DirectoryNotFoundException">
2009         <paramref name="path" /> is invalid (for example, it is on an unmapped drive).</exception>
2010       <exception cref="T:System.IO.FileNotFoundException">The file specified by <paramref name="path" /> was not found.</exception>
2011       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2012       <exception cref="T:System.IO.PathTooLongException">
2013         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
2014       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2015       <exception cref="T:System.UnauthorizedAccessException">
2016         <paramref name="path" /> specifies a file that is read-only.
2017 -or-
2018 This operation is not supported on the current platform.
2019 -or-
2020 <paramref name="path" /> is a directory.
2021 -or-
2022 The caller does not have the required permission.</exception>
2023     </member>
2024     <member name="M:System.IO.File.Replace(System.String,System.String,System.String)">
2025       <summary>Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of the replaced file.</summary>
2026       <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName" />.</param>
2027       <param name="destinationFileName">The name of the file being replaced.</param>
2028       <param name="destinationBackupFileName">The name of the backup file.</param>
2029       <exception cref="T:System.ArgumentException">The path described by the <paramref name="destinationFileName" /> parameter was not of a legal form.
2030 -or-
2031 The path described by the <paramref name="destinationBackupFileName" /> parameter was not of a legal form.</exception>
2032       <exception cref="T:System.ArgumentNullException">The <paramref name="destinationFileName" /> parameter is <see langword="null" />.</exception>
2033       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
2034       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.
2035 -or-
2036 The file described by the <paramref name="destinationBackupFileName" /> parameter could not be found.</exception>
2037       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.
2038 -or-
2039 The <paramref name="sourceFileName" /> and <paramref name="destinationFileName" /> parameters specify the same file.</exception>
2040       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2041       <exception cref="T:System.PlatformNotSupportedException">The operating system is Windows 98 Second Edition or earlier and the files system is not NTFS.</exception>
2042       <exception cref="T:System.UnauthorizedAccessException">The <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> parameter specifies a file that is read-only.
2043 -or-
2044 This operation is not supported on the current platform.
2045 -or-
2046 Source or destination parameters specify a directory instead of a file.
2047 -or-
2048 The caller does not have the required permission.</exception>
2049     </member>
2050     <member name="M:System.IO.File.Replace(System.String,System.String,System.String,System.Boolean)">
2051       <summary>Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of the replaced file and optionally ignores merge errors.</summary>
2052       <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName" />.</param>
2053       <param name="destinationFileName">The name of the file being replaced.</param>
2054       <param name="destinationBackupFileName">The name of the backup file.</param>
2055       <param name="ignoreMetadataErrors">
2056         <see langword="true" /> to ignore merge errors (such as attributes and access control lists (ACLs)) from the replaced file to the replacement file; otherwise, <see langword="false" />.</param>
2057       <exception cref="T:System.ArgumentException">The path described by the <paramref name="destinationFileName" /> parameter was not of a legal form.
2058 -or-
2059 The path described by the <paramref name="destinationBackupFileName" /> parameter was not of a legal form.</exception>
2060       <exception cref="T:System.ArgumentNullException">The <paramref name="destinationFileName" /> parameter is <see langword="null" />.</exception>
2061       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
2062       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.
2063 -or-
2064 The file described by the <paramref name="destinationBackupFileName" /> parameter could not be found.</exception>
2065       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.
2066 -or-
2067 The <paramref name="sourceFileName" /> and <paramref name="destinationFileName" /> parameters specify the same file.</exception>
2068       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2069       <exception cref="T:System.PlatformNotSupportedException">The operating system is Windows 98 Second Edition or earlier and the files system is not NTFS.</exception>
2070       <exception cref="T:System.UnauthorizedAccessException">The <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> parameter specifies a file that is read-only.
2071 -or-
2072 This operation is not supported on the current platform.
2073 -or-
2074 Source or destination parameters specify a directory instead of a file.
2075 -or-
2076 The caller does not have the required permission.</exception>
2077     </member>
2078     <member name="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)">
2079       <summary>Sets the specified <see cref="T:System.IO.FileAttributes" /> of the file on the specified path.</summary>
2080       <param name="path">The path to the file.</param>
2081       <param name="fileAttributes">A bitwise combination of the enumeration values.</param>
2082       <exception cref="T:System.ArgumentException">
2083         <paramref name="path" /> is empty, contains only white spaces, contains invalid characters, or the file attribute is invalid.</exception>
2084       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2085       <exception cref="T:System.NotSupportedException">
2086         <paramref name="path" /> is in an invalid format.</exception>
2087       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
2088       <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
2089       <exception cref="T:System.UnauthorizedAccessException">
2090         <paramref name="path" /> specified a file that is read-only.
2091 -or-
2092 This operation is not supported on the current platform.
2093 -or-
2094 <paramref name="path" /> specified a directory.
2095 -or-
2096 The caller does not have the required permission.</exception>
2097     </member>
2098     <member name="M:System.IO.File.SetCreationTime(System.String,System.DateTime)">
2099       <summary>Sets the date and time the file was created.</summary>
2100       <param name="path">The file for which to set the creation date and time information.</param>
2101       <param name="creationTime">A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in local time.</param>
2102       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2103       <exception cref="T:System.ArgumentException">
2104         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2105       <exception cref="T:System.ArgumentNullException">
2106         <paramref name="path" /> is <see langword="null" />.</exception>
2107       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2108       <exception cref="T:System.IO.IOException">An I/O error occurred while performing the operation.</exception>
2109       <exception cref="T:System.ArgumentOutOfRangeException">
2110         <paramref name="creationTime" /> specifies a value outside the range of dates, times, or both permitted for this operation.</exception>
2111       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2112       <exception cref="T:System.NotSupportedException">
2113         <paramref name="path" /> is in an invalid format.</exception>
2114     </member>
2115     <member name="M:System.IO.File.SetCreationTimeUtc(System.String,System.DateTime)">
2116       <summary>Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
2117       <param name="path">The file for which to set the creation date and time information.</param>
2118       <param name="creationTimeUtc">A <see cref="T:System.DateTime" /> containing the value to set for the creation date and time of <paramref name="path" />. This value is expressed in UTC time.</param>
2119       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2120       <exception cref="T:System.ArgumentException">
2121         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2122       <exception cref="T:System.ArgumentNullException">
2123         <paramref name="path" /> is <see langword="null" />.</exception>
2124       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2125       <exception cref="T:System.IO.IOException">An I/O error occurred while performing the operation.</exception>
2126       <exception cref="T:System.ArgumentOutOfRangeException">
2127         <paramref name="creationTime" /> specifies a value outside the range of dates, times, or both permitted for this operation.</exception>
2128       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2129       <exception cref="T:System.NotSupportedException">
2130         <paramref name="path" /> is in an invalid format.</exception>
2131     </member>
2132     <member name="M:System.IO.File.SetLastAccessTime(System.String,System.DateTime)">
2133       <summary>Sets the date and time the specified file was last accessed.</summary>
2134       <param name="path">The file for which to set the access date and time information.</param>
2135       <param name="lastAccessTime">A <see cref="T:System.DateTime" /> containing the value to set for the last access date and time of <paramref name="path" />. This value is expressed in local time.</param>
2136       <exception cref="T:System.ArgumentException">
2137         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2138       <exception cref="T:System.ArgumentNullException">
2139         <paramref name="path" /> is <see langword="null" />.</exception>
2140       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2141       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2142       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2143       <exception cref="T:System.NotSupportedException">
2144         <paramref name="path" /> is in an invalid format.</exception>
2145       <exception cref="T:System.ArgumentOutOfRangeException">
2146         <paramref name="lastAccessTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
2147     </member>
2148     <member name="M:System.IO.File.SetLastAccessTimeUtc(System.String,System.DateTime)">
2149       <summary>Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
2150       <param name="path">The file for which to set the access date and time information.</param>
2151       <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime" /> containing the value to set for the last access date and time of <paramref name="path" />. This value is expressed in UTC time.</param>
2152       <exception cref="T:System.ArgumentException">
2153         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2154       <exception cref="T:System.ArgumentNullException">
2155         <paramref name="path" /> is <see langword="null" />.</exception>
2156       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2157       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2158       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2159       <exception cref="T:System.NotSupportedException">
2160         <paramref name="path" /> is in an invalid format.</exception>
2161       <exception cref="T:System.ArgumentOutOfRangeException">
2162         <paramref name="lastAccessTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
2163     </member>
2164     <member name="M:System.IO.File.SetLastWriteTime(System.String,System.DateTime)">
2165       <summary>Sets the date and time that the specified file was last written to.</summary>
2166       <param name="path">The file for which to set the date and time information.</param>
2167       <param name="lastWriteTime">A <see cref="T:System.DateTime" /> containing the value to set for the last write date and time of <paramref name="path" />. This value is expressed in local time.</param>
2168       <exception cref="T:System.ArgumentException">
2169         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2170       <exception cref="T:System.ArgumentNullException">
2171         <paramref name="path" /> is <see langword="null" />.</exception>
2172       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2173       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2174       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2175       <exception cref="T:System.NotSupportedException">
2176         <paramref name="path" /> is in an invalid format.</exception>
2177       <exception cref="T:System.ArgumentOutOfRangeException">
2178         <paramref name="lastWriteTime" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
2179     </member>
2180     <member name="M:System.IO.File.SetLastWriteTimeUtc(System.String,System.DateTime)">
2181       <summary>Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.</summary>
2182       <param name="path">The file for which to set the date and time information.</param>
2183       <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime" /> containing the value to set for the last write date and time of <paramref name="path" />. This value is expressed in UTC time.</param>
2184       <exception cref="T:System.ArgumentException">
2185         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2186       <exception cref="T:System.ArgumentNullException">
2187         <paramref name="path" /> is <see langword="null" />.</exception>
2188       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2189       <exception cref="T:System.IO.FileNotFoundException">The specified path was not found.</exception>
2190       <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission.</exception>
2191       <exception cref="T:System.NotSupportedException">
2192         <paramref name="path" /> is in an invalid format.</exception>
2193       <exception cref="T:System.ArgumentOutOfRangeException">
2194         <paramref name="lastWriteTimeUtc" /> specifies a value outside the range of dates or times permitted for this operation.</exception>
2195     </member>
2196     <member name="M:System.IO.File.WriteAllBytes(System.String,System.Byte[])">
2197       <summary>Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
2198       <param name="path">The file to write to.</param>
2199       <param name="bytes">The bytes to write to the file.</param>
2200       <exception cref="T:System.ArgumentException">
2201         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2202       <exception cref="T:System.ArgumentNullException">
2203         <paramref name="path" /> is <see langword="null" /> or the byte array is empty.</exception>
2204       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2205       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
2206       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2207       <exception cref="T:System.UnauthorizedAccessException">
2208         <paramref name="path" /> specified a file that is read-only.
2209 -or-
2210 <paramref name="path" /> specified a file that is hidden.
2211 -or-
2212 This operation is not supported on the current platform.
2213 -or-
2214 <paramref name="path" /> specified a directory.
2215 -or-
2216 The caller does not have the required permission.</exception>
2217       <exception cref="T:System.NotSupportedException">
2218         <paramref name="path" /> is in an invalid format.</exception>
2219       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2220     </member>
2221     <member name="M:System.IO.File.WriteAllBytesAsync(System.String,System.Byte[],System.Threading.CancellationToken)">
2222       <summary>Asynchronously creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
2223       <param name="path">The file to write to.</param>
2224       <param name="bytes">The bytes to write to the file.</param>
2225       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2226       <returns>A task that represents the asynchronous write operation.</returns>
2227     </member>
2228     <member name="M:System.IO.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
2229       <summary>Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
2230       <param name="path">The file to write to.</param>
2231       <param name="contents">The lines to write to the file.</param>
2232       <exception cref="T:System.ArgumentException">
2233         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
2234       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" /> or <paramref name="contents" /> is <see langword="null" />.</exception>
2235       <exception cref="T:System.IO.DirectoryNotFoundException">
2236         <paramref name="path" /> is invalid (for example, it is on an unmapped drive).</exception>
2237       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2238       <exception cref="T:System.IO.PathTooLongException">
2239         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
2240       <exception cref="T:System.NotSupportedException">
2241         <paramref name="path" /> is in an invalid format.</exception>
2242       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2243       <exception cref="T:System.UnauthorizedAccessException">
2244         <paramref name="path" /> specified a file that is read-only.
2245 -or-
2246 <paramref name="path" /> specified a file that is hidden.
2247 -or-
2248 This operation is not supported on the current platform.
2249 -or-
2250 <paramref name="path" /> is a directory.
2251 -or-
2252 The caller does not have the required permission.</exception>
2253     </member>
2254     <member name="M:System.IO.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
2255       <summary>Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
2256       <param name="path">The file to write to.</param>
2257       <param name="contents">The lines to write to the file.</param>
2258       <param name="encoding">The character encoding to use.</param>
2259       <exception cref="T:System.ArgumentException">
2260         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
2261       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" />, <paramref name="contents" />, or <paramref name="encoding" /> is <see langword="null" />.</exception>
2262       <exception cref="T:System.IO.DirectoryNotFoundException">
2263         <paramref name="path" /> is invalid (for example, it is on an unmapped drive).</exception>
2264       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2265       <exception cref="T:System.IO.PathTooLongException">
2266         <paramref name="path" /> exceeds the system-defined maximum length.</exception>
2267       <exception cref="T:System.NotSupportedException">
2268         <paramref name="path" /> is in an invalid format.</exception>
2269       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2270       <exception cref="T:System.UnauthorizedAccessException">
2271         <paramref name="path" /> specified a file that is read-only.
2272 -or-
2273 <paramref name="path" /> specified a file that is hidden.
2274 -or-
2275 This operation is not supported on the current platform.
2276 -or-
2277 <paramref name="path" /> is a directory.
2278 -or-
2279 The caller does not have the required permission.</exception>
2280     </member>
2281     <member name="M:System.IO.File.WriteAllLines(System.String,System.String[])">
2282       <summary>Creates a new file, write the specified string array to the file, and then closes the file.</summary>
2283       <param name="path">The file to write to.</param>
2284       <param name="contents">The string array to write to the file.</param>
2285       <exception cref="T:System.ArgumentException">
2286         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2287       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" /> or <paramref name="contents" /> is <see langword="null" />.</exception>
2288       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2289       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
2290       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2291       <exception cref="T:System.UnauthorizedAccessException">
2292         <paramref name="path" /> specified a file that is read-only.
2293 -or-
2294 <paramref name="path" /> specified a file that is hidden.
2295 -or-
2296 This operation is not supported on the current platform.
2297 -or-
2298 <paramref name="path" /> specified a directory.
2299 -or-
2300 The caller does not have the required permission.</exception>
2301       <exception cref="T:System.NotSupportedException">
2302         <paramref name="path" /> is in an invalid format.</exception>
2303       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2304     </member>
2305     <member name="M:System.IO.File.WriteAllLines(System.String,System.String[],System.Text.Encoding)">
2306       <summary>Creates a new file, writes the specified string array to the file by using the specified encoding, and then closes the file.</summary>
2307       <param name="path">The file to write to.</param>
2308       <param name="contents">The string array to write to the file.</param>
2309       <param name="encoding">An <see cref="T:System.Text.Encoding" /> object that represents the character encoding applied to the string array.</param>
2310       <exception cref="T:System.ArgumentException">
2311         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2312       <exception cref="T:System.ArgumentNullException">Either <paramref name="path" /> or <paramref name="contents" /> is <see langword="null" />.</exception>
2313       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2314       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
2315       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2316       <exception cref="T:System.UnauthorizedAccessException">
2317         <paramref name="path" /> specified a file that is read-only.
2318 -or-
2319 <paramref name="path" /> specified a file that is hidden.
2320 -or-
2321 This operation is not supported on the current platform.
2322 -or-
2323 <paramref name="path" /> specified a directory.
2324 -or-
2325 The caller does not have the required permission.</exception>
2326       <exception cref="T:System.NotSupportedException">
2327         <paramref name="path" /> is in an invalid format.</exception>
2328       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2329     </member>
2330     <member name="M:System.IO.File.WriteAllLinesAsync(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,System.Threading.CancellationToken)">
2331       <summary>Asynchronously creates a new file, write the specified lines to the file by using the specified encoding, and then closes the file.</summary>
2332       <param name="path">The file to write to.</param>
2333       <param name="contents">The lines to write to the file.</param>
2334       <param name="encoding">The character encoding to use.</param>
2335       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2336       <returns>A task that represents the asynchronous write operation.</returns>
2337     </member>
2338     <member name="M:System.IO.File.WriteAllLinesAsync(System.String,System.Collections.Generic.IEnumerable{System.String},System.Threading.CancellationToken)">
2339       <summary>Asynchronously creates a new file, writes the specified lines to the file, and then closes the file.</summary>
2340       <param name="path">The file to write to.</param>
2341       <param name="contents">The lines to write to the file.</param>
2342       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2343       <returns>A task that represents the asynchronous write operation.</returns>
2344     </member>
2345     <member name="M:System.IO.File.WriteAllText(System.String,System.String)">
2346       <summary>Creates a new file, writes the specified string to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
2347       <param name="path">The file to write to.</param>
2348       <param name="contents">The string to write to the file.</param>
2349       <exception cref="T:System.ArgumentException">
2350         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2351       <exception cref="T:System.ArgumentNullException">
2352         <paramref name="path" /> is <see langword="null" />.</exception>
2353       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2354       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
2355       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2356       <exception cref="T:System.UnauthorizedAccessException">
2357         <paramref name="path" /> specified a file that is read-only.
2358 -or-
2359 <paramref name="path" /> specified a file that is hidden.
2360 -or-
2361 This operation is not supported on the current platform.
2362 -or-
2363 <paramref name="path" /> specified a directory.
2364 -or-
2365 The caller does not have the required permission.</exception>
2366       <exception cref="T:System.NotSupportedException">
2367         <paramref name="path" /> is in an invalid format.</exception>
2368       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2369     </member>
2370     <member name="M:System.IO.File.WriteAllText(System.String,System.String,System.Text.Encoding)">
2371       <summary>Creates a new file, writes the specified string to the file using the specified encoding, and then closes the file. If the target file already exists, it is overwritten.</summary>
2372       <param name="path">The file to write to.</param>
2373       <param name="contents">The string to write to the file.</param>
2374       <param name="encoding">The encoding to apply to the string.</param>
2375       <exception cref="T:System.ArgumentException">
2376         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
2377       <exception cref="T:System.ArgumentNullException">
2378         <paramref name="path" /> is <see langword="null" />.</exception>
2379       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2380       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
2381       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2382       <exception cref="T:System.UnauthorizedAccessException">
2383         <paramref name="path" /> specified a file that is read-only.
2384 -or-
2385 <paramref name="path" /> specified a file that is hidden.
2386 -or-
2387 This operation is not supported on the current platform.
2388 -or-
2389 <paramref name="path" /> specified a directory.
2390 -or-
2391 The caller does not have the required permission.</exception>
2392       <exception cref="T:System.NotSupportedException">
2393         <paramref name="path" /> is in an invalid format.</exception>
2394       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2395     </member>
2396     <member name="M:System.IO.File.WriteAllTextAsync(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken)">
2397       <summary>Asynchronously creates a new file, writes the specified string to the file using the specified encoding, and then closes the file. If the target file already exists, it is overwritten.</summary>
2398       <param name="path">The file to write to.</param>
2399       <param name="contents">The string to write to the file.</param>
2400       <param name="encoding">The encoding to apply to the string.</param>
2401       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2402       <returns>A task that represents the asynchronous write operation.</returns>
2403     </member>
2404     <member name="M:System.IO.File.WriteAllTextAsync(System.String,System.String,System.Threading.CancellationToken)">
2405       <summary>Asynchronously creates a new file, writes the specified string to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
2406       <param name="path">The file to write to.</param>
2407       <param name="contents">The string to write to the file.</param>
2408       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2409       <returns>A task that represents the asynchronous write operation.</returns>
2410     </member>
2411     <member name="T:System.IO.FileInfo">
2412       <summary>Provides properties and instance methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of <see cref="T:System.IO.FileStream" /> objects. This class cannot be inherited.</summary>
2413     </member>
2414     <member name="M:System.IO.FileInfo.#ctor(System.String)">
2415       <summary>Initializes a new instance of the <see cref="T:System.IO.FileInfo" /> class, which acts as a wrapper for a file path.</summary>
2416       <param name="fileName">The fully qualified name of the new file, or the relative file name. Do not end the path with the directory separator character.</param>
2417       <exception cref="T:System.ArgumentNullException">
2418         <paramref name="fileName" /> is <see langword="null" />.</exception>
2419       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2420       <exception cref="T:System.ArgumentException">The file name is empty, contains only white spaces, or contains invalid characters.</exception>
2421       <exception cref="T:System.UnauthorizedAccessException">Access to <paramref name="fileName" /> is denied.</exception>
2422       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2423       <exception cref="T:System.NotSupportedException">
2424         <paramref name="fileName" /> contains a colon (:) in the middle of the string.</exception>
2425     </member>
2426     <member name="M:System.IO.FileInfo.AppendText">
2427       <summary>Creates a <see cref="T:System.IO.StreamWriter" /> that appends text to the file represented by this instance of the <see cref="T:System.IO.FileInfo" />.</summary>
2428       <returns>A new <see langword="StreamWriter" />.</returns>
2429     </member>
2430     <member name="M:System.IO.FileInfo.CopyTo(System.String)">
2431       <summary>Copies an existing file to a new file, disallowing the overwriting of an existing file.</summary>
2432       <param name="destFileName">The name of the new file to copy to.</param>
2433       <returns>A new file with a fully qualified path.</returns>
2434       <exception cref="T:System.ArgumentException">
2435         <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters.</exception>
2436       <exception cref="T:System.IO.IOException">An error occurs, or the destination file already exists.</exception>
2437       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2438       <exception cref="T:System.ArgumentNullException">
2439         <paramref name="destFileName" /> is <see langword="null" />.</exception>
2440       <exception cref="T:System.UnauthorizedAccessException">A directory path is passed in, or the file is being moved to a different drive.</exception>
2441       <exception cref="T:System.IO.DirectoryNotFoundException">The directory specified in <paramref name="destFileName" /> does not exist.</exception>
2442       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2443       <exception cref="T:System.NotSupportedException">
2444         <paramref name="destFileName" /> contains a colon (:) within the string but does not specify the volume.</exception>
2445     </member>
2446     <member name="M:System.IO.FileInfo.CopyTo(System.String,System.Boolean)">
2447       <summary>Copies an existing file to a new file, allowing the overwriting of an existing file.</summary>
2448       <param name="destFileName">The name of the new file to copy to.</param>
2449       <param name="overwrite">
2450         <see langword="true" /> to allow an existing file to be overwritten; otherwise, <see langword="false" />.</param>
2451       <returns>A new file, or an overwrite of an existing file if <paramref name="overwrite" /> is <see langword="true" />. If the file exists and <paramref name="overwrite" /> is <see langword="false" />, an <see cref="T:System.IO.IOException" /> is thrown.</returns>
2452       <exception cref="T:System.ArgumentException">
2453         <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters.</exception>
2454       <exception cref="T:System.IO.IOException">An error occurs, or the destination file already exists and <paramref name="overwrite" /> is <see langword="false" />.</exception>
2455       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2456       <exception cref="T:System.ArgumentNullException">
2457         <paramref name="destFileName" /> is <see langword="null" />.</exception>
2458       <exception cref="T:System.IO.DirectoryNotFoundException">The directory specified in <paramref name="destFileName" /> does not exist.</exception>
2459       <exception cref="T:System.UnauthorizedAccessException">A directory path is passed in, or the file is being moved to a different drive.</exception>
2460       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2461       <exception cref="T:System.NotSupportedException">
2462         <paramref name="destFileName" /> contains a colon (:) in the middle of the string.</exception>
2463     </member>
2464     <member name="M:System.IO.FileInfo.Create">
2465       <summary>Creates a file.</summary>
2466       <returns>A new file.</returns>
2467     </member>
2468     <member name="M:System.IO.FileInfo.CreateText">
2469       <summary>Creates a <see cref="T:System.IO.StreamWriter" /> that writes a new text file.</summary>
2470       <returns>A new <see langword="StreamWriter" />.</returns>
2471       <exception cref="T:System.UnauthorizedAccessException">The file name is a directory.</exception>
2472       <exception cref="T:System.IO.IOException">The disk is read-only.</exception>
2473       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2474     </member>
2475     <member name="M:System.IO.FileInfo.Decrypt">
2476       <summary>Decrypts a file that was encrypted by the current account using the <see cref="M:System.IO.FileInfo.Encrypt" /> method.</summary>
2477       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
2478       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.</exception>
2479       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2480       <exception cref="T:System.NotSupportedException">The file system is not NTFS.</exception>
2481       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows NT or later.</exception>
2482       <exception cref="T:System.UnauthorizedAccessException">The file described by the current <see cref="T:System.IO.FileInfo" /> object is read-only.
2483 -or-
2484 This operation is not supported on the current platform.
2485 -or-
2486 The caller does not have the required permission.</exception>
2487     </member>
2488     <member name="M:System.IO.FileInfo.Delete">
2489       <summary>Permanently deletes a file.</summary>
2490       <exception cref="T:System.IO.IOException">The target file is open or memory-mapped on a computer running Microsoft Windows NT.
2491 -or-
2492 There is an open handle on the file, and the operating system is Windows XP or earlier. This open handle can result from enumerating directories and files. For more information, see How to: Enumerate Directories and Files.</exception>
2493       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2494       <exception cref="T:System.UnauthorizedAccessException">The path is a directory.</exception>
2495     </member>
2496     <member name="P:System.IO.FileInfo.Directory">
2497       <summary>Gets an instance of the parent directory.</summary>
2498       <returns>A <see cref="T:System.IO.DirectoryInfo" /> object representing the parent directory of this file.</returns>
2499       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2500       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2501     </member>
2502     <member name="P:System.IO.FileInfo.DirectoryName">
2503       <summary>Gets a string representing the directory's full path.</summary>
2504       <returns>A string representing the directory's full path.</returns>
2505       <exception cref="T:System.ArgumentNullException">
2506         <see langword="null" /> was passed in for the directory name.</exception>
2507       <exception cref="T:System.IO.PathTooLongException">The fully qualified path name exceeds the system-defined maximum length.</exception>
2508       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2509     </member>
2510     <member name="M:System.IO.FileInfo.Encrypt">
2511       <summary>Encrypts a file so that only the account used to encrypt the file can decrypt it.</summary>
2512       <exception cref="T:System.IO.DriveNotFoundException">An invalid drive was specified.</exception>
2513       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.</exception>
2514       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2515       <exception cref="T:System.NotSupportedException">The file system is not NTFS.</exception>
2516       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows NT or later.</exception>
2517       <exception cref="T:System.UnauthorizedAccessException">The file described by the current <see cref="T:System.IO.FileInfo" /> object is read-only.
2518 -or-
2519 This operation is not supported on the current platform.
2520 -or-
2521 The caller does not have the required permission.</exception>
2522     </member>
2523     <member name="P:System.IO.FileInfo.Exists">
2524       <summary>Gets a value indicating whether a file exists.</summary>
2525       <returns>
2526         <see langword="true" /> if the file exists; <see langword="false" /> if the file does not exist or if the file is a directory.</returns>
2527     </member>
2528     <member name="P:System.IO.FileInfo.IsReadOnly">
2529       <summary>Gets or sets a value that determines if the current file is read only.</summary>
2530       <returns>
2531         <see langword="true" /> if the current file is read only; otherwise, <see langword="false" />.</returns>
2532       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.</exception>
2533       <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
2534       <exception cref="T:System.UnauthorizedAccessException">This operation is not supported on the current platform.
2535 -or-
2536 The caller does not have the required permission.</exception>
2537       <exception cref="T:System.ArgumentException">The user does not have write permission, but attempted to set this property to <see langword="false" />.</exception>
2538     </member>
2539     <member name="P:System.IO.FileInfo.Length">
2540       <summary>Gets the size, in bytes, of the current file.</summary>
2541       <returns>The size of the current file in bytes.</returns>
2542       <exception cref="T:System.IO.IOException">
2543         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot update the state of the file or directory.</exception>
2544       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.
2545 -or-
2546 The <see langword="Length" /> property is called for a directory.</exception>
2547     </member>
2548     <member name="M:System.IO.FileInfo.MoveTo(System.String)">
2549       <summary>Moves a specified file to a new location, providing the option to specify a new file name.</summary>
2550       <param name="destFileName">The path to move the file to, which can specify a different file name.</param>
2551       <exception cref="T:System.IO.IOException">An I/O error occurs, such as the destination file already exists or the destination device is not ready.</exception>
2552       <exception cref="T:System.ArgumentNullException">
2553         <paramref name="destFileName" /> is <see langword="null" />.</exception>
2554       <exception cref="T:System.ArgumentException">
2555         <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters.</exception>
2556       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2557       <exception cref="T:System.UnauthorizedAccessException">
2558         <paramref name="destFileName" /> is read-only or is a directory.</exception>
2559       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2560       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2561       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2562       <exception cref="T:System.NotSupportedException">
2563         <paramref name="destFileName" /> contains a colon (:) in the middle of the string.</exception>
2564     </member>
2565     <member name="M:System.IO.FileInfo.MoveTo(System.String,System.Boolean)">
2566       <summary>Moves a specified file to a new location, providing the options to specify a new file name and to overwrite the destination file if it already exists.</summary>
2567       <param name="destFileName">The path to move the file to, which can specify a different file name.</param>
2568       <param name="overwrite">
2569         <see langword="true" /> to overwrite the destination file if it already exists; <see langword="false" /> otherwise.</param>
2570       <exception cref="T:System.IO.IOException">An I/O error occurred, such as the destination device is not ready.</exception>
2571       <exception cref="T:System.ArgumentNullException">
2572         <paramref name="destFileName" /> is <see langword="null" />.</exception>
2573       <exception cref="T:System.ArgumentException">
2574         <paramref name="destFileName" /> is empty, contains only white spaces, or contains invalid characters.</exception>
2575       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2576       <exception cref="T:System.UnauthorizedAccessException">
2577         <paramref name="destFileName" /> is read-only or is a directory.</exception>
2578       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2579       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2580       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
2581       <exception cref="T:System.NotSupportedException">
2582         <paramref name="destFileName" /> contains a colon (:) in the middle of the string.</exception>
2583     </member>
2584     <member name="P:System.IO.FileInfo.Name">
2585       <summary>Gets the name of the file.</summary>
2586       <returns>The name of the file.</returns>
2587     </member>
2588     <member name="M:System.IO.FileInfo.Open(System.IO.FileMode)">
2589       <summary>Opens a file in the specified mode.</summary>
2590       <param name="mode">A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, <see langword="Open" /> or <see langword="Append" />) in which to open the file.</param>
2591       <returns>A file opened in the specified mode, with read/write access and unshared.</returns>
2592       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2593       <exception cref="T:System.UnauthorizedAccessException">The file is read-only or is a directory.</exception>
2594       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2595       <exception cref="T:System.IO.IOException">The file is already open.</exception>
2596     </member>
2597     <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess)">
2598       <summary>Opens a file in the specified mode with read, write, or read/write access.</summary>
2599       <param name="mode">A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, <see langword="Open" /> or <see langword="Append" />) in which to open the file.</param>
2600       <param name="access">A <see cref="T:System.IO.FileAccess" /> constant specifying whether to open the file with <see langword="Read" />, <see langword="Write" />, or <see langword="ReadWrite" /> file access.</param>
2601       <returns>A <see cref="T:System.IO.FileStream" /> object opened in the specified mode and access, and unshared.</returns>
2602       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2603       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2604       <exception cref="T:System.UnauthorizedAccessException">
2605         <paramref name="path" /> is read-only or is a directory.</exception>
2606       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2607       <exception cref="T:System.IO.IOException">The file is already open.</exception>
2608       <exception cref="T:System.ArgumentException">
2609         <paramref name="path" /> is empty or contains only white spaces.</exception>
2610       <exception cref="T:System.ArgumentNullException">One or more arguments is null.</exception>
2611     </member>
2612     <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
2613       <summary>Opens a file in the specified mode with read, write, or read/write access and the specified sharing option.</summary>
2614       <param name="mode">A <see cref="T:System.IO.FileMode" /> constant specifying the mode (for example, <see langword="Open" /> or <see langword="Append" />) in which to open the file.</param>
2615       <param name="access">A <see cref="T:System.IO.FileAccess" /> constant specifying whether to open the file with <see langword="Read" />, <see langword="Write" />, or <see langword="ReadWrite" /> file access.</param>
2616       <param name="share">A <see cref="T:System.IO.FileShare" /> constant specifying the type of access other <see langword="FileStream" /> objects have to this file.</param>
2617       <returns>A <see cref="T:System.IO.FileStream" /> object opened with the specified mode, access, and sharing options.</returns>
2618       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2619       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2620       <exception cref="T:System.UnauthorizedAccessException">
2621         <paramref name="path" /> is read-only or is a directory.</exception>
2622       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2623       <exception cref="T:System.IO.IOException">The file is already open.</exception>
2624       <exception cref="T:System.ArgumentException">
2625         <paramref name="path" /> is empty or contains only white spaces.</exception>
2626       <exception cref="T:System.ArgumentNullException">One or more arguments is null.</exception>
2627     </member>
2628     <member name="M:System.IO.FileInfo.OpenRead">
2629       <summary>Creates a read-only <see cref="T:System.IO.FileStream" />.</summary>
2630       <returns>A new read-only <see cref="T:System.IO.FileStream" /> object.</returns>
2631       <exception cref="T:System.UnauthorizedAccessException">
2632         <paramref name="path" /> is read-only or is a directory.</exception>
2633       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2634       <exception cref="T:System.IO.IOException">The file is already open.</exception>
2635     </member>
2636     <member name="M:System.IO.FileInfo.OpenText">
2637       <summary>Creates a <see cref="T:System.IO.StreamReader" /> with UTF8 encoding that reads from an existing text file.</summary>
2638       <returns>A new <see langword="StreamReader" /> with UTF8 encoding.</returns>
2639       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2640       <exception cref="T:System.IO.FileNotFoundException">The file is not found.</exception>
2641       <exception cref="T:System.UnauthorizedAccessException">
2642         <paramref name="path" /> is read-only or is a directory.</exception>
2643       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
2644     </member>
2645     <member name="M:System.IO.FileInfo.OpenWrite">
2646       <summary>Creates a write-only <see cref="T:System.IO.FileStream" />.</summary>
2647       <returns>A write-only unshared <see cref="T:System.IO.FileStream" /> object for a new or existing file.</returns>
2648       <exception cref="T:System.UnauthorizedAccessException">The path specified when creating an instance of the <see cref="T:System.IO.FileInfo" /> object is read-only or is a directory.</exception>
2649       <exception cref="T:System.IO.DirectoryNotFoundException">The path specified when creating an instance of the <see cref="T:System.IO.FileInfo" /> object is invalid, such as being on an unmapped drive.</exception>
2650     </member>
2651     <member name="M:System.IO.FileInfo.Replace(System.String,System.String)">
2652       <summary>Replaces the contents of a specified file with the file described by the current <see cref="T:System.IO.FileInfo" /> object, deleting the original file, and creating a backup of the replaced file.</summary>
2653       <param name="destinationFileName">The name of a file to replace with the current file.</param>
2654       <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destFileName" /> parameter.</param>
2655       <returns>A <see cref="T:System.IO.FileInfo" /> object that encapsulates information about the file described by the <paramref name="destFileName" /> parameter.</returns>
2656       <exception cref="T:System.ArgumentException">The path described by the <paramref name="destFileName" /> parameter was not of a legal form.
2657 -or-
2658 The path described by the <paramref name="destBackupFileName" /> parameter was not of a legal form.</exception>
2659       <exception cref="T:System.ArgumentNullException">The <paramref name="destFileName" /> parameter is <see langword="null" />.</exception>
2660       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.
2661 -or-
2662 The file described by the <paramref name="destinationFileName" /> parameter could not be found.</exception>
2663       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows NT or later.</exception>
2664     </member>
2665     <member name="M:System.IO.FileInfo.Replace(System.String,System.String,System.Boolean)">
2666       <summary>Replaces the contents of a specified file with the file described by the current <see cref="T:System.IO.FileInfo" /> object, deleting the original file, and creating a backup of the replaced file.  Also specifies whether to ignore merge errors.</summary>
2667       <param name="destinationFileName">The name of a file to replace with the current file.</param>
2668       <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destFileName" /> parameter.</param>
2669       <param name="ignoreMetadataErrors">
2670         <see langword="true" /> to ignore merge errors (such as attributes and ACLs) from the replaced file to the replacement file; otherwise <see langword="false" />.</param>
2671       <returns>A <see cref="T:System.IO.FileInfo" /> object that encapsulates information about the file described by the <paramref name="destFileName" /> parameter.</returns>
2672       <exception cref="T:System.ArgumentException">The path described by the <paramref name="destFileName" /> parameter was not of a legal form.
2673 -or-
2674 The path described by the <paramref name="destBackupFileName" /> parameter was not of a legal form.</exception>
2675       <exception cref="T:System.ArgumentNullException">The <paramref name="destFileName" /> parameter is <see langword="null" />.</exception>
2676       <exception cref="T:System.IO.FileNotFoundException">The file described by the current <see cref="T:System.IO.FileInfo" /> object could not be found.
2677 -or-
2678 The file described by the <paramref name="destinationFileName" /> parameter could not be found.</exception>
2679       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows NT or later.</exception>
2680     </member>
2681     <member name="M:System.IO.FileInfo.ToString">
2682       <summary>Returns the path as a string. Use the <see cref="P:System.IO.FileInfo.Name" /> property for the full path.</summary>
2683       <returns>A string representing the path.</returns>
2684     </member>
2685     <member name="T:System.IO.FileSystemInfo">
2686       <summary>Provides the base class for both <see cref="T:System.IO.FileInfo" /> and <see cref="T:System.IO.DirectoryInfo" /> objects.</summary>
2687     </member>
2688     <member name="M:System.IO.FileSystemInfo.#ctor">
2689       <summary>Initializes a new instance of the <see cref="T:System.IO.FileSystemInfo" /> class.</summary>
2690     </member>
2691     <member name="M:System.IO.FileSystemInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2692       <summary>Initializes a new instance of the <see cref="T:System.IO.FileSystemInfo" /> class with serialized data.</summary>
2693       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
2694       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
2695       <exception cref="T:System.ArgumentNullException">The specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> is null.</exception>
2696     </member>
2697     <member name="P:System.IO.FileSystemInfo.Attributes">
2698       <summary>Gets or sets the attributes for the current file or directory.</summary>
2699       <returns>
2700         <see cref="T:System.IO.FileAttributes" /> of the current <see cref="T:System.IO.FileSystemInfo" />.</returns>
2701       <exception cref="T:System.IO.FileNotFoundException">The specified file doesn't exist. Only thrown when setting the property value.</exception>
2702       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid. For example, it's on an unmapped drive. Only thrown when setting the property value.</exception>
2703       <exception cref="T:System.Security.SecurityException">The caller doesn't have the required permission.</exception>
2704       <exception cref="T:System.ArgumentException">The caller attempts to set an invalid file attribute.
2705 -or-
2706 The user attempts to set an attribute value but doesn't have write permission.</exception>
2707       <exception cref="T:System.IO.IOException">
2708         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2709     </member>
2710     <member name="P:System.IO.FileSystemInfo.CreationTime">
2711       <summary>Gets or sets the creation time of the current file or directory.</summary>
2712       <returns>The creation date and time of the current <see cref="T:System.IO.FileSystemInfo" /> object.</returns>
2713       <exception cref="T:System.IO.IOException">
2714         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2715       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid; for example, it is on an unmapped drive.</exception>
2716       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2717       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid creation time.</exception>
2718     </member>
2719     <member name="P:System.IO.FileSystemInfo.CreationTimeUtc">
2720       <summary>Gets or sets the creation time, in coordinated universal time (UTC), of the current file or directory.</summary>
2721       <returns>The creation date and time in UTC format of the current <see cref="T:System.IO.FileSystemInfo" /> object.</returns>
2722       <exception cref="T:System.IO.IOException">
2723         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2724       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid; for example, it is on an unmapped drive.</exception>
2725       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2726       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid access time.</exception>
2727     </member>
2728     <member name="M:System.IO.FileSystemInfo.Delete">
2729       <summary>Deletes a file or directory.</summary>
2730       <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid; for example, it is on an unmapped drive.</exception>
2731       <exception cref="T:System.IO.IOException">There is an open handle on the file or directory, and the operating system is Windows XP or earlier. This open handle can result from enumerating directories and files. For more information, see How to: Enumerate Directories and Files.</exception>
2732     </member>
2733     <member name="P:System.IO.FileSystemInfo.Exists">
2734       <summary>Gets a value indicating whether the file or directory exists.</summary>
2735       <returns>
2736         <see langword="true" /> if the file or directory exists; otherwise, <see langword="false" />.</returns>
2737     </member>
2738     <member name="P:System.IO.FileSystemInfo.Extension">
2739       <summary>Gets the string representing the extension part of the file.</summary>
2740       <returns>A string containing the <see cref="T:System.IO.FileSystemInfo" /> extension.</returns>
2741     </member>
2742     <member name="P:System.IO.FileSystemInfo.FullName">
2743       <summary>Gets the full path of the directory or file.</summary>
2744       <returns>A string containing the full path.</returns>
2745       <exception cref="T:System.IO.PathTooLongException">The fully qualified path and file name exceed the system-defined maximum length.</exception>
2746       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2747     </member>
2748     <member name="F:System.IO.FileSystemInfo.FullPath">
2749       <summary>Represents the fully qualified path of the directory or file.</summary>
2750       <exception cref="T:System.IO.PathTooLongException">The fully qualified path exceeds the system-defined maximum length.</exception>
2751     </member>
2752     <member name="M:System.IO.FileSystemInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2753       <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and additional exception information.</summary>
2754       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
2755       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
2756     </member>
2757     <member name="P:System.IO.FileSystemInfo.LastAccessTime">
2758       <summary>Gets or sets the time the current file or directory was last accessed.</summary>
2759       <returns>The time that the current file or directory was last accessed.</returns>
2760       <exception cref="T:System.IO.IOException">
2761         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2762       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2763       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid access time</exception>
2764     </member>
2765     <member name="P:System.IO.FileSystemInfo.LastAccessTimeUtc">
2766       <summary>Gets or sets the time, in coordinated universal time (UTC), that the current file or directory was last accessed.</summary>
2767       <returns>The UTC time that the current file or directory was last accessed.</returns>
2768       <exception cref="T:System.IO.IOException">
2769         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2770       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2771       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid access time.</exception>
2772     </member>
2773     <member name="P:System.IO.FileSystemInfo.LastWriteTime">
2774       <summary>Gets or sets the time when the current file or directory was last written to.</summary>
2775       <returns>The time the current file was last written.</returns>
2776       <exception cref="T:System.IO.IOException">
2777         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2778       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2779       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid write time.</exception>
2780     </member>
2781     <member name="P:System.IO.FileSystemInfo.LastWriteTimeUtc">
2782       <summary>Gets or sets the time, in coordinated universal time (UTC), when the current file or directory was last written to.</summary>
2783       <returns>The UTC time when the current file was last written to.</returns>
2784       <exception cref="T:System.IO.IOException">
2785         <see cref="M:System.IO.FileSystemInfo.Refresh" /> cannot initialize the data.</exception>
2786       <exception cref="T:System.PlatformNotSupportedException">The current operating system is not Windows NT or later.</exception>
2787       <exception cref="T:System.ArgumentOutOfRangeException">The caller attempts to set an invalid write time.</exception>
2788     </member>
2789     <member name="P:System.IO.FileSystemInfo.Name">
2790       <summary>For files, gets the name of the file. For directories, gets the name of the last directory in the hierarchy if a hierarchy exists. Otherwise, the <see langword="Name" /> property gets the name of the directory.</summary>
2791       <returns>A string that is the name of the parent directory, the name of the last directory in the hierarchy, or the name of a file, including the file name extension.</returns>
2792     </member>
2793     <member name="F:System.IO.FileSystemInfo.OriginalPath">
2794       <summary>The path originally specified by the user, whether relative or absolute.</summary>
2795     </member>
2796     <member name="M:System.IO.FileSystemInfo.Refresh">
2797       <summary>Refreshes the state of the object.</summary>
2798       <exception cref="T:System.IO.IOException">A device such as a disk drive is not ready.</exception>
2799     </member>
2800     <member name="M:System.IO.FileSystemInfo.ToString">
2801       <summary>Returns the original path. Use the <see cref="P:System.IO.FileSystemInfo.FullName" /> or <see cref="P:System.IO.FileSystemInfo.Name" /> properties for the full path or file/directory name.</summary>
2802       <returns>A string with the original path.</returns>
2803     </member>
2804     <member name="T:System.IO.MatchCasing" />
2805     <member name="F:System.IO.MatchCasing.CaseInsensitive">
2806       <summary>Matches ignoring character casing.</summary>
2807     </member>
2808     <member name="F:System.IO.MatchCasing.CaseSensitive">
2809       <summary>Matches respecting character casing.</summary>
2810     </member>
2811     <member name="F:System.IO.MatchCasing.PlatformDefault">
2812       <summary>Matches using the default casing for the given platform.</summary>
2813     </member>
2814     <member name="T:System.IO.MatchType" />
2815     <member name="F:System.IO.MatchType.Simple">
2816       <summary>Matches using '*' and '?' wildcards.</summary>
2817     </member>
2818     <member name="F:System.IO.MatchType.Win32">
2819       <summary>Match using Win32 DOS style matching semantics. '*', '?', '&lt;', '&gt;', and '"' are all considered wildcards.</summary>
2820     </member>
2821     <member name="T:System.IO.SearchOption">
2822       <summary>Specifies whether to search the current directory, or the current directory and all subdirectories.</summary>
2823     </member>
2824     <member name="F:System.IO.SearchOption.AllDirectories">
2825       <summary>Includes the current directory and all its subdirectories in a search operation. This option includes reparse points such as mounted drives and symbolic links in the search.</summary>
2826     </member>
2827     <member name="F:System.IO.SearchOption.TopDirectoryOnly">
2828       <summary>Includes only the current directory in a search operation.</summary>
2829     </member>
2830   </members>
2831 </doc>