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