Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

21564 righe
1.8 MiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>AlphaFS</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo">
  8. <summary>Information about an alternate data stream.</summary>
  9. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreams"/>
  10. </member>
  11. <member name="P:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.StreamName">
  12. <summary>Gets the name of the alternate data stream.</summary>
  13. <remarks>This value is an empty string for the default stream (:$DATA), and for any other data stream it contains the name of the stream.</remarks>
  14. <value>The name of the stream.</value>
  15. </member>
  16. <member name="P:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.Size">
  17. <summary>Gets the size of the stream.</summary>
  18. </member>
  19. <member name="P:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.FullPath">
  20. <summary>Gets the full path to the stream.</summary>
  21. <remarks>
  22. This is a path in long path format that can be passed to <see cref="O:Alphaleonis.Win32.Filesystem.File.Open"/> to open the stream if
  23. <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.FullPath"/> or
  24. <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.LongFullPath"/> is specified.
  25. </remarks>
  26. <value>The full path to the stream in long path format.</value>
  27. </member>
  28. <member name="M:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.GetHashCode">
  29. <summary>Returns the hash code for this instance.</summary>
  30. <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
  31. </member>
  32. <member name="M:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.Equals(System.Object)">
  33. <summary>Indicates whether this instance and a specified object are equal.</summary>
  34. <param name="obj">The object to compare with the current instance.</param>
  35. <returns>
  36. true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false.
  37. </returns>
  38. </member>
  39. <member name="M:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.op_Equality(Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo,Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo)">
  40. <summary>Equality operator.</summary>
  41. <param name="first">The first operand.</param>
  42. <param name="second">The second operand.</param>
  43. <returns>The result of the operation.</returns>
  44. </member>
  45. <member name="M:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo.op_Inequality(Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo,Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo)">
  46. <summary>Inequality operator.</summary>
  47. <param name="first">The first operand.</param>
  48. <param name="second">The second operand.</param>
  49. <returns>The result of the operation.</returns>
  50. </member>
  51. <member name="T:Alphaleonis.Win32.Filesystem.BackupStreamInfo">
  52. <summary>The <see cref="T:Alphaleonis.Win32.Filesystem.BackupStreamInfo"/> structure contains stream header data.</summary>
  53. <seealso cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/>
  54. </member>
  55. <member name="M:Alphaleonis.Win32.Filesystem.BackupStreamInfo.#ctor(Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID,System.String)">
  56. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupStreamInfo"/> class.</summary>
  57. <param name="streamID">The stream ID.</param>
  58. <param name="name">The name.</param>
  59. </member>
  60. <member name="P:Alphaleonis.Win32.Filesystem.BackupStreamInfo.Size">
  61. <summary>Gets the size of the data in the substream, in bytes.</summary>
  62. <value>The size of the data in the substream, in bytes.</value>
  63. </member>
  64. <member name="P:Alphaleonis.Win32.Filesystem.BackupStreamInfo.Name">
  65. <summary>Gets a string that specifies the name of the alternative data stream.</summary>
  66. <value>A string that specifies the name of the alternative data stream.</value>
  67. </member>
  68. <member name="P:Alphaleonis.Win32.Filesystem.BackupStreamInfo.StreamType">
  69. <summary>Gets the type of the data in the stream.</summary>
  70. <value>The type of the data in the stream.</value>
  71. </member>
  72. <member name="P:Alphaleonis.Win32.Filesystem.BackupStreamInfo.Attributes">
  73. <summary>Gets the attributes of the data to facilitate cross-operating system transfer.</summary>
  74. <value>Attributes of the data to facilitate cross-operating system transfer.</value>
  75. </member>
  76. <member name="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine">
  77. <summary>Callback used by CopyFileXxx and MoveFileXxx to report progress about the copy/move operation.</summary>
  78. </member>
  79. <member name="T:Alphaleonis.Win32.Filesystem.Directory">
  80. <summary>Exposes static methods for creating, moving, and enumerating through directories and subdirectories.
  81. <para>This class cannot be inherited.</para>
  82. </summary>
  83. </member>
  84. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String)">
  85. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is not allowed.
  86. <remarks>
  87. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  88. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  89. </remarks>
  90. </summary>
  91. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  92. <exception cref="T:System.ArgumentException"/>
  93. <exception cref="T:System.ArgumentNullException"/>
  94. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  95. <exception cref="T:System.IO.IOException"/>
  96. <exception cref="T:System.NotSupportedException"/>
  97. <exception cref="T:System.UnauthorizedAccessException"/>
  98. <param name="sourcePath">The source directory path.</param>
  99. <param name="destinationPath">The destination directory path.</param>
  100. </member>
  101. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  102. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is not allowed.
  103. <remarks>
  104. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  105. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  106. </remarks>
  107. </summary>
  108. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  109. <exception cref="T:System.ArgumentException"/>
  110. <exception cref="T:System.ArgumentNullException"/>
  111. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  112. <exception cref="T:System.IO.IOException"/>
  113. <exception cref="T:System.NotSupportedException"/>
  114. <exception cref="T:System.UnauthorizedAccessException"/>
  115. <param name="sourcePath">The source directory path.</param>
  116. <param name="destinationPath">The destination directory path.</param>
  117. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  118. </member>
  119. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,System.Boolean)">
  120. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is allowed.
  121. <remarks>
  122. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  123. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  124. </remarks>
  125. </summary>
  126. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  127. <exception cref="T:System.ArgumentException"/>
  128. <exception cref="T:System.ArgumentNullException"/>
  129. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  130. <exception cref="T:System.IO.IOException"/>
  131. <exception cref="T:System.NotSupportedException"/>
  132. <exception cref="T:System.UnauthorizedAccessException"/>
  133. <param name="sourcePath">The source directory path.</param>
  134. <param name="destinationPath">The destination directory path.</param>
  135. <param name="overwrite"><see langword="true"/> if the destination directory should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  136. </member>
  137. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  138. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is allowed.
  139. <remarks>
  140. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  141. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  142. </remarks>
  143. </summary>
  144. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  145. <exception cref="T:System.ArgumentException"/>
  146. <exception cref="T:System.ArgumentNullException"/>
  147. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  148. <exception cref="T:System.IO.IOException"/>
  149. <exception cref="T:System.NotSupportedException"/>
  150. <exception cref="T:System.UnauthorizedAccessException"/>
  151. <param name="sourcePath">The source directory path.</param>
  152. <param name="destinationPath">The destination directory path.</param>
  153. <param name="overwrite"><see langword="true"/> if the destination directory should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  154. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  155. </member>
  156. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  157. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is not allowed.
  158. <remarks>
  159. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  160. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  161. </remarks>
  162. </summary>
  163. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  164. <exception cref="T:System.ArgumentException"/>
  165. <exception cref="T:System.ArgumentNullException"/>
  166. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  167. <exception cref="T:System.IO.IOException"/>
  168. <exception cref="T:System.NotSupportedException"/>
  169. <exception cref="T:System.UnauthorizedAccessException"/>
  170. <param name="transaction">The transaction.</param>
  171. <param name="sourcePath">The source directory path.</param>
  172. <param name="destinationPath">The destination directory path.</param>
  173. </member>
  174. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  175. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is not allowed.
  176. <remarks>
  177. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  178. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  179. </remarks>
  180. </summary>
  181. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  182. <exception cref="T:System.ArgumentException"/>
  183. <exception cref="T:System.ArgumentNullException"/>
  184. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  185. <exception cref="T:System.IO.IOException"/>
  186. <exception cref="T:System.NotSupportedException"/>
  187. <exception cref="T:System.UnauthorizedAccessException"/>
  188. <param name="transaction">The transaction.</param>
  189. <param name="sourcePath">The source directory path.</param>
  190. <param name="destinationPath">The destination directory path.</param>
  191. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  192. </member>
  193. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean)">
  194. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is allowed.
  195. <remarks>
  196. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  197. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  198. </remarks>
  199. </summary>
  200. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  201. <exception cref="T:System.ArgumentException"/>
  202. <exception cref="T:System.ArgumentNullException"/>
  203. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  204. <exception cref="T:System.IO.IOException"/>
  205. <exception cref="T:System.NotSupportedException"/>
  206. <exception cref="T:System.UnauthorizedAccessException"/>
  207. <param name="transaction">The transaction.</param>
  208. <param name="sourcePath">The source directory path.</param>
  209. <param name="destinationPath">The destination directory path.</param>
  210. <param name="overwrite"><see langword="true"/> if the destination directory should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  211. </member>
  212. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  213. <summary>[AlphaFS] Copies an existing directory to a new directory. Overwriting a directory of the same name is allowed.
  214. <remarks>
  215. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  216. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  217. </remarks>
  218. </summary>
  219. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  220. <exception cref="T:System.ArgumentException"/>
  221. <exception cref="T:System.ArgumentNullException"/>
  222. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  223. <exception cref="T:System.IO.IOException"/>
  224. <exception cref="T:System.NotSupportedException"/>
  225. <exception cref="T:System.UnauthorizedAccessException"/>
  226. <param name="transaction">The transaction.</param>
  227. <param name="sourcePath">The source directory path.</param>
  228. <param name="destinationPath">The destination directory path.</param>
  229. <param name="overwrite"><see langword="true"/> if the destination directory should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  230. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  231. </member>
  232. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  233. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  234. <remarks>
  235. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  236. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  237. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  238. </remarks>
  239. </summary>
  240. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  241. <exception cref="T:System.ArgumentException"/>
  242. <exception cref="T:System.ArgumentNullException"/>
  243. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  244. <exception cref="T:System.IO.IOException"/>
  245. <exception cref="T:System.NotSupportedException"/>
  246. <exception cref="T:System.UnauthorizedAccessException"/>
  247. <param name="sourcePath">The source directory path.</param>
  248. <param name="destinationPath">The destination directory path.</param>
  249. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  250. </member>
  251. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  252. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  253. <remarks>
  254. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  255. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  256. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  257. </remarks>
  258. </summary>
  259. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  260. <exception cref="T:System.ArgumentException"/>
  261. <exception cref="T:System.ArgumentNullException"/>
  262. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  263. <exception cref="T:System.IO.IOException"/>
  264. <exception cref="T:System.NotSupportedException"/>
  265. <exception cref="T:System.UnauthorizedAccessException"/>
  266. <param name="sourcePath">The source directory path.</param>
  267. <param name="destinationPath">The destination directory path.</param>
  268. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  269. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  270. </member>
  271. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  272. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  273. and the possibility of notifying the application of its progress through a callback function.
  274. <remarks>
  275. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  276. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  277. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  278. </remarks>
  279. </summary>
  280. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  281. <exception cref="T:System.ArgumentException"/>
  282. <exception cref="T:System.ArgumentNullException"/>
  283. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  284. <exception cref="T:System.IO.IOException"/>
  285. <exception cref="T:System.NotSupportedException"/>
  286. <exception cref="T:System.UnauthorizedAccessException"/>
  287. <param name="sourcePath">The source directory path.</param>
  288. <param name="destinationPath">The destination directory path.</param>
  289. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  290. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  291. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  292. </member>
  293. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  294. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  295. and the possibility of notifying the application of its progress through a callback function.
  296. <remarks>
  297. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  298. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  299. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  300. </remarks>
  301. </summary>
  302. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  303. <exception cref="T:System.ArgumentException"/>
  304. <exception cref="T:System.ArgumentNullException"/>
  305. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  306. <exception cref="T:System.IO.IOException"/>
  307. <exception cref="T:System.NotSupportedException"/>
  308. <exception cref="T:System.UnauthorizedAccessException"/>
  309. <param name="sourcePath">The source directory path.</param>
  310. <param name="destinationPath">The destination directory path.</param>
  311. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  312. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  313. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  314. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  315. </member>
  316. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  317. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  318. <remarks>
  319. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  320. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  321. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  322. </remarks>
  323. </summary>
  324. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  325. <exception cref="T:System.ArgumentException"/>
  326. <exception cref="T:System.ArgumentNullException"/>
  327. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  328. <exception cref="T:System.IO.IOException"/>
  329. <exception cref="T:System.NotSupportedException"/>
  330. <exception cref="T:System.UnauthorizedAccessException"/>
  331. <param name="transaction">The transaction.</param>
  332. <param name="sourcePath">The source directory path.</param>
  333. <param name="destinationPath">The destination directory path.</param>
  334. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  335. </member>
  336. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  337. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  338. <remarks>
  339. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  340. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  341. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  342. </remarks>
  343. </summary>
  344. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  345. <exception cref="T:System.ArgumentException"/>
  346. <exception cref="T:System.ArgumentNullException"/>
  347. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  348. <exception cref="T:System.IO.IOException"/>
  349. <exception cref="T:System.NotSupportedException"/>
  350. <exception cref="T:System.UnauthorizedAccessException"/>
  351. <param name="transaction">The transaction.</param>
  352. <param name="sourcePath">The source directory path.</param>
  353. <param name="destinationPath">The destination directory path.</param>
  354. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  355. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  356. </member>
  357. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  358. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  359. and the possibility of notifying the application of its progress through a callback function.
  360. <remarks>
  361. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  362. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  363. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  364. </remarks>
  365. </summary>
  366. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  367. <exception cref="T:System.ArgumentException"/>
  368. <exception cref="T:System.ArgumentNullException"/>
  369. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  370. <exception cref="T:System.IO.IOException"/>
  371. <exception cref="T:System.NotSupportedException"/>
  372. <exception cref="T:System.UnauthorizedAccessException"/>
  373. <param name="transaction">The transaction.</param>
  374. <param name="sourcePath">The source directory path.</param>
  375. <param name="destinationPath">The destination directory path.</param>
  376. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  377. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  378. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  379. </member>
  380. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  381. <summary>[AlphaFS] Copies a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  382. and the possibility of notifying the application of its progress through a callback function.
  383. <remarks>
  384. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  385. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  386. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  387. </remarks>
  388. </summary>
  389. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  390. <exception cref="T:System.ArgumentException"/>
  391. <exception cref="T:System.ArgumentNullException"/>
  392. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  393. <exception cref="T:System.IO.IOException"/>
  394. <exception cref="T:System.NotSupportedException"/>
  395. <exception cref="T:System.UnauthorizedAccessException"/>
  396. <param name="transaction">The transaction.</param>
  397. <param name="sourcePath">The source directory path.</param>
  398. <param name="destinationPath">The destination directory path.</param>
  399. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  400. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  401. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  402. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  403. </member>
  404. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String)">
  405. <summary>Moves a file or a directory and its contents to a new location.
  406. <remarks>
  407. <para>This method does not work across disk volumes.</para>
  408. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  409. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  410. </remarks>
  411. </summary>
  412. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  413. <exception cref="T:System.ArgumentException"/>
  414. <exception cref="T:System.ArgumentNullException"/>
  415. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  416. <exception cref="T:System.IO.IOException"/>
  417. <exception cref="T:System.NotSupportedException"/>
  418. <exception cref="T:System.UnauthorizedAccessException"/>
  419. <param name="sourcePath">The source directory path.</param>
  420. <param name="destinationPath">The destination directory path.</param>
  421. </member>
  422. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  423. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location.
  424. <remarks>
  425. <para>This method does not work across disk volumes.</para>
  426. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  427. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  428. </remarks>
  429. </summary>
  430. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  431. <exception cref="T:System.ArgumentException"/>
  432. <exception cref="T:System.ArgumentNullException"/>
  433. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  434. <exception cref="T:System.IO.IOException"/>
  435. <exception cref="T:System.NotSupportedException"/>
  436. <exception cref="T:System.UnauthorizedAccessException"/>
  437. <param name="sourcePath">The source directory path.</param>
  438. <param name="destinationPath">The destination directory path.</param>
  439. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  440. </member>
  441. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  442. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location.
  443. <remarks>
  444. <para>This method does not work across disk volumes.</para>
  445. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  446. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  447. </remarks>
  448. </summary>
  449. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  450. <exception cref="T:System.ArgumentException"/>
  451. <exception cref="T:System.ArgumentNullException"/>
  452. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  453. <exception cref="T:System.IO.IOException"/>
  454. <exception cref="T:System.NotSupportedException"/>
  455. <exception cref="T:System.UnauthorizedAccessException"/>
  456. <param name="transaction">The transaction.</param>
  457. <param name="sourcePath">The source directory path.</param>
  458. <param name="destinationPath">The destination directory path.</param>
  459. </member>
  460. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  461. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location.
  462. <remarks>
  463. <para>This method does not work across disk volumes.</para>
  464. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  465. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  466. </remarks>
  467. </summary>
  468. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  469. <exception cref="T:System.ArgumentException"/>
  470. <exception cref="T:System.ArgumentNullException"/>
  471. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  472. <exception cref="T:System.IO.IOException"/>
  473. <exception cref="T:System.NotSupportedException"/>
  474. <exception cref="T:System.UnauthorizedAccessException"/>
  475. <param name="transaction">The transaction.</param>
  476. <param name="sourcePath">The source directory path.</param>
  477. <param name="destinationPath">The destination directory path.</param>
  478. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  479. </member>
  480. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  481. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  482. <remarks>
  483. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  484. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  485. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  486. </remarks>
  487. </summary>
  488. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  489. <exception cref="T:System.ArgumentException"/>
  490. <exception cref="T:System.ArgumentNullException"/>
  491. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  492. <exception cref="T:System.IO.IOException"/>
  493. <exception cref="T:System.NotSupportedException"/>
  494. <exception cref="T:System.UnauthorizedAccessException"/>
  495. <param name="sourcePath">The source directory path.</param>
  496. <param name="destinationPath">The destination directory path.</param>
  497. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  498. </member>
  499. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  500. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  501. <remarks>
  502. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  503. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  504. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  505. </remarks>
  506. </summary>
  507. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  508. <exception cref="T:System.ArgumentException"/>
  509. <exception cref="T:System.ArgumentNullException"/>
  510. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  511. <exception cref="T:System.IO.IOException"/>
  512. <exception cref="T:System.NotSupportedException"/>
  513. <exception cref="T:System.UnauthorizedAccessException"/>
  514. <param name="sourcePath">The source directory path.</param>
  515. <param name="destinationPath">The destination directory path.</param>
  516. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  517. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  518. </member>
  519. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  520. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  521. and the possibility of notifying the application of its progress through a callback function.
  522. <remarks>
  523. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  524. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  525. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  526. </remarks>
  527. </summary>
  528. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  529. <exception cref="T:System.ArgumentException"/>
  530. <exception cref="T:System.ArgumentNullException"/>
  531. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  532. <exception cref="T:System.IO.IOException"/>
  533. <exception cref="T:System.NotSupportedException"/>
  534. <exception cref="T:System.UnauthorizedAccessException"/>
  535. <param name="sourcePath">The source directory path.</param>
  536. <param name="destinationPath">The destination directory path.</param>
  537. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  538. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  539. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  540. </member>
  541. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  542. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  543. and the possibility of notifying the application of its progress through a callback function.
  544. <remarks>
  545. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  546. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  547. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  548. </remarks>
  549. </summary>
  550. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  551. <exception cref="T:System.ArgumentException"/>
  552. <exception cref="T:System.ArgumentNullException"/>
  553. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  554. <exception cref="T:System.IO.IOException"/>
  555. <exception cref="T:System.NotSupportedException"/>
  556. <exception cref="T:System.UnauthorizedAccessException"/>
  557. <param name="sourcePath">The source directory path.</param>
  558. <param name="destinationPath">The destination directory path.</param>
  559. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  560. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  561. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  562. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  563. </member>
  564. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  565. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  566. <remarks>
  567. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  568. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  569. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  570. </remarks>
  571. </summary>
  572. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  573. <exception cref="T:System.ArgumentException"/>
  574. <exception cref="T:System.ArgumentNullException"/>
  575. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  576. <exception cref="T:System.IO.IOException"/>
  577. <exception cref="T:System.NotSupportedException"/>
  578. <exception cref="T:System.UnauthorizedAccessException"/>
  579. <param name="transaction">The transaction.</param>
  580. <param name="sourcePath">The source directory path.</param>
  581. <param name="destinationPath">The destination directory path.</param>
  582. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  583. </member>
  584. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  585. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  586. <remarks>
  587. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  588. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  589. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  590. </remarks>
  591. </summary>
  592. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  593. <exception cref="T:System.ArgumentException"/>
  594. <exception cref="T:System.ArgumentNullException"/>
  595. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  596. <exception cref="T:System.IO.IOException"/>
  597. <exception cref="T:System.NotSupportedException"/>
  598. <exception cref="T:System.UnauthorizedAccessException"/>
  599. <param name="transaction">The transaction.</param>
  600. <param name="sourcePath">The source directory path.</param>
  601. <param name="destinationPath">The destination directory path.</param>
  602. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  603. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  604. </member>
  605. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  606. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  607. and the possibility of notifying the application of its progress through a callback function.
  608. <remarks>
  609. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  610. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  611. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  612. </remarks>
  613. </summary>
  614. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  615. <exception cref="T:System.ArgumentException"/>
  616. <exception cref="T:System.ArgumentNullException"/>
  617. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  618. <exception cref="T:System.IO.IOException"/>
  619. <exception cref="T:System.NotSupportedException"/>
  620. <exception cref="T:System.UnauthorizedAccessException"/>
  621. <param name="transaction">The transaction.</param>
  622. <param name="sourcePath">The source directory path.</param>
  623. <param name="destinationPath">The destination directory path.</param>
  624. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  625. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  626. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  627. </member>
  628. <member name="M:Alphaleonis.Win32.Filesystem.Directory.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  629. <summary>[AlphaFS] Moves a file or a directory and its contents to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  630. and the possibility of notifying the application of its progress through a callback function.
  631. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  632. <remarks>
  633. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  634. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  635. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  636. </remarks>
  637. </summary>
  638. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  639. <exception cref="T:System.ArgumentException"/>
  640. <exception cref="T:System.ArgumentNullException"/>
  641. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  642. <exception cref="T:System.IO.IOException"/>
  643. <exception cref="T:System.NotSupportedException"/>
  644. <exception cref="T:System.UnauthorizedAccessException"/>
  645. <param name="transaction">The transaction.</param>
  646. <param name="sourcePath">The source directory path.</param>
  647. <param name="destinationPath">The destination directory path.</param>
  648. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  649. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  650. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  651. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  652. </member>
  653. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CopyMoveCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Nullable{Alphaleonis.Win32.Filesystem.CopyOptions},System.Nullable{Alphaleonis.Win32.Filesystem.MoveOptions},Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.CopyMoveResult,Alphaleonis.Win32.Filesystem.PathFormat)">
  654. <summary>Copy/move a Non-/Transacted file or directory including its children to a new location,
  655. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> or <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  656. and the possibility of notifying the application of its progress through a callback function.
  657. <remarks>
  658. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  659. <para>You cannot use the Move method to overwrite an existing file, unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.ReplaceExisting"/>.</para>
  660. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an IOException.</para>
  661. </remarks>
  662. </summary>
  663. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Copy or Move action.</returns>
  664. <exception cref="T:System.ArgumentException"/>
  665. <exception cref="T:System.ArgumentNullException"/>
  666. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  667. <exception cref="T:System.IO.IOException"/>
  668. <exception cref="T:System.NotSupportedException"/>
  669. <exception cref="T:System.UnauthorizedAccessException"/>
  670. <param name="transaction">The transaction.</param>
  671. <param name="sourcePath">The source directory path.</param>
  672. <param name="destinationPath">The destination directory path.</param>
  673. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  674. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  675. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied/moved. This parameter can be <see langword="null"/>.</param>
  676. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  677. <param name="copyMoveResult"></param>
  678. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  679. </member>
  680. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjects(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  681. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  682. <returns>The counted number of file system objects.</returns>
  683. <exception cref="T:System.ArgumentException"/>
  684. <exception cref="T:System.ArgumentNullException"/>
  685. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  686. <exception cref="T:System.IO.IOException"/>
  687. <exception cref="T:System.NotSupportedException"/>
  688. <exception cref="T:System.UnauthorizedAccessException"/>
  689. <param name="path">The directory path.</param>
  690. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  691. </member>
  692. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjects(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  693. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  694. <returns>The counted number of file system objects.</returns>
  695. <exception cref="T:System.ArgumentException"/>
  696. <exception cref="T:System.ArgumentNullException"/>
  697. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  698. <exception cref="T:System.IO.IOException"/>
  699. <exception cref="T:System.NotSupportedException"/>
  700. <exception cref="T:System.UnauthorizedAccessException"/>
  701. <param name="path">The directory path.</param>
  702. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  703. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  704. </member>
  705. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjects(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  706. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  707. <returns>The counted number of file system objects.</returns>
  708. <exception cref="T:System.ArgumentException"/>
  709. <exception cref="T:System.ArgumentNullException"/>
  710. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  711. <exception cref="T:System.IO.IOException"/>
  712. <exception cref="T:System.NotSupportedException"/>
  713. <exception cref="T:System.UnauthorizedAccessException"/>
  714. <param name="path">The directory path.</param>
  715. <param name="searchPattern">
  716. The search string to match against the names of directories in <paramref name="path"/>.
  717. This parameter can contain a combination of valid literal path and wildcard
  718. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  719. </param>
  720. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  721. </member>
  722. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjects(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  723. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  724. <returns>The counted number of file system objects.</returns>
  725. <exception cref="T:System.ArgumentException"/>
  726. <exception cref="T:System.ArgumentNullException"/>
  727. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  728. <exception cref="T:System.IO.IOException"/>
  729. <exception cref="T:System.NotSupportedException"/>
  730. <exception cref="T:System.UnauthorizedAccessException"/>
  731. <param name="path">The directory path.</param>
  732. <param name="searchPattern">
  733. The search string to match against the names of directories in <paramref name="path"/>.
  734. This parameter can contain a combination of valid literal path and wildcard
  735. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  736. </param>
  737. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  738. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  739. </member>
  740. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjectsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  741. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  742. <returns>The counted number of file system objects.</returns>
  743. <exception cref="T:System.ArgumentException"/>
  744. <exception cref="T:System.ArgumentNullException"/>
  745. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  746. <exception cref="T:System.IO.IOException"/>
  747. <exception cref="T:System.NotSupportedException"/>
  748. <exception cref="T:System.UnauthorizedAccessException"/>
  749. <param name="transaction">The transaction.</param>
  750. <param name="path">The directory path.</param>
  751. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  752. </member>
  753. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjectsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  754. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  755. <returns>The counted number of file system objects.</returns>
  756. <exception cref="T:System.ArgumentException"/>
  757. <exception cref="T:System.ArgumentNullException"/>
  758. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  759. <exception cref="T:System.IO.IOException"/>
  760. <exception cref="T:System.NotSupportedException"/>
  761. <exception cref="T:System.UnauthorizedAccessException"/>
  762. <param name="transaction">The transaction.</param>
  763. <param name="path">The directory path.</param>
  764. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  765. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  766. </member>
  767. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjectsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  768. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  769. <returns>The counted number of file system objects.</returns>
  770. <exception cref="T:System.ArgumentException"/>
  771. <exception cref="T:System.ArgumentNullException"/>
  772. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  773. <exception cref="T:System.IO.IOException"/>
  774. <exception cref="T:System.NotSupportedException"/>
  775. <exception cref="T:System.UnauthorizedAccessException"/>
  776. <param name="transaction">The transaction.</param>
  777. <param name="path">The directory path.</param>
  778. <param name="searchPattern">
  779. The search string to match against the names of directories in <paramref name="path"/>.
  780. This parameter can contain a combination of valid literal path and wildcard
  781. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  782. </param>
  783. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  784. </member>
  785. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CountFileSystemObjectsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  786. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  787. <returns>The counted number of file system objects.</returns>
  788. <exception cref="T:System.ArgumentException"/>
  789. <exception cref="T:System.ArgumentNullException"/>
  790. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  791. <exception cref="T:System.IO.IOException"/>
  792. <exception cref="T:System.NotSupportedException"/>
  793. <exception cref="T:System.UnauthorizedAccessException"/>
  794. <param name="transaction">The transaction.</param>
  795. <param name="path">The directory path.</param>
  796. <param name="searchPattern">
  797. The search string to match against the names of directories in <paramref name="path"/>.
  798. This parameter can contain a combination of valid literal path and wildcard
  799. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  800. </param>
  801. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  802. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  803. </member>
  804. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectories(System.String,System.Boolean)">
  805. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  806. <exception cref="T:System.ArgumentException"/>
  807. <exception cref="T:System.ArgumentNullException"/>
  808. <exception cref="T:System.ArgumentNullException"/>
  809. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  810. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  811. </member>
  812. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectories(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  813. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  814. <exception cref="T:System.ArgumentException"/>
  815. <exception cref="T:System.ArgumentNullException"/>
  816. <exception cref="T:System.ArgumentNullException"/>
  817. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  818. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  819. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  820. </member>
  821. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectories(System.String,System.Boolean,System.Boolean)">
  822. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  823. <exception cref="T:System.ArgumentException"/>
  824. <exception cref="T:System.ArgumentNullException"/>
  825. <exception cref="T:System.ArgumentNullException"/>
  826. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  827. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  828. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  829. </member>
  830. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectories(System.String,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  831. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  832. <exception cref="T:System.ArgumentException"/>
  833. <exception cref="T:System.ArgumentNullException"/>
  834. <exception cref="T:System.ArgumentNullException"/>
  835. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  836. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  837. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  838. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  839. </member>
  840. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean)">
  841. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  842. <exception cref="T:System.ArgumentException"/>
  843. <exception cref="T:System.ArgumentNullException"/>
  844. <exception cref="T:System.ArgumentNullException"/>
  845. <param name="transaction">The transaction.</param>
  846. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  847. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  848. </member>
  849. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  850. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  851. <exception cref="T:System.ArgumentException"/>
  852. <exception cref="T:System.ArgumentNullException"/>
  853. <exception cref="T:System.ArgumentNullException"/>
  854. <param name="transaction">The transaction.</param>
  855. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  856. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  857. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  858. </member>
  859. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean)">
  860. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  861. <exception cref="T:System.ArgumentException"/>
  862. <exception cref="T:System.ArgumentNullException"/>
  863. <exception cref="T:System.ArgumentNullException"/>
  864. <param name="transaction">The transaction.</param>
  865. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  866. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  867. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  868. </member>
  869. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  870. <summary>[AlphaFS] Deletes empty subdirectories from the specified directory.</summary>
  871. <exception cref="T:System.ArgumentException"/>
  872. <exception cref="T:System.ArgumentNullException"/>
  873. <exception cref="T:System.ArgumentNullException"/>
  874. <param name="transaction">The transaction.</param>
  875. <param name="path">The name of the directory to remove empty subdirectories from.</param>
  876. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  877. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  878. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  879. </member>
  880. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteEmptySubdirectoriesCore(Alphaleonis.Win32.Filesystem.FileSystemEntryInfo,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  881. <summary>Delete empty subdirectories from the specified directory.</summary>
  882. <exception cref="T:System.ArgumentException"/>
  883. <exception cref="T:System.ArgumentNullException"/>
  884. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  885. <exception cref="T:System.IO.IOException"/>
  886. <exception cref="T:System.NotSupportedException"/>
  887. <exception cref="T:System.UnauthorizedAccessException"/>
  888. <param name="fileSystemEntryInfo">A FileSystemEntryInfo instance. Use either <paramref name="fileSystemEntryInfo"/> or <paramref name="path"/>, not both.</param>
  889. <param name="transaction">The transaction.</param>
  890. <param name="path">The name of the directory to remove empty subdirectories from. Use either <paramref name="path"/> or <paramref name="fileSystemEntryInfo"/>, not both.</param>
  891. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  892. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  893. <param name="initialize">When <see langword="true"/> indicates the method is called externally.</param>
  894. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  895. </member>
  896. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String)">
  897. <summary>Deletes an empty directory from a specified path.</summary>
  898. <exception cref="T:System.ArgumentException"/>
  899. <exception cref="T:System.ArgumentNullException"/>
  900. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  901. <exception cref="T:System.IO.IOException"/>
  902. <exception cref="T:System.NotSupportedException"/>
  903. <exception cref="T:System.UnauthorizedAccessException"/>
  904. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  905. <param name="path">The name of the empty directory to remove. This directory must be writable and empty.</param>
  906. </member>
  907. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String,System.Boolean)">
  908. <summary>Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  909. <exception cref="T:System.ArgumentException"/>
  910. <exception cref="T:System.ArgumentNullException"/>
  911. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  912. <exception cref="T:System.IO.IOException"/>
  913. <exception cref="T:System.NotSupportedException"/>
  914. <exception cref="T:System.UnauthorizedAccessException"/>
  915. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  916. <param name="path">The name of the directory to remove.</param>
  917. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  918. </member>
  919. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  920. <summary>[AlphaFS] Deletes an empty directory from a specified path.</summary>
  921. <exception cref="T:System.ArgumentException"/>
  922. <exception cref="T:System.ArgumentNullException"/>
  923. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  924. <exception cref="T:System.IO.IOException"/>
  925. <exception cref="T:System.NotSupportedException"/>
  926. <exception cref="T:System.UnauthorizedAccessException"/>
  927. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  928. <param name="path">The name of the empty directory to remove. This directory must be writable and empty.</param>
  929. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  930. </member>
  931. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  932. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  933. <exception cref="T:System.ArgumentException"/>
  934. <exception cref="T:System.ArgumentNullException"/>
  935. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  936. <exception cref="T:System.IO.IOException"/>
  937. <exception cref="T:System.NotSupportedException"/>
  938. <exception cref="T:System.UnauthorizedAccessException"/>
  939. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  940. <param name="path">The name of the directory to remove.</param>
  941. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  942. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  943. </member>
  944. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String,System.Boolean,System.Boolean)">
  945. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  946. <exception cref="T:System.ArgumentException"/>
  947. <exception cref="T:System.ArgumentNullException"/>
  948. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  949. <exception cref="T:System.IO.IOException"/>
  950. <exception cref="T:System.NotSupportedException"/>
  951. <exception cref="T:System.UnauthorizedAccessException"/>
  952. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  953. <param name="path">The name of the directory to remove.</param>
  954. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  955. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of files and directories.</param>
  956. </member>
  957. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Delete(System.String,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  958. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  959. <exception cref="T:System.ArgumentException"/>
  960. <exception cref="T:System.ArgumentNullException"/>
  961. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  962. <exception cref="T:System.IO.IOException"/>
  963. <exception cref="T:System.NotSupportedException"/>
  964. <exception cref="T:System.UnauthorizedAccessException"/>
  965. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  966. <param name="path">The name of the directory to remove.</param>
  967. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  968. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of files and directories.</param>
  969. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  970. </member>
  971. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  972. <summary>[AlphaFS] Deletes an empty directory from a specified path.</summary>
  973. <exception cref="T:System.ArgumentException"/>
  974. <exception cref="T:System.ArgumentNullException"/>
  975. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  976. <exception cref="T:System.IO.IOException"/>
  977. <exception cref="T:System.NotSupportedException"/>
  978. <exception cref="T:System.UnauthorizedAccessException"/>
  979. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  980. <param name="transaction">The transaction.</param>
  981. <param name="path">The name of the empty directory to remove. This directory must be writable and empty.</param>
  982. </member>
  983. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  984. <summary>[AlphaFS] Deletes an empty directory from a specified path.</summary>
  985. <exception cref="T:System.ArgumentException"/>
  986. <exception cref="T:System.ArgumentNullException"/>
  987. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  988. <exception cref="T:System.IO.IOException"/>
  989. <exception cref="T:System.NotSupportedException"/>
  990. <exception cref="T:System.UnauthorizedAccessException"/>
  991. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  992. <param name="transaction">The transaction.</param>
  993. <param name="path">The name of the empty directory to remove. This directory must be writable and empty.</param>
  994. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  995. </member>
  996. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean)">
  997. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  998. <exception cref="T:System.ArgumentException"/>
  999. <exception cref="T:System.ArgumentNullException"/>
  1000. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1001. <exception cref="T:System.IO.IOException"/>
  1002. <exception cref="T:System.NotSupportedException"/>
  1003. <exception cref="T:System.UnauthorizedAccessException"/>
  1004. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  1005. <param name="transaction">The transaction.</param>
  1006. <param name="path">The name of the directory to remove.</param>
  1007. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  1008. </member>
  1009. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1010. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  1011. <exception cref="T:System.ArgumentException"/>
  1012. <exception cref="T:System.ArgumentNullException"/>
  1013. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1014. <exception cref="T:System.IO.IOException"/>
  1015. <exception cref="T:System.NotSupportedException"/>
  1016. <exception cref="T:System.UnauthorizedAccessException"/>
  1017. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  1018. <param name="transaction">The transaction.</param>
  1019. <param name="path">The name of the directory to remove.</param>
  1020. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  1021. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1022. </member>
  1023. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean)">
  1024. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  1025. <exception cref="T:System.ArgumentException"/>
  1026. <exception cref="T:System.ArgumentNullException"/>
  1027. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1028. <exception cref="T:System.IO.IOException"/>
  1029. <exception cref="T:System.NotSupportedException"/>
  1030. <exception cref="T:System.UnauthorizedAccessException"/>
  1031. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  1032. <param name="transaction">The transaction.</param>
  1033. <param name="path">The name of the directory to remove.</param>
  1034. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  1035. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of files and directories.</param>
  1036. </member>
  1037. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1038. <summary>[AlphaFS] Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  1039. <exception cref="T:System.ArgumentException"/>
  1040. <exception cref="T:System.ArgumentNullException"/>
  1041. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1042. <exception cref="T:System.IO.IOException"/>
  1043. <exception cref="T:System.NotSupportedException"/>
  1044. <exception cref="T:System.UnauthorizedAccessException"/>
  1045. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  1046. <param name="transaction">The transaction.</param>
  1047. <param name="path">The name of the directory to remove.</param>
  1048. <param name="recursive"><see langword="true"/> to remove directories, subdirectories, and files in <paramref name="path"/>. <see langword="false"/> otherwise.</param>
  1049. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of files and directories.</param>
  1050. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1051. </member>
  1052. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DeleteDirectoryCore(Alphaleonis.Win32.Filesystem.FileSystemEntryInfo,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1053. <summary>Deletes the specified directory and, if indicated, any subdirectories in the directory.</summary>
  1054. <remarks>The RemoveDirectory function marks a directory for deletion on close. Therefore, the directory is not removed until the last handle to the directory is closed.</remarks>
  1055. <exception cref="T:System.ArgumentException"/>
  1056. <exception cref="T:System.ArgumentNullException"/>
  1057. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1058. <exception cref="T:System.IO.IOException"/>
  1059. <exception cref="T:System.NotSupportedException"/>
  1060. <exception cref="T:System.UnauthorizedAccessException"/>
  1061. <exception cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/>
  1062. <param name="fileSystemEntryInfo">A FileSystemEntryInfo instance. Use either <paramref name="fileSystemEntryInfo"/> or <paramref name="path"/>, not both.</param>
  1063. <param name="transaction">The transaction.</param>
  1064. <param name="path">The name of the directory to remove. Use either <paramref name="path"/> or <paramref name="fileSystemEntryInfo"/>, not both.</param>
  1065. <param name="recursive"><see langword="true"/> to remove all files and subdirectories recursively; <see langword="false"/> otherwise only the top level empty directory.</param>
  1066. <param name="ignoreReadOnly"><see langword="true"/> overrides read only attribute of files and directories.</param>
  1067. <param name="requireEmpty"><see langword="true"/> requires the directory must be empty.</param>
  1068. <param name="continueOnNotExist"><see langword="true"/> does not throw an Exception when the file system object does not exist.</param>
  1069. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1070. </member>
  1071. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String)">
  1072. <summary>Creates all directories and subdirectories in the specified path unless they already exist.</summary>
  1073. <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>
  1074. <exception cref="T:System.ArgumentException"/>
  1075. <exception cref="T:System.ArgumentNullException"/>
  1076. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1077. <exception cref="T:System.IO.IOException"/>
  1078. <exception cref="T:System.NotSupportedException"/>
  1079. <exception cref="T:System.UnauthorizedAccessException"/>
  1080. <param name="path">The directory to create.</param>
  1081. </member>
  1082. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1083. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1084. <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>
  1085. <exception cref="T:System.ArgumentException"/>
  1086. <exception cref="T:System.ArgumentNullException"/>
  1087. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1088. <exception cref="T:System.IO.IOException"/>
  1089. <exception cref="T:System.NotSupportedException"/>
  1090. <exception cref="T:System.UnauthorizedAccessException"/>
  1091. <param name="path">The directory to create.</param>
  1092. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1093. </member>
  1094. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Boolean)">
  1095. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1096. <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>
  1097. <exception cref="T:System.ArgumentException"/>
  1098. <exception cref="T:System.ArgumentNullException"/>
  1099. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1100. <exception cref="T:System.IO.IOException"/>
  1101. <exception cref="T:System.NotSupportedException"/>
  1102. <exception cref="T:System.UnauthorizedAccessException"/>
  1103. <param name="path">The directory to create.</param>
  1104. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1105. </member>
  1106. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1107. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1108. <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>
  1109. <exception cref="T:System.ArgumentException"/>
  1110. <exception cref="T:System.ArgumentNullException"/>
  1111. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1112. <exception cref="T:System.IO.IOException"/>
  1113. <exception cref="T:System.NotSupportedException"/>
  1114. <exception cref="T:System.UnauthorizedAccessException"/>
  1115. <param name="path">The directory to create.</param>
  1116. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1117. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1118. </member>
  1119. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity)">
  1120. <summary>Creates all the directories in the specified path, unless the already exist, applying the specified Windows security.</summary>
  1121. <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>
  1122. <exception cref="T:System.ArgumentException"/>
  1123. <exception cref="T:System.ArgumentNullException"/>
  1124. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1125. <exception cref="T:System.IO.IOException"/>
  1126. <exception cref="T:System.NotSupportedException"/>
  1127. <exception cref="T:System.UnauthorizedAccessException"/>
  1128. <param name="path">The directory to create.</param>
  1129. <param name="directorySecurity">The access control to apply to the directory.</param>
  1130. </member>
  1131. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  1132. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1133. <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>
  1134. <exception cref="T:System.ArgumentException"/>
  1135. <exception cref="T:System.ArgumentNullException"/>
  1136. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1137. <exception cref="T:System.IO.IOException"/>
  1138. <exception cref="T:System.NotSupportedException"/>
  1139. <exception cref="T:System.UnauthorizedAccessException"/>
  1140. <param name="path">The directory to create.</param>
  1141. <param name="directorySecurity">The access control to apply to the directory.</param>
  1142. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1143. </member>
  1144. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  1145. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1146. <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>
  1147. <exception cref="T:System.ArgumentException"/>
  1148. <exception cref="T:System.ArgumentNullException"/>
  1149. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1150. <exception cref="T:System.IO.IOException"/>
  1151. <exception cref="T:System.NotSupportedException"/>
  1152. <exception cref="T:System.UnauthorizedAccessException"/>
  1153. <param name="path">The directory to create.</param>
  1154. <param name="directorySecurity">The access control to apply to the directory.</param>
  1155. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1156. </member>
  1157. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1158. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1159. <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>
  1160. <exception cref="T:System.ArgumentException"/>
  1161. <exception cref="T:System.ArgumentNullException"/>
  1162. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1163. <exception cref="T:System.IO.IOException"/>
  1164. <exception cref="T:System.NotSupportedException"/>
  1165. <exception cref="T:System.UnauthorizedAccessException"/>
  1166. <param name="path">The directory to create.</param>
  1167. <param name="directorySecurity">The access control to apply to the directory.</param>
  1168. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1169. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1170. </member>
  1171. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String)">
  1172. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1173. <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>
  1174. <exception cref="T:System.ArgumentException"/>
  1175. <exception cref="T:System.ArgumentNullException"/>
  1176. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1177. <exception cref="T:System.IO.IOException"/>
  1178. <exception cref="T:System.NotSupportedException"/>
  1179. <exception cref="T:System.UnauthorizedAccessException"/>
  1180. <param name="path">The directory to create.</param>
  1181. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1182. </member>
  1183. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1184. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1185. <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>
  1186. <exception cref="T:System.ArgumentException"/>
  1187. <exception cref="T:System.ArgumentNullException"/>
  1188. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1189. <exception cref="T:System.IO.IOException"/>
  1190. <exception cref="T:System.NotSupportedException"/>
  1191. <exception cref="T:System.UnauthorizedAccessException"/>
  1192. <param name="path">The directory to create.</param>
  1193. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1194. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1195. </member>
  1196. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Boolean)">
  1197. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1198. <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>
  1199. <exception cref="T:System.ArgumentException"/>
  1200. <exception cref="T:System.ArgumentNullException"/>
  1201. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1202. <exception cref="T:System.IO.IOException"/>
  1203. <exception cref="T:System.NotSupportedException"/>
  1204. <exception cref="T:System.UnauthorizedAccessException"/>
  1205. <param name="path">The directory to create.</param>
  1206. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1207. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1208. </member>
  1209. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1210. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1211. <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>
  1212. <exception cref="T:System.ArgumentException"/>
  1213. <exception cref="T:System.ArgumentNullException"/>
  1214. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1215. <exception cref="T:System.IO.IOException"/>
  1216. <exception cref="T:System.NotSupportedException"/>
  1217. <exception cref="T:System.UnauthorizedAccessException"/>
  1218. <param name="path">The directory to create.</param>
  1219. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1220. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1221. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1222. </member>
  1223. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Security.AccessControl.DirectorySecurity)">
  1224. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1225. <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>
  1226. <exception cref="T:System.ArgumentException"/>
  1227. <exception cref="T:System.ArgumentNullException"/>
  1228. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1229. <exception cref="T:System.IO.IOException"/>
  1230. <exception cref="T:System.NotSupportedException"/>
  1231. <exception cref="T:System.UnauthorizedAccessException"/>
  1232. <param name="path">The directory to create.</param>
  1233. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1234. <param name="directorySecurity">The access control to apply to the directory.</param>
  1235. </member>
  1236. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Security.AccessControl.DirectorySecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  1237. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1238. <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>
  1239. <exception cref="T:System.ArgumentException"/>
  1240. <exception cref="T:System.ArgumentNullException"/>
  1241. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1242. <exception cref="T:System.IO.IOException"/>
  1243. <exception cref="T:System.NotSupportedException"/>
  1244. <exception cref="T:System.UnauthorizedAccessException"/>
  1245. <param name="path">The directory to create.</param>
  1246. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1247. <param name="directorySecurity">The access control to apply to the directory.</param>
  1248. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1249. </member>
  1250. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  1251. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1252. <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>
  1253. <exception cref="T:System.ArgumentException"/>
  1254. <exception cref="T:System.ArgumentNullException"/>
  1255. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1256. <exception cref="T:System.IO.IOException"/>
  1257. <exception cref="T:System.NotSupportedException"/>
  1258. <exception cref="T:System.UnauthorizedAccessException"/>
  1259. <param name="path">The directory to create.</param>
  1260. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1261. <param name="directorySecurity">The access control to apply to the directory.</param>
  1262. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1263. </member>
  1264. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectory(System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1265. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1266. <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>
  1267. <exception cref="T:System.ArgumentException"/>
  1268. <exception cref="T:System.ArgumentNullException"/>
  1269. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1270. <exception cref="T:System.IO.IOException"/>
  1271. <exception cref="T:System.NotSupportedException"/>
  1272. <exception cref="T:System.UnauthorizedAccessException"/>
  1273. <param name="path">The directory to create.</param>
  1274. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1275. <param name="directorySecurity">The access control to apply to the directory.</param>
  1276. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1277. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1278. </member>
  1279. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  1280. <summary>Creates all directories and subdirectories in the specified path unless they already exist.</summary>
  1281. <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>
  1282. <exception cref="T:System.ArgumentException"/>
  1283. <exception cref="T:System.ArgumentNullException"/>
  1284. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1285. <exception cref="T:System.IO.IOException"/>
  1286. <exception cref="T:System.NotSupportedException"/>
  1287. <exception cref="T:System.UnauthorizedAccessException"/>
  1288. <param name="transaction">The transaction.</param>
  1289. <param name="path">The directory to create.</param>
  1290. </member>
  1291. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1292. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1293. <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>
  1294. <exception cref="T:System.ArgumentException"/>
  1295. <exception cref="T:System.ArgumentNullException"/>
  1296. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1297. <exception cref="T:System.IO.IOException"/>
  1298. <exception cref="T:System.NotSupportedException"/>
  1299. <exception cref="T:System.UnauthorizedAccessException"/>
  1300. <param name="transaction">The transaction.</param>
  1301. <param name="path">The directory to create.</param>
  1302. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1303. </member>
  1304. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean)">
  1305. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1306. <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>
  1307. <exception cref="T:System.ArgumentException"/>
  1308. <exception cref="T:System.ArgumentNullException"/>
  1309. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1310. <exception cref="T:System.IO.IOException"/>
  1311. <exception cref="T:System.NotSupportedException"/>
  1312. <exception cref="T:System.UnauthorizedAccessException"/>
  1313. <param name="transaction">The transaction.</param>
  1314. <param name="path">The directory to create.</param>
  1315. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1316. </member>
  1317. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1318. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1319. <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>
  1320. <exception cref="T:System.ArgumentException"/>
  1321. <exception cref="T:System.ArgumentNullException"/>
  1322. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1323. <exception cref="T:System.IO.IOException"/>
  1324. <exception cref="T:System.NotSupportedException"/>
  1325. <exception cref="T:System.UnauthorizedAccessException"/>
  1326. <param name="transaction">The transaction.</param>
  1327. <param name="path">The directory to create.</param>
  1328. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1329. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1330. </member>
  1331. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Security.AccessControl.DirectorySecurity)">
  1332. <summary>Creates all the directories in the specified path, unless the already exist, applying the specified Windows security.</summary>
  1333. <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>
  1334. <exception cref="T:System.ArgumentException"/>
  1335. <exception cref="T:System.ArgumentNullException"/>
  1336. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1337. <exception cref="T:System.IO.IOException"/>
  1338. <exception cref="T:System.NotSupportedException"/>
  1339. <exception cref="T:System.UnauthorizedAccessException"/>
  1340. <param name="transaction">The transaction.</param>
  1341. <param name="path">The directory to create.</param>
  1342. <param name="directorySecurity">The access control to apply to the directory.</param>
  1343. </member>
  1344. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Security.AccessControl.DirectorySecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  1345. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1346. <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>
  1347. <exception cref="T:System.ArgumentException"/>
  1348. <exception cref="T:System.ArgumentNullException"/>
  1349. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1350. <exception cref="T:System.IO.IOException"/>
  1351. <exception cref="T:System.NotSupportedException"/>
  1352. <exception cref="T:System.UnauthorizedAccessException"/>
  1353. <param name="transaction">The transaction.</param>
  1354. <param name="path">The directory to create.</param>
  1355. <param name="directorySecurity">The access control to apply to the directory.</param>
  1356. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1357. </member>
  1358. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  1359. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1360. <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>
  1361. <exception cref="T:System.ArgumentException"/>
  1362. <exception cref="T:System.ArgumentNullException"/>
  1363. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1364. <exception cref="T:System.IO.IOException"/>
  1365. <exception cref="T:System.NotSupportedException"/>
  1366. <exception cref="T:System.UnauthorizedAccessException"/>
  1367. <param name="transaction">The transaction.</param>
  1368. <param name="path">The directory to create.</param>
  1369. <param name="directorySecurity">The access control to apply to the directory.</param>
  1370. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1371. </member>
  1372. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1373. <summary>[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.</summary>
  1374. <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>
  1375. <exception cref="T:System.ArgumentException"/>
  1376. <exception cref="T:System.ArgumentNullException"/>
  1377. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1378. <exception cref="T:System.IO.IOException"/>
  1379. <exception cref="T:System.NotSupportedException"/>
  1380. <exception cref="T:System.UnauthorizedAccessException"/>
  1381. <param name="transaction">The transaction.</param>
  1382. <param name="path">The directory to create.</param>
  1383. <param name="directorySecurity">The access control to apply to the directory.</param>
  1384. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1385. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1386. </member>
  1387. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  1388. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1389. <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>
  1390. <exception cref="T:System.ArgumentException"/>
  1391. <exception cref="T:System.ArgumentNullException"/>
  1392. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1393. <exception cref="T:System.IO.IOException"/>
  1394. <exception cref="T:System.NotSupportedException"/>
  1395. <exception cref="T:System.UnauthorizedAccessException"/>
  1396. <param name="transaction">The transaction.</param>
  1397. <param name="path">The directory to create.</param>
  1398. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1399. </member>
  1400. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1401. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1402. <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>
  1403. <exception cref="T:System.ArgumentException"/>
  1404. <exception cref="T:System.ArgumentNullException"/>
  1405. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1406. <exception cref="T:System.IO.IOException"/>
  1407. <exception cref="T:System.NotSupportedException"/>
  1408. <exception cref="T:System.UnauthorizedAccessException"/>
  1409. <param name="transaction">The transaction.</param>
  1410. <param name="path">The directory to create.</param>
  1411. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1412. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1413. </member>
  1414. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean)">
  1415. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1416. <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>
  1417. <exception cref="T:System.ArgumentException"/>
  1418. <exception cref="T:System.ArgumentNullException"/>
  1419. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1420. <exception cref="T:System.IO.IOException"/>
  1421. <exception cref="T:System.NotSupportedException"/>
  1422. <exception cref="T:System.UnauthorizedAccessException"/>
  1423. <param name="transaction">The transaction.</param>
  1424. <param name="path">The directory to create.</param>
  1425. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1426. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1427. </member>
  1428. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1429. <summary>[AlphaFS] Creates a new directory, with the attributes of a specified template directory.</summary>
  1430. <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>
  1431. <exception cref="T:System.ArgumentException"/>
  1432. <exception cref="T:System.ArgumentNullException"/>
  1433. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1434. <exception cref="T:System.IO.IOException"/>
  1435. <exception cref="T:System.NotSupportedException"/>
  1436. <exception cref="T:System.UnauthorizedAccessException"/>
  1437. <param name="transaction">The transaction.</param>
  1438. <param name="path">The directory to create.</param>
  1439. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1440. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1441. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1442. </member>
  1443. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Security.AccessControl.DirectorySecurity)">
  1444. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1445. <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>
  1446. <exception cref="T:System.ArgumentException"/>
  1447. <exception cref="T:System.ArgumentNullException"/>
  1448. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1449. <exception cref="T:System.IO.IOException"/>
  1450. <exception cref="T:System.NotSupportedException"/>
  1451. <exception cref="T:System.UnauthorizedAccessException"/>
  1452. <param name="transaction">The transaction.</param>
  1453. <param name="path">The directory to create.</param>
  1454. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1455. <param name="directorySecurity">The access control to apply to the directory.</param>
  1456. </member>
  1457. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Security.AccessControl.DirectorySecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  1458. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1459. <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>
  1460. <exception cref="T:System.ArgumentException"/>
  1461. <exception cref="T:System.ArgumentNullException"/>
  1462. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1463. <exception cref="T:System.IO.IOException"/>
  1464. <exception cref="T:System.NotSupportedException"/>
  1465. <exception cref="T:System.UnauthorizedAccessException"/>
  1466. <param name="transaction">The transaction.</param>
  1467. <param name="path">The directory to create.</param>
  1468. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1469. <param name="directorySecurity">The access control to apply to the directory.</param>
  1470. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1471. </member>
  1472. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  1473. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1474. <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>
  1475. <exception cref="T:System.ArgumentException"/>
  1476. <exception cref="T:System.ArgumentNullException"/>
  1477. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1478. <exception cref="T:System.IO.IOException"/>
  1479. <exception cref="T:System.NotSupportedException"/>
  1480. <exception cref="T:System.UnauthorizedAccessException"/>
  1481. <param name="transaction">The transaction.</param>
  1482. <param name="path">The directory to create.</param>
  1483. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1484. <param name="directorySecurity">The access control to apply to the directory.</param>
  1485. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1486. </member>
  1487. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1488. <summary>[AlphaFS] Creates all the directories in the specified path of a specified template directory and applies the specified Windows security.</summary>
  1489. <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>
  1490. <exception cref="T:System.ArgumentException"/>
  1491. <exception cref="T:System.ArgumentNullException"/>
  1492. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1493. <exception cref="T:System.IO.IOException"/>
  1494. <exception cref="T:System.NotSupportedException"/>
  1495. <exception cref="T:System.UnauthorizedAccessException"/>
  1496. <param name="transaction">The transaction.</param>
  1497. <param name="path">The directory to create.</param>
  1498. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  1499. <param name="directorySecurity">The access control to apply to the directory.</param>
  1500. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1501. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1502. </member>
  1503. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CreateDirectoryCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Security.AccessControl.ObjectSecurity,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  1504. <summary>Creates a new directory with the attributes of a specified template directory (if one is specified).
  1505. If the underlying file system supports security on files and directories, the function applies the specified security descriptor to the new directory.
  1506. The new directory retains the other attributes of the specified template directory.
  1507. </summary>
  1508. <returns>
  1509. <para>Returns an object that represents the directory at the specified path.</para>
  1510. <para>This object is returned regardless of whether a directory at the specified path already exists.</para>
  1511. </returns>
  1512. <exception cref="T:System.ArgumentException"/>
  1513. <exception cref="T:System.ArgumentNullException"/>
  1514. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1515. <exception cref="T:System.IO.IOException"/>
  1516. <exception cref="T:System.NotSupportedException"/>
  1517. <exception cref="T:System.UnauthorizedAccessException"/>
  1518. <param name="transaction">The transaction.</param>
  1519. <param name="path">The directory to create.</param>
  1520. <param name="templatePath">The path of the directory to use as a template when creating the new directory. May be <see langword="null"/> to indicate that no template should be used.</param>
  1521. <param name="directorySecurity">The <see cref="T:System.Security.AccessControl.DirectorySecurity"/> access control to apply to the directory, may be null.</param>
  1522. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  1523. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1524. </member>
  1525. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String)">
  1526. <summary>Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1527. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1528. <exception cref="T:System.ArgumentException"/>
  1529. <exception cref="T:System.ArgumentNullException"/>
  1530. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1531. <exception cref="T:System.IO.IOException"/>
  1532. <exception cref="T:System.NotSupportedException"/>
  1533. <exception cref="T:System.UnauthorizedAccessException"/>
  1534. <param name="path">The directory to search.</param>
  1535. </member>
  1536. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String)">
  1537. <summary>Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1538. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1539. <exception cref="T:System.ArgumentException"/>
  1540. <exception cref="T:System.ArgumentNullException"/>
  1541. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1542. <exception cref="T:System.IO.IOException"/>
  1543. <exception cref="T:System.NotSupportedException"/>
  1544. <exception cref="T:System.UnauthorizedAccessException"/>
  1545. <param name="path">The directory to search.</param>
  1546. <param name="searchPattern">
  1547. The search string to match against the names of directories in <paramref name="path"/>.
  1548. This parameter can contain a combination of valid literal path and wildcard
  1549. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1550. </param>
  1551. </member>
  1552. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String,System.IO.SearchOption)">
  1553. <summary>Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1554. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1555. <exception cref="T:System.ArgumentException"/>
  1556. <exception cref="T:System.ArgumentNullException"/>
  1557. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1558. <exception cref="T:System.IO.IOException"/>
  1559. <exception cref="T:System.NotSupportedException"/>
  1560. <exception cref="T:System.UnauthorizedAccessException"/>
  1561. <param name="path">The directory to search.</param>
  1562. <param name="searchPattern">
  1563. The search string to match against the names of directories in <paramref name="path"/>.
  1564. This parameter can contain a combination of valid literal path and wildcard
  1565. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1566. </param>
  1567. <param name="searchOption">
  1568. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1569. should include only the current directory or should include all subdirectories.
  1570. </param>
  1571. </member>
  1572. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1573. <summary>[AlphaFS] Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1574. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1575. <exception cref="T:System.ArgumentException"/>
  1576. <exception cref="T:System.ArgumentNullException"/>
  1577. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1578. <exception cref="T:System.IO.IOException"/>
  1579. <exception cref="T:System.NotSupportedException"/>
  1580. <exception cref="T:System.UnauthorizedAccessException"/>
  1581. <param name="path">The directory to search.</param>
  1582. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1583. </member>
  1584. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1585. <summary>[AlphaFS] Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1586. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1587. <exception cref="T:System.ArgumentException"/>
  1588. <exception cref="T:System.ArgumentNullException"/>
  1589. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1590. <exception cref="T:System.IO.IOException"/>
  1591. <exception cref="T:System.NotSupportedException"/>
  1592. <exception cref="T:System.UnauthorizedAccessException"/>
  1593. <param name="path">The directory to search.</param>
  1594. <param name="searchPattern">
  1595. The search string to match against the names of directories in <paramref name="path"/>.
  1596. This parameter can contain a combination of valid literal path and wildcard
  1597. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1598. </param>
  1599. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1600. </member>
  1601. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  1602. <summary>[AlphaFS] Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1603. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1604. <exception cref="T:System.ArgumentException"/>
  1605. <exception cref="T:System.ArgumentNullException"/>
  1606. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1607. <exception cref="T:System.IO.IOException"/>
  1608. <exception cref="T:System.NotSupportedException"/>
  1609. <exception cref="T:System.UnauthorizedAccessException"/>
  1610. <param name="path">The directory to search.</param>
  1611. <param name="searchPattern">
  1612. The search string to match against the names of directories in <paramref name="path"/>.
  1613. This parameter can contain a combination of valid literal path and wildcard
  1614. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1615. </param>
  1616. <param name="searchOption">
  1617. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1618. should include only the current directory or should include all subdirectories.
  1619. </param>
  1620. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1621. </member>
  1622. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1623. <summary>[AlphaFS] Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1624. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1625. <exception cref="T:System.ArgumentException"/>
  1626. <exception cref="T:System.ArgumentNullException"/>
  1627. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1628. <exception cref="T:System.IO.IOException"/>
  1629. <exception cref="T:System.NotSupportedException"/>
  1630. <exception cref="T:System.UnauthorizedAccessException"/>
  1631. <param name="path">The directory to search.</param>
  1632. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1633. </member>
  1634. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1635. <summary>[AlphaFS] Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1636. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1637. <exception cref="T:System.ArgumentException"/>
  1638. <exception cref="T:System.ArgumentNullException"/>
  1639. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1640. <exception cref="T:System.IO.IOException"/>
  1641. <exception cref="T:System.NotSupportedException"/>
  1642. <exception cref="T:System.UnauthorizedAccessException"/>
  1643. <param name="path">The directory to search.</param>
  1644. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1645. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1646. </member>
  1647. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1648. <summary>[AlphaFS] Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1649. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1650. <exception cref="T:System.ArgumentException"/>
  1651. <exception cref="T:System.ArgumentNullException"/>
  1652. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1653. <exception cref="T:System.IO.IOException"/>
  1654. <exception cref="T:System.NotSupportedException"/>
  1655. <exception cref="T:System.UnauthorizedAccessException"/>
  1656. <param name="path">The directory to search.</param>
  1657. <param name="searchPattern">
  1658. The search string to match against the names of directories in <paramref name="path"/>.
  1659. This parameter can contain a combination of valid literal path and wildcard
  1660. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1661. </param>
  1662. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1663. </member>
  1664. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectories(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1665. <summary>[AlphaFS] Returns an enumerable collection of directory names in a specified <paramref name="path"/>.</summary>
  1666. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1667. <exception cref="T:System.ArgumentException"/>
  1668. <exception cref="T:System.ArgumentNullException"/>
  1669. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1670. <exception cref="T:System.IO.IOException"/>
  1671. <exception cref="T:System.NotSupportedException"/>
  1672. <exception cref="T:System.UnauthorizedAccessException"/>
  1673. <param name="path">The directory to search.</param>
  1674. <param name="searchPattern">
  1675. The search string to match against the names of directories in <paramref name="path"/>.
  1676. This parameter can contain a combination of valid literal path and wildcard
  1677. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1678. </param>
  1679. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1680. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1681. </member>
  1682. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  1683. <summary>[AlphaFS] Returns an enumerable collection of directory instances in a specified <paramref name="path"/>.</summary>
  1684. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1685. <exception cref="T:System.ArgumentException"/>
  1686. <exception cref="T:System.ArgumentNullException"/>
  1687. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1688. <exception cref="T:System.IO.IOException"/>
  1689. <exception cref="T:System.NotSupportedException"/>
  1690. <exception cref="T:System.UnauthorizedAccessException"/>
  1691. <param name="transaction">The transaction.</param>
  1692. <param name="path">The directory to search.</param>
  1693. </member>
  1694. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  1695. <summary>[AlphaFS] Returns an enumerable collection of directory instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1696. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1697. <exception cref="T:System.ArgumentException"/>
  1698. <exception cref="T:System.ArgumentNullException"/>
  1699. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1700. <exception cref="T:System.IO.IOException"/>
  1701. <exception cref="T:System.NotSupportedException"/>
  1702. <exception cref="T:System.UnauthorizedAccessException"/>
  1703. <param name="transaction">The transaction.</param>
  1704. <param name="path">The directory to search.</param>
  1705. <param name="searchPattern">
  1706. The search string to match against the names of directories in <paramref name="path"/>.
  1707. This parameter can contain a combination of valid literal path and wildcard
  1708. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1709. </param>
  1710. </member>
  1711. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  1712. <summary>[AlphaFS] Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1713. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1714. <exception cref="T:System.ArgumentException"/>
  1715. <exception cref="T:System.ArgumentNullException"/>
  1716. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1717. <exception cref="T:System.IO.IOException"/>
  1718. <exception cref="T:System.NotSupportedException"/>
  1719. <exception cref="T:System.UnauthorizedAccessException"/>
  1720. <param name="transaction">The transaction.</param>
  1721. <param name="path">The directory to search.</param>
  1722. <param name="searchPattern">
  1723. The search string to match against the names of directories in <paramref name="path"/>.
  1724. This parameter can contain a combination of valid literal path and wildcard
  1725. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1726. </param>
  1727. <param name="searchOption">
  1728. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1729. should include only the current directory or should include all subdirectories.
  1730. </param>
  1731. </member>
  1732. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1733. <summary>[AlphaFS] Returns an enumerable collection of directory instances in a specified <paramref name="path"/>.</summary>
  1734. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1735. <exception cref="T:System.ArgumentException"/>
  1736. <exception cref="T:System.ArgumentNullException"/>
  1737. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1738. <exception cref="T:System.IO.IOException"/>
  1739. <exception cref="T:System.NotSupportedException"/>
  1740. <exception cref="T:System.UnauthorizedAccessException"/>
  1741. <param name="transaction">The transaction.</param>
  1742. <param name="path">The directory to search.</param>
  1743. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1744. </member>
  1745. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1746. <summary>[AlphaFS] Returns an enumerable collection of directory instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1747. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1748. <exception cref="T:System.ArgumentException"/>
  1749. <exception cref="T:System.ArgumentNullException"/>
  1750. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1751. <exception cref="T:System.IO.IOException"/>
  1752. <exception cref="T:System.NotSupportedException"/>
  1753. <exception cref="T:System.UnauthorizedAccessException"/>
  1754. <param name="transaction">The transaction.</param>
  1755. <param name="path">The directory to search.</param>
  1756. <param name="searchPattern">
  1757. The search string to match against the names of directories in <paramref name="path"/>.
  1758. This parameter can contain a combination of valid literal path and wildcard
  1759. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1760. </param>
  1761. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1762. </member>
  1763. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  1764. <summary>[AlphaFS] Returns an enumerable collection of directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1765. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1766. <exception cref="T:System.ArgumentException"/>
  1767. <exception cref="T:System.ArgumentNullException"/>
  1768. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1769. <exception cref="T:System.IO.IOException"/>
  1770. <exception cref="T:System.NotSupportedException"/>
  1771. <exception cref="T:System.UnauthorizedAccessException"/>
  1772. <param name="transaction">The transaction.</param>
  1773. <param name="path">The directory to search.</param>
  1774. <param name="searchPattern">
  1775. The search string to match against the names of directories in <paramref name="path"/>.
  1776. This parameter can contain a combination of valid literal path and wildcard
  1777. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1778. </param>
  1779. <param name="searchOption">
  1780. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1781. should include only the current directory or should include all subdirectories.
  1782. </param>
  1783. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1784. </member>
  1785. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1786. <summary>[AlphaFS] Returns an enumerable collection of directory instances in a specified <paramref name="path"/>.</summary>
  1787. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1788. <exception cref="T:System.ArgumentException"/>
  1789. <exception cref="T:System.ArgumentNullException"/>
  1790. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1791. <exception cref="T:System.IO.IOException"/>
  1792. <exception cref="T:System.NotSupportedException"/>
  1793. <exception cref="T:System.UnauthorizedAccessException"/>
  1794. <param name="transaction">The transaction.</param>
  1795. <param name="path">The directory to search.</param>
  1796. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1797. </member>
  1798. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1799. <summary>[AlphaFS] Returns an enumerable collection of directory instances in a specified <paramref name="path"/>.</summary>
  1800. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/>.</returns>
  1801. <exception cref="T:System.ArgumentException"/>
  1802. <exception cref="T:System.ArgumentNullException"/>
  1803. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1804. <exception cref="T:System.IO.IOException"/>
  1805. <exception cref="T:System.NotSupportedException"/>
  1806. <exception cref="T:System.UnauthorizedAccessException"/>
  1807. <param name="transaction">The transaction.</param>
  1808. <param name="path">The directory to search.</param>
  1809. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1810. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1811. </member>
  1812. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1813. <summary>[AlphaFS] Returns an enumerable collection of directory instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1814. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1815. <exception cref="T:System.ArgumentException"/>
  1816. <exception cref="T:System.ArgumentNullException"/>
  1817. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1818. <exception cref="T:System.IO.IOException"/>
  1819. <exception cref="T:System.NotSupportedException"/>
  1820. <exception cref="T:System.UnauthorizedAccessException"/>
  1821. <param name="transaction">The transaction.</param>
  1822. <param name="path">The directory to search.</param>
  1823. <param name="searchPattern">
  1824. The search string to match against the names of directories in <paramref name="path"/>.
  1825. This parameter can contain a combination of valid literal path and wildcard
  1826. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1827. </param>
  1828. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1829. </member>
  1830. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1831. <summary>[AlphaFS] Returns an enumerable collection of directory instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  1832. <returns>An enumerable collection of the full names (including paths) for the directories in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  1833. <exception cref="T:System.ArgumentException"/>
  1834. <exception cref="T:System.ArgumentNullException"/>
  1835. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1836. <exception cref="T:System.IO.IOException"/>
  1837. <exception cref="T:System.NotSupportedException"/>
  1838. <exception cref="T:System.UnauthorizedAccessException"/>
  1839. <param name="transaction">The transaction.</param>
  1840. <param name="path">The directory to search.</param>
  1841. <param name="searchPattern">
  1842. The search string to match against the names of directories in <paramref name="path"/>.
  1843. This parameter can contain a combination of valid literal path and wildcard
  1844. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1845. </param>
  1846. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1847. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1848. </member>
  1849. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String)">
  1850. <summary>Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1851. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  1852. <exception cref="T:System.ArgumentException"/>
  1853. <exception cref="T:System.ArgumentNullException"/>
  1854. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1855. <exception cref="T:System.IO.IOException"/>
  1856. <exception cref="T:System.NotSupportedException"/>
  1857. <exception cref="T:System.UnauthorizedAccessException"/>
  1858. <param name="path">The directory to search.</param>
  1859. </member>
  1860. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String)">
  1861. <summary>Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1862. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  1863. <exception cref="T:System.ArgumentException"/>
  1864. <exception cref="T:System.ArgumentNullException"/>
  1865. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1866. <exception cref="T:System.IO.IOException"/>
  1867. <exception cref="T:System.NotSupportedException"/>
  1868. <exception cref="T:System.UnauthorizedAccessException"/>
  1869. <param name="path">The directory to search.</param>
  1870. <param name="searchPattern">
  1871. The search string to match against the names of directories in <paramref name="path"/>.
  1872. This parameter can contain a combination of valid literal path and wildcard
  1873. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1874. </param>
  1875. </member>
  1876. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String,System.IO.SearchOption)">
  1877. <summary>Returns an enumerable collection of file names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1878. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1879. <exception cref="T:System.ArgumentException"/>
  1880. <exception cref="T:System.ArgumentNullException"/>
  1881. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1882. <exception cref="T:System.IO.IOException"/>
  1883. <exception cref="T:System.NotSupportedException"/>
  1884. <exception cref="T:System.UnauthorizedAccessException"/>
  1885. <param name="path">The directory to search.</param>
  1886. <param name="searchPattern">
  1887. The search string to match against the names of directories in <paramref name="path"/>.
  1888. This parameter can contain a combination of valid literal path and wildcard
  1889. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1890. </param>
  1891. <param name="searchOption">
  1892. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1893. should include only the current directory or should include all subdirectories.
  1894. </param>
  1895. </member>
  1896. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1897. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1898. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  1899. <exception cref="T:System.ArgumentException"/>
  1900. <exception cref="T:System.ArgumentNullException"/>
  1901. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1902. <exception cref="T:System.IO.IOException"/>
  1903. <exception cref="T:System.NotSupportedException"/>
  1904. <exception cref="T:System.UnauthorizedAccessException"/>
  1905. <param name="path">The directory to search.</param>
  1906. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1907. </member>
  1908. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  1909. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1910. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  1911. <exception cref="T:System.ArgumentException"/>
  1912. <exception cref="T:System.ArgumentNullException"/>
  1913. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1914. <exception cref="T:System.IO.IOException"/>
  1915. <exception cref="T:System.NotSupportedException"/>
  1916. <exception cref="T:System.UnauthorizedAccessException"/>
  1917. <param name="path">The directory to search.</param>
  1918. <param name="searchPattern">
  1919. The search string to match against the names of directories in <paramref name="path"/>.
  1920. This parameter can contain a combination of valid literal path and wildcard
  1921. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1922. </param>
  1923. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1924. </member>
  1925. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  1926. <summary>[AlphaFS] Returns an enumerable collection of file names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  1927. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  1928. <exception cref="T:System.ArgumentException"/>
  1929. <exception cref="T:System.ArgumentNullException"/>
  1930. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1931. <exception cref="T:System.IO.IOException"/>
  1932. <exception cref="T:System.NotSupportedException"/>
  1933. <exception cref="T:System.UnauthorizedAccessException"/>
  1934. <param name="path">The directory to search.</param>
  1935. <param name="searchPattern">
  1936. The search string to match against the names of directories in <paramref name="path"/>.
  1937. This parameter can contain a combination of valid literal path and wildcard
  1938. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1939. </param>
  1940. <param name="searchOption">
  1941. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  1942. should include only the current directory or should include all subdirectories.
  1943. </param>
  1944. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1945. </member>
  1946. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1947. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1948. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  1949. <exception cref="T:System.ArgumentException"/>
  1950. <exception cref="T:System.ArgumentNullException"/>
  1951. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1952. <exception cref="T:System.IO.IOException"/>
  1953. <exception cref="T:System.NotSupportedException"/>
  1954. <exception cref="T:System.UnauthorizedAccessException"/>
  1955. <param name="path">The directory to search.</param>
  1956. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1957. </member>
  1958. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1959. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1960. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  1961. <exception cref="T:System.ArgumentException"/>
  1962. <exception cref="T:System.ArgumentNullException"/>
  1963. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1964. <exception cref="T:System.IO.IOException"/>
  1965. <exception cref="T:System.NotSupportedException"/>
  1966. <exception cref="T:System.UnauthorizedAccessException"/>
  1967. <param name="path">The directory to search.</param>
  1968. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1969. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  1970. </member>
  1971. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  1972. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1973. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  1974. <exception cref="T:System.ArgumentException"/>
  1975. <exception cref="T:System.ArgumentNullException"/>
  1976. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1977. <exception cref="T:System.IO.IOException"/>
  1978. <exception cref="T:System.NotSupportedException"/>
  1979. <exception cref="T:System.UnauthorizedAccessException"/>
  1980. <param name="path">The directory to search.</param>
  1981. <param name="searchPattern">
  1982. The search string to match against the names of directories in <paramref name="path"/>.
  1983. This parameter can contain a combination of valid literal path and wildcard
  1984. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  1985. </param>
  1986. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  1987. </member>
  1988. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFiles(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  1989. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  1990. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  1991. <exception cref="T:System.ArgumentException"/>
  1992. <exception cref="T:System.ArgumentNullException"/>
  1993. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  1994. <exception cref="T:System.IO.IOException"/>
  1995. <exception cref="T:System.NotSupportedException"/>
  1996. <exception cref="T:System.UnauthorizedAccessException"/>
  1997. <param name="path">The directory to search.</param>
  1998. <param name="searchPattern">
  1999. The search string to match against the names of directories in <paramref name="path"/>.
  2000. This parameter can contain a combination of valid literal path and wildcard
  2001. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2002. </param>
  2003. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2004. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2005. </member>
  2006. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  2007. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  2008. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  2009. <exception cref="T:System.ArgumentException"/>
  2010. <exception cref="T:System.ArgumentNullException"/>
  2011. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2012. <exception cref="T:System.IO.IOException"/>
  2013. <exception cref="T:System.NotSupportedException"/>
  2014. <exception cref="T:System.UnauthorizedAccessException"/>
  2015. <param name="transaction">The transaction.</param>
  2016. <param name="path">The directory to search.</param>
  2017. </member>
  2018. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  2019. <summary>[AlphaFS] Returns an enumerable collection of file instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2020. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  2021. <exception cref="T:System.ArgumentException"/>
  2022. <exception cref="T:System.ArgumentNullException"/>
  2023. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2024. <exception cref="T:System.IO.IOException"/>
  2025. <exception cref="T:System.NotSupportedException"/>
  2026. <exception cref="T:System.UnauthorizedAccessException"/>
  2027. <param name="transaction">The transaction.</param>
  2028. <param name="path">The directory to search.</param>
  2029. <param name="searchPattern">
  2030. The search string to match against the names of directories in <paramref name="path"/>.
  2031. This parameter can contain a combination of valid literal path and wildcard
  2032. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2033. </param>
  2034. </member>
  2035. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  2036. <summary>[AlphaFS] Returns an enumerable collection of file instances instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2037. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2038. <exception cref="T:System.ArgumentException"/>
  2039. <exception cref="T:System.ArgumentNullException"/>
  2040. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2041. <exception cref="T:System.IO.IOException"/>
  2042. <exception cref="T:System.NotSupportedException"/>
  2043. <exception cref="T:System.UnauthorizedAccessException"/>
  2044. <param name="transaction">The transaction.</param>
  2045. <param name="path">The directory to search.</param>
  2046. <param name="searchPattern">
  2047. The search string to match against the names of directories in <paramref name="path"/>.
  2048. This parameter can contain a combination of valid literal path and wildcard
  2049. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2050. </param>
  2051. <param name="searchOption">
  2052. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2053. should include only the current directory or should include all subdirectories.
  2054. </param>
  2055. </member>
  2056. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2057. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  2058. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  2059. <exception cref="T:System.ArgumentException"/>
  2060. <exception cref="T:System.ArgumentNullException"/>
  2061. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2062. <exception cref="T:System.IO.IOException"/>
  2063. <exception cref="T:System.NotSupportedException"/>
  2064. <exception cref="T:System.UnauthorizedAccessException"/>
  2065. <param name="transaction">The transaction.</param>
  2066. <param name="path">The directory to search.</param>
  2067. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2068. </member>
  2069. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2070. <summary>[AlphaFS] Returns an enumerable collection of file instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2071. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  2072. <exception cref="T:System.ArgumentException"/>
  2073. <exception cref="T:System.ArgumentNullException"/>
  2074. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2075. <exception cref="T:System.IO.IOException"/>
  2076. <exception cref="T:System.NotSupportedException"/>
  2077. <exception cref="T:System.UnauthorizedAccessException"/>
  2078. <param name="transaction">The transaction.</param>
  2079. <param name="path">The directory to search.</param>
  2080. <param name="searchPattern">
  2081. The search string to match against the names of directories in <paramref name="path"/>.
  2082. This parameter can contain a combination of valid literal path and wildcard
  2083. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2084. </param>
  2085. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2086. </member>
  2087. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  2088. <summary>[AlphaFS] Returns an enumerable collection of file instances instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2089. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2090. <exception cref="T:System.ArgumentException"/>
  2091. <exception cref="T:System.ArgumentNullException"/>
  2092. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2093. <exception cref="T:System.IO.IOException"/>
  2094. <exception cref="T:System.NotSupportedException"/>
  2095. <exception cref="T:System.UnauthorizedAccessException"/>
  2096. <param name="transaction">The transaction.</param>
  2097. <param name="path">The directory to search.</param>
  2098. <param name="searchPattern">
  2099. The search string to match against the names of directories in <paramref name="path"/>.
  2100. This parameter can contain a combination of valid literal path and wildcard
  2101. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2102. </param>
  2103. <param name="searchOption">
  2104. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2105. should include only the current directory or should include all subdirectories.
  2106. </param>
  2107. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2108. </member>
  2109. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2110. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  2111. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  2112. <exception cref="T:System.ArgumentException"/>
  2113. <exception cref="T:System.ArgumentNullException"/>
  2114. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2115. <exception cref="T:System.IO.IOException"/>
  2116. <exception cref="T:System.NotSupportedException"/>
  2117. <exception cref="T:System.UnauthorizedAccessException"/>
  2118. <param name="transaction">The transaction.</param>
  2119. <param name="path">The directory to search.</param>
  2120. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2121. </member>
  2122. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2123. <summary>[AlphaFS] Returns an enumerable collection of file names in a specified <paramref name="path"/>.</summary>
  2124. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/>.</returns>
  2125. <exception cref="T:System.ArgumentException"/>
  2126. <exception cref="T:System.ArgumentNullException"/>
  2127. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2128. <exception cref="T:System.IO.IOException"/>
  2129. <exception cref="T:System.NotSupportedException"/>
  2130. <exception cref="T:System.UnauthorizedAccessException"/>
  2131. <param name="transaction">The transaction.</param>
  2132. <param name="path">The directory to search.</param>
  2133. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2134. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2135. </member>
  2136. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2137. <summary>[AlphaFS] Returns an enumerable collection of file instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2138. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  2139. <exception cref="T:System.ArgumentException"/>
  2140. <exception cref="T:System.ArgumentNullException"/>
  2141. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2142. <exception cref="T:System.IO.IOException"/>
  2143. <exception cref="T:System.NotSupportedException"/>
  2144. <exception cref="T:System.UnauthorizedAccessException"/>
  2145. <param name="transaction">The transaction.</param>
  2146. <param name="path">The directory to search.</param>
  2147. <param name="searchPattern">
  2148. The search string to match against the names of directories in <paramref name="path"/>.
  2149. This parameter can contain a combination of valid literal path and wildcard
  2150. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2151. </param>
  2152. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2153. </member>
  2154. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2155. <summary>[AlphaFS] Returns an enumerable collection of file instances that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2156. <returns>An enumerable collection of the full names (including paths) for the files in the directory specified by <paramref name="path"/> and that match the <paramref name="searchPattern"/>.</returns>
  2157. <exception cref="T:System.ArgumentException"/>
  2158. <exception cref="T:System.ArgumentNullException"/>
  2159. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2160. <exception cref="T:System.IO.IOException"/>
  2161. <exception cref="T:System.NotSupportedException"/>
  2162. <exception cref="T:System.UnauthorizedAccessException"/>
  2163. <param name="transaction">The transaction.</param>
  2164. <param name="path">The directory to search.</param>
  2165. <param name="searchPattern">
  2166. The search string to match against the names of directories in <paramref name="path"/>.
  2167. This parameter can contain a combination of valid literal path and wildcard
  2168. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2169. </param>
  2170. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2171. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2172. </member>
  2173. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String)">
  2174. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2175. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2176. <exception cref="T:System.ArgumentException"/>
  2177. <exception cref="T:System.ArgumentNullException"/>
  2178. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2179. <exception cref="T:System.IO.IOException"/>
  2180. <exception cref="T:System.NotSupportedException"/>
  2181. <exception cref="T:System.UnauthorizedAccessException"/>
  2182. <typeparam name="T">The type to return. This may be one of the following types:
  2183. <list type="definition">
  2184. <item>
  2185. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2186. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2187. </item>
  2188. <item>
  2189. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2190. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2191. </item>
  2192. <item>
  2193. <term><see cref="T:System.String"/></term>
  2194. <description>This method will return the full path of each item.</description>
  2195. </item>
  2196. </list>
  2197. </typeparam>
  2198. <param name="path">The directory to search.</param>
  2199. </member>
  2200. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2201. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2202. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2203. <exception cref="T:System.ArgumentException"/>
  2204. <exception cref="T:System.ArgumentNullException"/>
  2205. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2206. <exception cref="T:System.IO.IOException"/>
  2207. <exception cref="T:System.NotSupportedException"/>
  2208. <exception cref="T:System.UnauthorizedAccessException"/>
  2209. <typeparam name="T">The type to return. This may be one of the following types:
  2210. <list type="definition">
  2211. <item>
  2212. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2213. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2214. </item>
  2215. <item>
  2216. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2217. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2218. </item>
  2219. <item>
  2220. <term><see cref="T:System.String"/></term>
  2221. <description>This method will return the full path of each item.</description>
  2222. </item>
  2223. </list>
  2224. </typeparam>
  2225. <param name="path">The directory to search.</param>
  2226. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2227. </member>
  2228. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2229. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2230. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2231. <exception cref="T:System.ArgumentException"/>
  2232. <exception cref="T:System.ArgumentNullException"/>
  2233. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2234. <exception cref="T:System.IO.IOException"/>
  2235. <exception cref="T:System.NotSupportedException"/>
  2236. <exception cref="T:System.UnauthorizedAccessException"/>
  2237. <typeparam name="T">The type to return. This may be one of the following types:
  2238. <list type="definition">
  2239. <item>
  2240. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2241. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2242. </item>
  2243. <item>
  2244. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2245. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2246. </item>
  2247. <item>
  2248. <term><see cref="T:System.String"/></term>
  2249. <description>This method will return the full path of each item.</description>
  2250. </item>
  2251. </list>
  2252. </typeparam>
  2253. <param name="path">The directory to search.</param>
  2254. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2255. </member>
  2256. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2257. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2258. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2259. <exception cref="T:System.ArgumentException"/>
  2260. <exception cref="T:System.ArgumentNullException"/>
  2261. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2262. <exception cref="T:System.IO.IOException"/>
  2263. <exception cref="T:System.NotSupportedException"/>
  2264. <exception cref="T:System.UnauthorizedAccessException"/>
  2265. <typeparam name="T">The type to return. This may be one of the following types:
  2266. <list type="definition">
  2267. <item>
  2268. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2269. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2270. </item>
  2271. <item>
  2272. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2273. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2274. </item>
  2275. <item>
  2276. <term><see cref="T:System.String"/></term>
  2277. <description>This method will return the full path of each item.</description>
  2278. </item>
  2279. </list>
  2280. </typeparam>
  2281. <param name="path">The directory to search.</param>
  2282. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2283. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2284. </member>
  2285. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,System.String)">
  2286. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern" /> in a specified path.</summary>
  2287. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2288. <exception cref="T:System.ArgumentException"/>
  2289. <exception cref="T:System.ArgumentNullException"/>
  2290. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2291. <exception cref="T:System.IO.IOException"/>
  2292. <exception cref="T:System.NotSupportedException"/>
  2293. <exception cref="T:System.UnauthorizedAccessException"/>
  2294. <typeparam name="T">The type to return. This may be one of the following types:
  2295. <list type="definition">
  2296. <item>
  2297. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2298. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2299. </item>
  2300. <item>
  2301. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2302. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2303. </item>
  2304. <item>
  2305. <term><see cref="T:System.String"/></term>
  2306. <description>This method will return the full path of each item.</description>
  2307. </item>
  2308. </list>
  2309. </typeparam>
  2310. <param name="path">The directory to search.</param>
  2311. <param name="searchPattern">
  2312. The search string to match against the names of directories in <paramref name="path"/>.
  2313. This parameter can contain a combination of valid literal path and wildcard
  2314. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2315. </param>
  2316. </member>
  2317. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2318. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path.</summary>
  2319. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2320. <exception cref="T:System.ArgumentException"/>
  2321. <exception cref="T:System.ArgumentNullException"/>
  2322. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2323. <exception cref="T:System.IO.IOException"/>
  2324. <exception cref="T:System.NotSupportedException"/>
  2325. <exception cref="T:System.UnauthorizedAccessException"/>
  2326. <typeparam name="T">The type to return. This may be one of the following types:
  2327. <list type="definition">
  2328. <item>
  2329. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2330. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2331. </item>
  2332. <item>
  2333. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2334. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2335. </item>
  2336. <item>
  2337. <term><see cref="T:System.String"/></term>
  2338. <description>This method will return the full path of each item.</description>
  2339. </item>
  2340. </list>
  2341. </typeparam>
  2342. <param name="path">The directory to search.</param>
  2343. <param name="searchPattern">
  2344. The search string to match against the names of directories in <paramref name="path"/>.
  2345. This parameter can contain a combination of valid literal path and wildcard
  2346. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2347. </param>
  2348. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2349. </member>
  2350. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2351. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path using <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/>.</summary>
  2352. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2353. <exception cref="T:System.ArgumentException"/>
  2354. <exception cref="T:System.ArgumentNullException"/>
  2355. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2356. <exception cref="T:System.IO.IOException"/>
  2357. <exception cref="T:System.NotSupportedException"/>
  2358. <exception cref="T:System.UnauthorizedAccessException"/>
  2359. <typeparam name="T">The type to return. This may be one of the following types:
  2360. <list type="definition">
  2361. <item>
  2362. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2363. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2364. </item>
  2365. <item>
  2366. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2367. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2368. </item>
  2369. <item>
  2370. <term><see cref="T:System.String"/></term>
  2371. <description>This method will return the full path of each item.</description>
  2372. </item>
  2373. </list>
  2374. </typeparam>
  2375. <param name="path">The directory to search.</param>
  2376. <param name="searchPattern">
  2377. The search string to match against the names of directories in <paramref name="path"/>.
  2378. This parameter can contain a combination of valid literal path and wildcard
  2379. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2380. </param>
  2381. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2382. </member>
  2383. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfos``1(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2384. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path using <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/>.</summary>
  2385. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2386. <exception cref="T:System.ArgumentException"/>
  2387. <exception cref="T:System.ArgumentNullException"/>
  2388. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2389. <exception cref="T:System.IO.IOException"/>
  2390. <exception cref="T:System.NotSupportedException"/>
  2391. <exception cref="T:System.UnauthorizedAccessException"/>
  2392. <typeparam name="T">The type to return. This may be one of the following types:
  2393. <list type="definition">
  2394. <item>
  2395. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2396. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2397. </item>
  2398. <item>
  2399. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2400. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2401. </item>
  2402. <item>
  2403. <term><see cref="T:System.String"/></term>
  2404. <description>This method will return the full path of each item.</description>
  2405. </item>
  2406. </list>
  2407. </typeparam>
  2408. <param name="path">The directory to search.</param>
  2409. <param name="searchPattern">
  2410. The search string to match against the names of directories in <paramref name="path"/>.
  2411. This parameter can contain a combination of valid literal path and wildcard
  2412. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2413. </param>
  2414. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2415. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2416. </member>
  2417. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  2418. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2419. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2420. <exception cref="T:System.ArgumentException"/>
  2421. <exception cref="T:System.ArgumentNullException"/>
  2422. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2423. <exception cref="T:System.IO.IOException"/>
  2424. <exception cref="T:System.NotSupportedException"/>
  2425. <exception cref="T:System.UnauthorizedAccessException"/>
  2426. <typeparam name="T">The type to return. This may be one of the following types:
  2427. <list type="definition">
  2428. <item>
  2429. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2430. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2431. </item>
  2432. <item>
  2433. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2434. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2435. </item>
  2436. <item>
  2437. <term><see cref="T:System.String"/></term>
  2438. <description>This method will return the full path of each item.</description>
  2439. </item>
  2440. </list>
  2441. </typeparam>
  2442. <param name="transaction">The transaction.</param>
  2443. <param name="path">The directory to search.</param>
  2444. </member>
  2445. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2446. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2447. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2448. <exception cref="T:System.ArgumentException"/>
  2449. <exception cref="T:System.ArgumentNullException"/>
  2450. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2451. <exception cref="T:System.IO.IOException"/>
  2452. <exception cref="T:System.NotSupportedException"/>
  2453. <exception cref="T:System.UnauthorizedAccessException"/>
  2454. <typeparam name="T">The type to return. This may be one of the following types:
  2455. <list type="definition">
  2456. <item>
  2457. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2458. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2459. </item>
  2460. <item>
  2461. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2462. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2463. </item>
  2464. <item>
  2465. <term><see cref="T:System.String"/></term>
  2466. <description>This method will return the full path of each item.</description>
  2467. </item>
  2468. </list>
  2469. </typeparam>
  2470. <param name="transaction">The transaction.</param>
  2471. <param name="path">The directory to search.</param>
  2472. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2473. </member>
  2474. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2475. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2476. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2477. <exception cref="T:System.ArgumentException"/>
  2478. <exception cref="T:System.ArgumentNullException"/>
  2479. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2480. <exception cref="T:System.IO.IOException"/>
  2481. <exception cref="T:System.NotSupportedException"/>
  2482. <exception cref="T:System.UnauthorizedAccessException"/>
  2483. <typeparam name="T">The type to return. This may be one of the following types:
  2484. <list type="definition">
  2485. <item>
  2486. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2487. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2488. </item>
  2489. <item>
  2490. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2491. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2492. </item>
  2493. <item>
  2494. <term><see cref="T:System.String"/></term>
  2495. <description>This method will return the full path of each item.</description>
  2496. </item>
  2497. </list>
  2498. </typeparam>
  2499. <param name="transaction">The transaction.</param>
  2500. <param name="path">The directory to search.</param>
  2501. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2502. </member>
  2503. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2504. <summary>[AlphaFS] Returns an enumerable collection of file system entries in a specified path.</summary>
  2505. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2506. <exception cref="T:System.ArgumentException"/>
  2507. <exception cref="T:System.ArgumentNullException"/>
  2508. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2509. <exception cref="T:System.IO.IOException"/>
  2510. <exception cref="T:System.NotSupportedException"/>
  2511. <exception cref="T:System.UnauthorizedAccessException"/>
  2512. <typeparam name="T">The type to return. This may be one of the following types:
  2513. <list type="definition">
  2514. <item>
  2515. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2516. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2517. </item>
  2518. <item>
  2519. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2520. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2521. </item>
  2522. <item>
  2523. <term><see cref="T:System.String"/></term>
  2524. <description>This method will return the full path of each item.</description>
  2525. </item>
  2526. </list>
  2527. </typeparam>
  2528. <param name="transaction">The transaction.</param>
  2529. <param name="path">The directory to search.</param>
  2530. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2531. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2532. </member>
  2533. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  2534. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path.</summary>
  2535. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2536. <exception cref="T:System.ArgumentException"/>
  2537. <exception cref="T:System.ArgumentNullException"/>
  2538. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2539. <exception cref="T:System.IO.IOException"/>
  2540. <exception cref="T:System.NotSupportedException"/>
  2541. <exception cref="T:System.UnauthorizedAccessException"/>
  2542. <typeparam name="T">The type to return. This may be one of the following types:
  2543. <list type="definition">
  2544. <item>
  2545. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2546. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2547. </item>
  2548. <item>
  2549. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2550. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2551. </item>
  2552. <item>
  2553. <term><see cref="T:System.String"/></term>
  2554. <description>This method will return the full path of each item.</description>
  2555. </item>
  2556. </list>
  2557. </typeparam>
  2558. <param name="transaction">The transaction.</param>
  2559. <param name="path">The directory to search.</param>
  2560. <param name="searchPattern">
  2561. The search string to match against the names of directories in <paramref name="path"/>.
  2562. This parameter can contain a combination of valid literal path and wildcard
  2563. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2564. </param>
  2565. </member>
  2566. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2567. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path.</summary>
  2568. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2569. <exception cref="T:System.ArgumentException"/>
  2570. <exception cref="T:System.ArgumentNullException"/>
  2571. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2572. <exception cref="T:System.IO.IOException"/>
  2573. <exception cref="T:System.NotSupportedException"/>
  2574. <exception cref="T:System.UnauthorizedAccessException"/>
  2575. <typeparam name="T">The type to return. This may be one of the following types:
  2576. <list type="definition">
  2577. <item>
  2578. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2579. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2580. </item>
  2581. <item>
  2582. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2583. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2584. </item>
  2585. <item>
  2586. <term><see cref="T:System.String"/></term>
  2587. <description>This method will return the full path of each item.</description>
  2588. </item>
  2589. </list>
  2590. </typeparam>
  2591. <param name="transaction">The transaction.</param>
  2592. <param name="path">The directory to search.</param>
  2593. <param name="searchPattern">
  2594. The search string to match against the names of directories in <paramref name="path"/>.
  2595. This parameter can contain a combination of valid literal path and wildcard
  2596. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2597. </param>
  2598. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2599. </member>
  2600. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2601. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path using <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/>.</summary>
  2602. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2603. <exception cref="T:System.ArgumentException"/>
  2604. <exception cref="T:System.ArgumentNullException"/>
  2605. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2606. <exception cref="T:System.IO.IOException"/>
  2607. <exception cref="T:System.NotSupportedException"/>
  2608. <exception cref="T:System.UnauthorizedAccessException"/>
  2609. <typeparam name="T">The type to return. This may be one of the following types:
  2610. <list type="definition">
  2611. <item>
  2612. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2613. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2614. </item>
  2615. <item>
  2616. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2617. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2618. </item>
  2619. <item>
  2620. <term><see cref="T:System.String"/></term>
  2621. <description>This method will return the full path of each item.</description>
  2622. </item>
  2623. </list>
  2624. </typeparam>
  2625. <param name="transaction">The transaction.</param>
  2626. <param name="path">The directory to search.</param>
  2627. <param name="searchPattern">
  2628. The search string to match against the names of directories in <paramref name="path"/>.
  2629. This parameter can contain a combination of valid literal path and wildcard
  2630. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2631. </param>
  2632. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2633. </member>
  2634. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosTransacted``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2635. <summary>[AlphaFS] Returns an enumerable collection of file system entries that match a <paramref name="searchPattern"/> in a specified path using <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/>.</summary>
  2636. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2637. <exception cref="T:System.ArgumentException"/>
  2638. <exception cref="T:System.ArgumentNullException"/>
  2639. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2640. <exception cref="T:System.IO.IOException"/>
  2641. <exception cref="T:System.NotSupportedException"/>
  2642. <exception cref="T:System.UnauthorizedAccessException"/>
  2643. <typeparam name="T">The type to return. This may be one of the following types:
  2644. <list type="definition">
  2645. <item>
  2646. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2647. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2648. </item>
  2649. <item>
  2650. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2651. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2652. </item>
  2653. <item>
  2654. <term><see cref="T:System.String"/></term>
  2655. <description>This method will return the full path of each item.</description>
  2656. </item>
  2657. </list>
  2658. </typeparam>
  2659. <param name="transaction">The transaction.</param>
  2660. <param name="path">The directory to search.</param>
  2661. <param name="searchPattern">
  2662. The search string to match against the names of directories in <paramref name="path"/>.
  2663. This parameter can contain a combination of valid literal path and wildcard
  2664. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2665. </param>
  2666. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2667. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2668. </member>
  2669. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntryInfosCore``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2670. <summary>Returns an enumerable collection of file system entries in a specified path using <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/>.</summary>
  2671. <returns>The matching file system entries. The type of the items is determined by the type <typeparamref name="T"/>.</returns>
  2672. <exception cref="T:System.ArgumentException"/>
  2673. <exception cref="T:System.ArgumentNullException"/>
  2674. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2675. <exception cref="T:System.IO.IOException"/>
  2676. <exception cref="T:System.NotSupportedException"/>
  2677. <exception cref="T:System.UnauthorizedAccessException"/>
  2678. <typeparam name="T">The type to return. This may be one of the following types:
  2679. <list type="definition">
  2680. <item>
  2681. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/></term>
  2682. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instances.</description>
  2683. </item>
  2684. <item>
  2685. <term><see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/></term>
  2686. <description>This method will return instances of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instances.</description>
  2687. </item>
  2688. <item>
  2689. <term><see cref="T:System.String"/></term>
  2690. <description>This method will return the full path of each item.</description>
  2691. </item>
  2692. </list>
  2693. </typeparam>
  2694. <param name="transaction">The transaction.</param>
  2695. <param name="path">The directory to search.</param>
  2696. <param name="searchPattern">
  2697. The search string to match against the names of directories in <paramref name="path"/>.
  2698. This parameter can contain a combination of valid literal path and wildcard
  2699. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2700. </param>
  2701. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2702. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2703. </member>
  2704. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String)">
  2705. <summary>Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2706. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2707. <exception cref="T:System.ArgumentException"/>
  2708. <exception cref="T:System.ArgumentNullException"/>
  2709. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2710. <exception cref="T:System.IO.IOException"/>
  2711. <exception cref="T:System.NotSupportedException"/>
  2712. <exception cref="T:System.UnauthorizedAccessException"/>
  2713. <param name="path">The directory to search.</param>
  2714. </member>
  2715. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String)">
  2716. <summary>Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2717. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2718. <exception cref="T:System.ArgumentException"/>
  2719. <exception cref="T:System.ArgumentNullException"/>
  2720. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2721. <exception cref="T:System.IO.IOException"/>
  2722. <exception cref="T:System.NotSupportedException"/>
  2723. <exception cref="T:System.UnauthorizedAccessException"/>
  2724. <param name="path">The directory to search.</param>
  2725. <param name="searchPattern">
  2726. The search string to match against the names of directories in <paramref name="path"/>.
  2727. This parameter can contain a combination of valid literal path and wildcard
  2728. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2729. </param>
  2730. </member>
  2731. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
  2732. <summary>Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2733. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2734. <exception cref="T:System.ArgumentException"/>
  2735. <exception cref="T:System.ArgumentNullException"/>
  2736. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2737. <exception cref="T:System.IO.IOException"/>
  2738. <exception cref="T:System.NotSupportedException"/>
  2739. <exception cref="T:System.UnauthorizedAccessException"/>
  2740. <param name="path">The directory to search.</param>
  2741. <param name="searchPattern">
  2742. The search string to match against the names of directories in <paramref name="path"/>.
  2743. This parameter can contain a combination of valid literal path and wildcard
  2744. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2745. </param>
  2746. <param name="searchOption">
  2747. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2748. should include only the current directory or should include all subdirectories.
  2749. </param>
  2750. </member>
  2751. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2752. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2753. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2754. <exception cref="T:System.ArgumentException"/>
  2755. <exception cref="T:System.ArgumentNullException"/>
  2756. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2757. <exception cref="T:System.IO.IOException"/>
  2758. <exception cref="T:System.NotSupportedException"/>
  2759. <exception cref="T:System.UnauthorizedAccessException"/>
  2760. <param name="path">The directory to search.</param>
  2761. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2762. </member>
  2763. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2764. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2765. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2766. <exception cref="T:System.ArgumentException"/>
  2767. <exception cref="T:System.ArgumentNullException"/>
  2768. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2769. <exception cref="T:System.IO.IOException"/>
  2770. <exception cref="T:System.NotSupportedException"/>
  2771. <exception cref="T:System.UnauthorizedAccessException"/>
  2772. <param name="path">The directory to search.</param>
  2773. <param name="searchPattern">
  2774. The search string to match against the names of directories in <paramref name="path"/>.
  2775. This parameter can contain a combination of valid literal path and wildcard
  2776. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2777. </param>
  2778. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2779. </member>
  2780. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  2781. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2782. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2783. <exception cref="T:System.ArgumentException"/>
  2784. <exception cref="T:System.ArgumentNullException"/>
  2785. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2786. <exception cref="T:System.IO.IOException"/>
  2787. <exception cref="T:System.NotSupportedException"/>
  2788. <exception cref="T:System.UnauthorizedAccessException"/>
  2789. <param name="path">The directory to search.</param>
  2790. <param name="searchPattern">
  2791. The search string to match against the names of directories in <paramref name="path"/>.
  2792. This parameter can contain a combination of valid literal path and wildcard
  2793. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2794. </param>
  2795. <param name="searchOption">
  2796. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2797. should include only the current directory or should include all subdirectories.
  2798. </param>
  2799. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2800. </member>
  2801. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2802. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2803. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2804. <exception cref="T:System.ArgumentException"/>
  2805. <exception cref="T:System.ArgumentNullException"/>
  2806. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2807. <exception cref="T:System.IO.IOException"/>
  2808. <exception cref="T:System.NotSupportedException"/>
  2809. <exception cref="T:System.UnauthorizedAccessException"/>
  2810. <param name="path">The directory to search.</param>
  2811. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2812. </member>
  2813. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2814. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2815. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2816. <exception cref="T:System.ArgumentException"/>
  2817. <exception cref="T:System.ArgumentNullException"/>
  2818. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2819. <exception cref="T:System.IO.IOException"/>
  2820. <exception cref="T:System.NotSupportedException"/>
  2821. <exception cref="T:System.UnauthorizedAccessException"/>
  2822. <param name="path">The directory to search.</param>
  2823. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2824. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2825. </member>
  2826. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2827. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2828. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2829. <exception cref="T:System.ArgumentException"/>
  2830. <exception cref="T:System.ArgumentNullException"/>
  2831. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2832. <exception cref="T:System.IO.IOException"/>
  2833. <exception cref="T:System.NotSupportedException"/>
  2834. <exception cref="T:System.UnauthorizedAccessException"/>
  2835. <param name="path">The directory to search.</param>
  2836. <param name="searchPattern">
  2837. The search string to match against the names of directories in <paramref name="path"/>.
  2838. This parameter can contain a combination of valid literal path and wildcard
  2839. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2840. </param>
  2841. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2842. </member>
  2843. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntries(System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2844. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2845. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2846. <exception cref="T:System.ArgumentException"/>
  2847. <exception cref="T:System.ArgumentNullException"/>
  2848. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2849. <exception cref="T:System.IO.IOException"/>
  2850. <exception cref="T:System.NotSupportedException"/>
  2851. <exception cref="T:System.UnauthorizedAccessException"/>
  2852. <param name="path">The directory to search.</param>
  2853. <param name="searchPattern">
  2854. The search string to match against the names of directories in <paramref name="path"/>.
  2855. This parameter can contain a combination of valid literal path and wildcard
  2856. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2857. </param>
  2858. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2859. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2860. </member>
  2861. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  2862. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2863. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2864. <exception cref="T:System.ArgumentException"/>
  2865. <exception cref="T:System.ArgumentNullException"/>
  2866. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2867. <exception cref="T:System.IO.IOException"/>
  2868. <exception cref="T:System.NotSupportedException"/>
  2869. <exception cref="T:System.UnauthorizedAccessException"/>
  2870. <param name="transaction">The transaction.</param>
  2871. <param name="path">The directory to search.</param>
  2872. </member>
  2873. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  2874. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2875. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2876. <exception cref="T:System.ArgumentException"/>
  2877. <exception cref="T:System.ArgumentNullException"/>
  2878. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2879. <exception cref="T:System.IO.IOException"/>
  2880. <exception cref="T:System.NotSupportedException"/>
  2881. <exception cref="T:System.UnauthorizedAccessException"/>
  2882. <param name="transaction">The transaction.</param>
  2883. <param name="path">The directory to search.</param>
  2884. <param name="searchPattern">
  2885. The search string to match against the names of directories in <paramref name="path"/>.
  2886. This parameter can contain a combination of valid literal path and wildcard
  2887. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2888. </param>
  2889. </member>
  2890. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  2891. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2892. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2893. <exception cref="T:System.ArgumentException"/>
  2894. <exception cref="T:System.ArgumentNullException"/>
  2895. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2896. <exception cref="T:System.IO.IOException"/>
  2897. <exception cref="T:System.NotSupportedException"/>
  2898. <exception cref="T:System.UnauthorizedAccessException"/>
  2899. <param name="transaction">The transaction.</param>
  2900. <param name="path">The directory to search.</param>
  2901. <param name="searchPattern">
  2902. The search string to match against the names of directories in <paramref name="path"/>.
  2903. This parameter can contain a combination of valid literal path and wildcard
  2904. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2905. </param>
  2906. <param name="searchOption">
  2907. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2908. should include only the current directory or should include all subdirectories.
  2909. </param>
  2910. </member>
  2911. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2912. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2913. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2914. <exception cref="T:System.ArgumentException"/>
  2915. <exception cref="T:System.ArgumentNullException"/>
  2916. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2917. <exception cref="T:System.IO.IOException"/>
  2918. <exception cref="T:System.NotSupportedException"/>
  2919. <exception cref="T:System.UnauthorizedAccessException"/>
  2920. <param name="transaction">The transaction.</param>
  2921. <param name="path">The directory to search.</param>
  2922. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2923. </member>
  2924. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  2925. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2926. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2927. <exception cref="T:System.ArgumentException"/>
  2928. <exception cref="T:System.ArgumentNullException"/>
  2929. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2930. <exception cref="T:System.IO.IOException"/>
  2931. <exception cref="T:System.NotSupportedException"/>
  2932. <exception cref="T:System.UnauthorizedAccessException"/>
  2933. <param name="transaction">The transaction.</param>
  2934. <param name="path">The directory to search.</param>
  2935. <param name="searchPattern">
  2936. The search string to match against the names of directories in <paramref name="path"/>.
  2937. This parameter can contain a combination of valid literal path and wildcard
  2938. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2939. </param>
  2940. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2941. </member>
  2942. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption,Alphaleonis.Win32.Filesystem.PathFormat)">
  2943. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>, and optionally searches subdirectories.</summary>
  2944. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  2945. <exception cref="T:System.ArgumentException"/>
  2946. <exception cref="T:System.ArgumentNullException"/>
  2947. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2948. <exception cref="T:System.IO.IOException"/>
  2949. <exception cref="T:System.NotSupportedException"/>
  2950. <exception cref="T:System.UnauthorizedAccessException"/>
  2951. <param name="transaction">The transaction.</param>
  2952. <param name="path">The directory to search.</param>
  2953. <param name="searchPattern">
  2954. The search string to match against the names of directories in <paramref name="path"/>.
  2955. This parameter can contain a combination of valid literal path and wildcard
  2956. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  2957. </param>
  2958. <param name="searchOption">
  2959. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  2960. should include only the current directory or should include all subdirectories.
  2961. </param>
  2962. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2963. </member>
  2964. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2965. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2966. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2967. <exception cref="T:System.ArgumentException"/>
  2968. <exception cref="T:System.ArgumentNullException"/>
  2969. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2970. <exception cref="T:System.IO.IOException"/>
  2971. <exception cref="T:System.NotSupportedException"/>
  2972. <exception cref="T:System.UnauthorizedAccessException"/>
  2973. <param name="transaction">The transaction.</param>
  2974. <param name="path">The directory to search.</param>
  2975. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2976. </member>
  2977. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  2978. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names in a specified <paramref name="path"/>.</summary>
  2979. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/>.</returns>
  2980. <exception cref="T:System.ArgumentException"/>
  2981. <exception cref="T:System.ArgumentNullException"/>
  2982. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2983. <exception cref="T:System.IO.IOException"/>
  2984. <exception cref="T:System.NotSupportedException"/>
  2985. <exception cref="T:System.UnauthorizedAccessException"/>
  2986. <param name="transaction">The transaction.</param>
  2987. <param name="path">The directory to search.</param>
  2988. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  2989. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  2990. </member>
  2991. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  2992. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  2993. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  2994. <exception cref="T:System.ArgumentException"/>
  2995. <exception cref="T:System.ArgumentNullException"/>
  2996. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  2997. <exception cref="T:System.IO.IOException"/>
  2998. <exception cref="T:System.NotSupportedException"/>
  2999. <exception cref="T:System.UnauthorizedAccessException"/>
  3000. <param name="transaction">The transaction.</param>
  3001. <param name="path">The directory to search.</param>
  3002. <param name="searchPattern">
  3003. The search string to match against the names of directories in <paramref name="path"/>.
  3004. This parameter can contain a combination of valid literal path and wildcard
  3005. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3006. </param>
  3007. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  3008. </member>
  3009. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  3010. <summary>[AlphaFS] Returns an enumerable collection of file names and directory names that match a <paramref name="searchPattern"/> in a specified <paramref name="path"/>.</summary>
  3011. <returns>An enumerable collection of file system entries in the directory specified by <paramref name="path"/> and that match the specified <paramref name="searchPattern"/>.</returns>
  3012. <exception cref="T:System.ArgumentException"/>
  3013. <exception cref="T:System.ArgumentNullException"/>
  3014. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3015. <exception cref="T:System.IO.IOException"/>
  3016. <exception cref="T:System.NotSupportedException"/>
  3017. <exception cref="T:System.UnauthorizedAccessException"/>
  3018. <param name="transaction">The transaction.</param>
  3019. <param name="path">The directory to search.</param>
  3020. <param name="searchPattern">
  3021. The search string to match against the names of directories in <paramref name="path"/>.
  3022. This parameter can contain a combination of valid literal path and wildcard
  3023. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3024. </param>
  3025. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  3026. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3027. </member>
  3028. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Exists(System.String)">
  3029. <summary>Determines whether the given path refers to an existing directory on disk.</summary>
  3030. <returns>
  3031. <para>Returns <see langword="true"/> if <paramref name="path"/> refers to an existing directory.</para>
  3032. <para>Returns <see langword="false"/> if the directory does not exist or an error occurs when trying to determine if the specified file exists.</para>
  3033. </returns>
  3034. <remarks>
  3035. The Exists method returns <see langword="false"/> if any error occurs while trying to determine if the specified file exists.
  3036. This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,
  3037. a failing or missing disk, or if the caller does not have permission to read the file.
  3038. </remarks>
  3039. <param name="path">The path to test.</param>
  3040. </member>
  3041. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Exists(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3042. <summary>[AlphaFS] Determines whether the given path refers to an existing directory on disk.</summary>
  3043. <returns>
  3044. <para>Returns <see langword="true"/> if <paramref name="path"/> refers to an existing directory.</para>
  3045. <para>Returns <see langword="false"/> if the directory does not exist or an error occurs when trying to determine if the specified file exists.</para>
  3046. </returns>
  3047. <remarks>
  3048. The Exists method returns <see langword="false"/> if any error occurs while trying to determine if the specified file exists.
  3049. This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,
  3050. a failing or missing disk, or if the caller does not have permission to read the file.
  3051. </remarks>
  3052. <param name="path">The path to test.</param>
  3053. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3054. </member>
  3055. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ExistsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3056. <summary>[AlphaFS] Determines whether the given path refers to an existing directory on disk.</summary>
  3057. <returns>
  3058. <para>Returns <see langword="true"/> if <paramref name="path"/> refers to an existing directory.</para>
  3059. <para>Returns <see langword="false"/> if the directory does not exist or an error occurs when trying to determine if the specified file exists.</para>
  3060. </returns>
  3061. <remarks>
  3062. The Exists method returns <see langword="false"/> if any error occurs while trying to determine if the specified file exists.
  3063. This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,
  3064. a failing or missing disk, or if the caller does not have permission to read the file.
  3065. </remarks>
  3066. <param name="transaction">The transaction.</param>
  3067. <param name="path">The path to test.</param>
  3068. </member>
  3069. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ExistsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3070. <summary>[AlphaFS] Determines whether the given path refers to an existing directory on disk.</summary>
  3071. <returns>
  3072. <para>Returns <see langword="true"/> if <paramref name="path"/> refers to an existing directory.</para>
  3073. <para>Returns <see langword="false"/> if the directory does not exist or an error occurs when trying to determine if the specified file exists.</para>
  3074. </returns>
  3075. <remarks>
  3076. The Exists method returns <see langword="false"/> if any error occurs while trying to determine if the specified file exists.
  3077. This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,
  3078. a failing or missing disk, or if the caller does not have permission to read the file.
  3079. </remarks>
  3080. <param name="transaction">The transaction.</param>
  3081. <param name="path">The path to test.</param>
  3082. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3083. </member>
  3084. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectories(System.String)">
  3085. <summary>Returns the names of subdirectories (including their paths) in the specified directory.</summary>
  3086. <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>
  3087. <remarks>
  3088. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3089. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3090. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3091. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3092. </para>
  3093. </remarks>
  3094. <exception cref="T:System.ArgumentException"/>
  3095. <exception cref="T:System.ArgumentNullException"/>
  3096. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3097. <exception cref="T:System.IO.IOException"/>
  3098. <exception cref="T:System.NotSupportedException"/>
  3099. <exception cref="T:System.UnauthorizedAccessException"/>
  3100. <param name="path">The directory to search.</param>
  3101. </member>
  3102. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectories(System.String,System.String)">
  3103. <summary>Returns the names of subdirectories (including their paths) that match the specified search pattern in the specified directory.</summary>
  3104. <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>
  3105. <remarks>
  3106. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3107. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3108. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3109. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3110. </para>
  3111. </remarks>
  3112. <exception cref="T:System.ArgumentException"/>
  3113. <exception cref="T:System.ArgumentNullException"/>
  3114. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3115. <exception cref="T:System.IO.IOException"/>
  3116. <exception cref="T:System.NotSupportedException"/>
  3117. <exception cref="T:System.UnauthorizedAccessException"/>
  3118. <param name="path">The directory to search.</param>
  3119. <param name="searchPattern">
  3120. The search string to match against the names of directories in <paramref name="path"/>.
  3121. This parameter can contain a combination of valid literal path and wildcard
  3122. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3123. </param>
  3124. </member>
  3125. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectories(System.String,System.String,System.IO.SearchOption)">
  3126. <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>
  3127. <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>
  3128. <remarks>
  3129. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3130. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3131. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3132. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3133. </para>
  3134. </remarks>
  3135. <exception cref="T:System.ArgumentException"/>
  3136. <exception cref="T:System.ArgumentNullException"/>
  3137. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3138. <exception cref="T:System.IO.IOException"/>
  3139. <exception cref="T:System.NotSupportedException"/>
  3140. <exception cref="T:System.UnauthorizedAccessException"/>
  3141. <param name="path">The directory to search.</param>
  3142. <param name="searchPattern">
  3143. The search string to match against the names of directories in <paramref name="path"/>.
  3144. This parameter can contain a combination of valid literal path and wildcard
  3145. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3146. </param>
  3147. <param name="searchOption">
  3148. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3149. should include only the current directory or should include all subdirectories.
  3150. </param>
  3151. </member>
  3152. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3153. <summary>Returns the names of subdirectories (including their paths) in the specified directory.</summary>
  3154. <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>
  3155. <remarks>
  3156. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3157. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3158. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3159. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3160. </para>
  3161. </remarks>
  3162. <exception cref="T:System.ArgumentException"/>
  3163. <exception cref="T:System.ArgumentNullException"/>
  3164. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3165. <exception cref="T:System.IO.IOException"/>
  3166. <exception cref="T:System.NotSupportedException"/>
  3167. <exception cref="T:System.UnauthorizedAccessException"/>
  3168. <param name="transaction">The transaction.</param>
  3169. <param name="path">The directory to search.</param>
  3170. </member>
  3171. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  3172. <summary>Returns the names of subdirectories (including their paths) that match the specified search pattern in the specified directory.</summary>
  3173. <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>
  3174. <remarks>
  3175. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3176. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3177. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3178. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3179. </para>
  3180. </remarks>
  3181. <exception cref="T:System.ArgumentException"/>
  3182. <exception cref="T:System.ArgumentNullException"/>
  3183. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3184. <exception cref="T:System.IO.IOException"/>
  3185. <exception cref="T:System.NotSupportedException"/>
  3186. <exception cref="T:System.UnauthorizedAccessException"/>
  3187. <param name="transaction">The transaction.</param>
  3188. <param name="path">The directory to search.</param>
  3189. <param name="searchPattern">
  3190. The search string to match against the names of directories in <paramref name="path"/>.
  3191. This parameter can contain a combination of valid literal path and wildcard
  3192. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3193. </param>
  3194. </member>
  3195. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  3196. <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>
  3197. <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>
  3198. <remarks>
  3199. <para>The names returned by this method are prefixed with the directory information provided in path.</para>
  3200. <para>The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  3201. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  3202. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  3203. </para>
  3204. </remarks>
  3205. <exception cref="T:System.ArgumentException"/>
  3206. <exception cref="T:System.ArgumentNullException"/>
  3207. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3208. <exception cref="T:System.IO.IOException"/>
  3209. <exception cref="T:System.NotSupportedException"/>
  3210. <exception cref="T:System.UnauthorizedAccessException"/>
  3211. <param name="transaction">The transaction.</param>
  3212. <param name="path">The directory to search.</param>
  3213. <param name="searchPattern">
  3214. The search string to match against the names of directories in <paramref name="path"/>.
  3215. This parameter can contain a combination of valid literal path and wildcard
  3216. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3217. </param>
  3218. <param name="searchOption">
  3219. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3220. should include only the current directory or should include all subdirectories.
  3221. </param>
  3222. </member>
  3223. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFiles(System.String)">
  3224. <summary>Returns the names of files (including their paths) in the specified directory.</summary>
  3225. <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>
  3226. <remarks>
  3227. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3228. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3229. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3230. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3231. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3232. </para>
  3233. </remarks>
  3234. <exception cref="T:System.ArgumentException"/>
  3235. <exception cref="T:System.ArgumentNullException"/>
  3236. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3237. <exception cref="T:System.IO.IOException"/>
  3238. <exception cref="T:System.NotSupportedException"/>
  3239. <exception cref="T:System.UnauthorizedAccessException"/>
  3240. <param name="path">The directory to search.</param>
  3241. </member>
  3242. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFiles(System.String,System.String)">
  3243. <summary>Returns the names of files (including their paths) that match the specified search pattern in the specified directory.</summary>
  3244. <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>
  3245. <remarks>
  3246. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3247. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3248. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3249. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3250. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3251. </para>
  3252. </remarks>
  3253. <exception cref="T:System.ArgumentException"/>
  3254. <exception cref="T:System.ArgumentNullException"/>
  3255. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3256. <exception cref="T:System.IO.IOException"/>
  3257. <exception cref="T:System.NotSupportedException"/>
  3258. <exception cref="T:System.UnauthorizedAccessException"/>
  3259. <param name="path">The directory to search.</param>
  3260. <param name="searchPattern">
  3261. The search string to match against the names of directories in <paramref name="path"/>.
  3262. This parameter can contain a combination of valid literal path and wildcard
  3263. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3264. </param>
  3265. </member>
  3266. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFiles(System.String,System.String,System.IO.SearchOption)">
  3267. <summary>Returns the names of files (including their paths) that match the specified search pattern in the current directory, and optionally searches subdirectories.</summary>
  3268. <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>
  3269. <remarks>
  3270. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3271. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3272. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3273. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3274. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3275. </para>
  3276. </remarks>
  3277. <exception cref="T:System.ArgumentException"/>
  3278. <exception cref="T:System.ArgumentNullException"/>
  3279. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3280. <exception cref="T:System.IO.IOException"/>
  3281. <exception cref="T:System.NotSupportedException"/>
  3282. <exception cref="T:System.UnauthorizedAccessException"/>
  3283. <param name="path">The directory to search.</param>
  3284. <param name="searchPattern">
  3285. The search string to match against the names of directories in <paramref name="path"/>.
  3286. This parameter can contain a combination of valid literal path and wildcard
  3287. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3288. </param>
  3289. <param name="searchOption">
  3290. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3291. should include only the current directory or should include all subdirectories.
  3292. </param>
  3293. </member>
  3294. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3295. <summary>Returns the names of files (including their paths) in the specified directory.</summary>
  3296. <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>
  3297. <remarks>
  3298. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3299. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3300. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3301. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3302. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3303. </para>
  3304. </remarks>
  3305. <exception cref="T:System.ArgumentException"/>
  3306. <exception cref="T:System.ArgumentNullException"/>
  3307. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3308. <exception cref="T:System.IO.IOException"/>
  3309. <exception cref="T:System.NotSupportedException"/>
  3310. <exception cref="T:System.UnauthorizedAccessException"/>
  3311. <param name="transaction">The transaction.</param>
  3312. <param name="path">The directory to search.</param>
  3313. </member>
  3314. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  3315. <summary>Returns the names of files (including their paths) that match the specified search pattern in the specified directory.</summary>
  3316. <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>
  3317. <remarks>
  3318. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3319. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3320. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3321. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3322. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3323. </para>
  3324. </remarks>
  3325. <exception cref="T:System.ArgumentException"/>
  3326. <exception cref="T:System.ArgumentNullException"/>
  3327. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3328. <exception cref="T:System.IO.IOException"/>
  3329. <exception cref="T:System.NotSupportedException"/>
  3330. <exception cref="T:System.UnauthorizedAccessException"/>
  3331. <param name="transaction">The transaction.</param>
  3332. <param name="path">The directory to search.</param>
  3333. <param name="searchPattern">
  3334. The search string to match against the names of directories in <paramref name="path"/>.
  3335. This parameter can contain a combination of valid literal path and wildcard
  3336. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3337. </param>
  3338. </member>
  3339. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFilesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  3340. <summary>Returns the names of files (including their paths) that match the specified search pattern in the current directory, and optionally searches subdirectories.</summary>
  3341. <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>
  3342. <remarks>
  3343. <para>The returned file names are appended to the supplied <paramref name="path"/> parameter.</para>
  3344. <para>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</para>
  3345. <para>The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  3346. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  3347. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3348. </para>
  3349. </remarks>
  3350. <exception cref="T:System.ArgumentException"/>
  3351. <exception cref="T:System.ArgumentNullException"/>
  3352. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3353. <exception cref="T:System.IO.IOException"/>
  3354. <exception cref="T:System.NotSupportedException"/>
  3355. <exception cref="T:System.UnauthorizedAccessException"/>
  3356. <param name="transaction">The transaction.</param>
  3357. <param name="path">The directory to search.</param>
  3358. <param name="searchPattern">
  3359. The search string to match against the names of directories in <paramref name="path"/>.
  3360. This parameter can contain a combination of valid literal path and wildcard
  3361. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3362. </param>
  3363. <param name="searchOption">
  3364. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3365. should include only the current directory or should include all subdirectories.
  3366. </param>
  3367. </member>
  3368. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTime(System.String)">
  3369. <summary>Gets the creation date and time of the specified directory.</summary>
  3370. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in local time.</returns>
  3371. <param name="path">The directory for which to obtain creation date and time information.</param>
  3372. </member>
  3373. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeUtc(System.String)">
  3374. <summary>Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3375. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in UTC time.</returns>
  3376. <param name="path">The directory for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.</param>
  3377. </member>
  3378. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3379. <summary>[AlphaFS] Gets the creation date and time of the specified directory.</summary>
  3380. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in local time.</returns>
  3381. <param name="path">The directory for which to obtain creation date and time information.</param>
  3382. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3383. </member>
  3384. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3385. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3386. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in UTC time.</returns>
  3387. <param name="path">The directory for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.</param>
  3388. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3389. </member>
  3390. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3391. <summary>[AlphaFS] Gets the creation date and time of the specified directory.</summary>
  3392. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in local time.</returns>
  3393. <param name="transaction">The transaction.</param>
  3394. <param name="path">The directory for which to obtain creation date and time information.</param>
  3395. </member>
  3396. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3397. <summary>[AlphaFS] Gets the creation date and time of the specified directory.</summary>
  3398. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in local time.</returns>
  3399. <param name="transaction">The transaction.</param>
  3400. <param name="path">The directory for which to obtain creation date and time information.</param>
  3401. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3402. </member>
  3403. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3404. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3405. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in UTC time.</returns>
  3406. <param name="transaction">The transaction.</param>
  3407. <param name="path">The directory for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.</param>
  3408. </member>
  3409. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3410. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3411. <returns>A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified directory. This value is expressed in UTC time.</returns>
  3412. <param name="transaction">The transaction.</param>
  3413. <param name="path">The directory for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.</param>
  3414. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3415. </member>
  3416. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTime(System.String)">
  3417. <summary>Gets the date and time that the specified directory was last accessed.</summary>
  3418. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in local time.</returns>
  3419. <param name="path">The directory for which to obtain access date and time information.</param>
  3420. </member>
  3421. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeUtc(System.String)">
  3422. <summary>Gets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  3423. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in UTC time.</returns>
  3424. <param name="path">The directory for which to obtain access date and time information.</param>
  3425. </member>
  3426. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3427. <summary>[AlphaFS] Gets the date and time that the specified directory was last accessed.</summary>
  3428. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in local time.</returns>
  3429. <param name="path">The directory for which to obtain access date and time information.</param>
  3430. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3431. </member>
  3432. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3433. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  3434. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in UTC time.</returns>
  3435. <param name="path">The directory for which to obtain access date and time information.</param>
  3436. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3437. </member>
  3438. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3439. <summary>[AlphaFS] Gets the date and time that the specified directory was last accessed.</summary>
  3440. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in local time.</returns>
  3441. <param name="transaction">The transaction.</param>
  3442. <param name="path">The directory for which to obtain access date and time information.</param>
  3443. </member>
  3444. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3445. <summary>[AlphaFS] Gets the date and time that the specified directory was last accessed.</summary>
  3446. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in local time.</returns>
  3447. <param name="transaction">The transaction.</param>
  3448. <param name="path">The directory for which to obtain access date and time information.</param>
  3449. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3450. </member>
  3451. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3452. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  3453. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in UTC time.</returns>
  3454. <param name="transaction">The transaction.</param>
  3455. <param name="path">The directory for which to obtain access date and time information.</param>
  3456. </member>
  3457. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3458. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  3459. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last accessed. This value is expressed in UTC time.</returns>
  3460. <param name="transaction">The transaction.</param>
  3461. <param name="path">The directory for which to obtain access date and time information.</param>
  3462. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3463. </member>
  3464. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTime(System.String)">
  3465. <summary>Gets the date and time that the specified directory was last written to.</summary>
  3466. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in local time.</returns>
  3467. <param name="path">The directory for which to obtain write date and time information.</param>
  3468. </member>
  3469. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeUtc(System.String)">
  3470. <summary>Gets the date and time, in coordinated universal time (UTC) time, that the specified directory was last written to.</summary>
  3471. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in UTC time.</returns>
  3472. <param name="path">The directory for which to obtain write date and time information.</param>
  3473. </member>
  3474. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3475. <summary>[AlphaFS] Gets the date and time that the specified directory was last written to.</summary>
  3476. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in local time.</returns>
  3477. <param name="path">The directory for which to obtain write date and time information.</param>
  3478. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3479. </member>
  3480. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3481. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified directory was last written to.</summary>
  3482. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in UTC time.</returns>
  3483. <param name="path">The directory for which to obtain write date and time information.</param>
  3484. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3485. </member>
  3486. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3487. <summary>[AlphaFS] Gets the date and time that the specified directory was last written to.</summary>
  3488. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in local time.</returns>
  3489. <param name="transaction">The transaction.</param>
  3490. <param name="path">The directory for which to obtain write date and time information.</param>
  3491. </member>
  3492. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3493. <summary>[AlphaFS] Gets the date and time that the specified directory was last written to.</summary>
  3494. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in local time.</returns>
  3495. <param name="transaction">The transaction.</param>
  3496. <param name="path">The directory for which to obtain write date and time information.</param>
  3497. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3498. </member>
  3499. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3500. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified directory was last written to.</summary>
  3501. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in UTC time.</returns>
  3502. <param name="transaction">The transaction.</param>
  3503. <param name="path">The directory for which to obtain write date and time information.</param>
  3504. </member>
  3505. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3506. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified directory was last written to.</summary>
  3507. <returns>A <see cref="T:System.DateTime"/> structure set to the date and time that the specified directory was last written to. This value is expressed in UTC time.</returns>
  3508. <param name="transaction">The transaction.</param>
  3509. <param name="path">The directory for which to obtain write date and time information.</param>
  3510. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3511. </member>
  3512. <member name="M:Alphaleonis.Win32.Filesystem.Directory.HasInheritedPermissions(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3513. <summary>[AlphaFS] Check if the directory has permission inheritance enabled.</summary>
  3514. <returns><see langword="true"/> if permission inheritance is enabled, <see langword="false"/> if permission inheritance is disabled.</returns>
  3515. <param name="path">The full path to the directory to check.</param>
  3516. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3517. </member>
  3518. <member name="M:Alphaleonis.Win32.Filesystem.Directory.HasInheritedPermissions(System.String)">
  3519. <summary>[AlphaFS] Check if the directory has permission inheritance enabled.</summary>
  3520. <param name="path">The full path to the directory to check.</param>
  3521. <returns><see langword="true"/> if permission inheritance is enabled, <see langword="false"/> if permission inheritance is disabled.</returns>
  3522. </member>
  3523. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(System.String)">
  3524. <summary>Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control list (ACL) entries for the specified directory.</summary>
  3525. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  3526. <exception cref="T:System.IO.IOException"/>
  3527. <exception cref="T:System.ArgumentException"/>
  3528. <exception cref="T:System.ArgumentNullException"/>
  3529. <param name="path">The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the file's access control list (ACL) information.</param>
  3530. </member>
  3531. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections)">
  3532. <summary>Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the specified type of access control list (ACL) entries for a particular directory.</summary>
  3533. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the directory described by the <paramref name="path"/> parameter. </returns>
  3534. <exception cref="T:System.IO.IOException"/>
  3535. <exception cref="T:System.ArgumentException"/>
  3536. <exception cref="T:System.ArgumentNullException"/>
  3537. <param name="path">The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the directory's access control list (ACL) information.</param>
  3538. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  3539. </member>
  3540. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3541. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control list (ACL) entries for the specified directory.</summary>
  3542. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  3543. <exception cref="T:System.IO.IOException"/>
  3544. <exception cref="T:System.ArgumentException"/>
  3545. <exception cref="T:System.ArgumentNullException"/>
  3546. <param name="path">The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the file's access control list (ACL) information.</param>
  3547. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3548. </member>
  3549. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  3550. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the specified type of access control list (ACL) entries for a particular directory.</summary>
  3551. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the directory described by the <paramref name="path"/> parameter. </returns>
  3552. <exception cref="T:System.IO.IOException"/>
  3553. <exception cref="T:System.ArgumentException"/>
  3554. <exception cref="T:System.ArgumentNullException"/>
  3555. <param name="path">The path to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the directory's access control list (ACL) information.</param>
  3556. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  3557. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3558. </member>
  3559. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  3560. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control list (ACL) entries for the specified directory handle.</summary>
  3561. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="handle"/> parameter.</returns>
  3562. <exception cref="T:System.IO.IOException"/>
  3563. <exception cref="T:System.ArgumentException"/>
  3564. <exception cref="T:System.ArgumentNullException"/>
  3565. <param name="handle">A <see cref="T:System.Runtime.InteropServices.SafeHandle"/> to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the directory's access control list (ACL) information.</param>
  3566. </member>
  3567. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.AccessControlSections)">
  3568. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the specified type of access control list (ACL) entries for a particular directory handle.</summary>
  3569. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the directory described by the <paramref name="handle"/> parameter. </returns>
  3570. <exception cref="T:System.IO.IOException"/>
  3571. <exception cref="T:System.ArgumentException"/>
  3572. <exception cref="T:System.ArgumentNullException"/>
  3573. <param name="handle">A <see cref="T:System.Runtime.InteropServices.SafeHandle"/> to a directory containing a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the directory's access control list (ACL) information.</param>
  3574. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  3575. </member>
  3576. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTime(System.String)">
  3577. <summary>[AlphaFS] Gets the change date and time of the specified directory.</summary>
  3578. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in local time.</returns>
  3579. <param name="path">The directory for which to obtain creation date and time information.</param>
  3580. </member>
  3581. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3582. <summary>[AlphaFS] Gets the change date and time of the specified directory.</summary>
  3583. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in local time.</returns>
  3584. <param name="path">The directory for which to obtain creation date and time information.</param>
  3585. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3586. </member>
  3587. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeUtc(System.String)">
  3588. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3589. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in UTC time.</returns>
  3590. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  3591. </member>
  3592. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3593. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3594. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in UTC time.</returns>
  3595. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  3596. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3597. </member>
  3598. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTime(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  3599. <summary>[AlphaFS] Gets the change date and time of the specified directory.</summary>
  3600. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in local time.</returns>
  3601. <param name="safeHandle">An open handle to the directory from which to retrieve information.</param>
  3602. </member>
  3603. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeUtc(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  3604. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3605. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in UTC time.</returns>
  3606. <param name="safeHandle">An open handle to the directory from which to retrieve information.</param>
  3607. </member>
  3608. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3609. <summary>[AlphaFS] Gets the change date and time of the specified directory.</summary>
  3610. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in local time.</returns>
  3611. <param name="transaction">The transaction.</param>
  3612. <param name="path">The directory for which to obtain creation date and time information.</param>
  3613. </member>
  3614. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3615. <summary>[AlphaFS] Gets the change date and time of the specified directory.</summary>
  3616. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in local time.</returns>
  3617. <param name="transaction">The transaction.</param>
  3618. <param name="path">The directory for which to obtain creation date and time information.</param>
  3619. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3620. </member>
  3621. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3622. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3623. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in UTC time.</returns>
  3624. <param name="transaction">The transaction.</param>
  3625. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  3626. </member>
  3627. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetChangeTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3628. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified directory.</summary>
  3629. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified directory. This value is expressed in UTC time.</returns>
  3630. <param name="transaction">The transaction.</param>
  3631. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  3632. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3633. </member>
  3634. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetCurrentDirectory">
  3635. <summary>
  3636. Gets the current working directory of the application.
  3637. <para>
  3638. MSDN: Multithreaded applications and shared library code should not use the GetCurrentDirectory function and should avoid using relative path names.
  3639. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,
  3640. therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.
  3641. <para>This limitation also applies to the SetCurrentDirectory and GetFullPathName functions. The exception being when the application is guaranteed to be running in a single thread,
  3642. for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  3643. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  3644. </para>
  3645. </summary>
  3646. <returns>The path of the current working directory without a trailing directory separator.</returns>
  3647. </member>
  3648. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCurrentDirectory(System.String)">
  3649. <summary>
  3650. Sets the application's current working directory to the specified directory.
  3651. <para>
  3652. MSDN: Multithreaded applications and shared library code should not use the GetCurrentDirectory function and should avoid using relative path names.
  3653. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,
  3654. therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.
  3655. <para>This limitation also applies to the SetCurrentDirectory and GetFullPathName functions. The exception being when the application is guaranteed to be running in a single thread,
  3656. for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  3657. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  3658. </para>
  3659. </summary>
  3660. <param name="path">The path to which the current working directory is set.</param>
  3661. </member>
  3662. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCurrentDirectory(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3663. <summary>
  3664. Sets the application's current working directory to the specified directory.
  3665. <para>
  3666. MSDN: Multithreaded applications and shared library code should not use the GetCurrentDirectory function and should avoid using relative path names.
  3667. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,
  3668. therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.
  3669. <para>This limitation also applies to the SetCurrentDirectory and GetFullPathName functions. The exception being when the application is guaranteed to be running in a single thread,
  3670. for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  3671. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  3672. </para>
  3673. </summary>
  3674. <param name="path">The path to which the current working directory is set.</param>
  3675. <param name="pathFormat">Indicates the format of the path parameter.</param>
  3676. </member>
  3677. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntries(System.String)">
  3678. <summary>Returns the names of all files and subdirectories in the specified directory.</summary>
  3679. <returns>An string[] array of the names of files and subdirectories in the specified directory.</returns>
  3680. <remarks>
  3681. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3682. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3683. you must wait for the whole array of entries to be returned before you can access the array.
  3684. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3685. </para>
  3686. </remarks>
  3687. <exception cref="T:System.ArgumentException"/>
  3688. <exception cref="T:System.ArgumentNullException"/>
  3689. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3690. <exception cref="T:System.IO.IOException"/>
  3691. <exception cref="T:System.NotSupportedException"/>
  3692. <exception cref="T:System.UnauthorizedAccessException"/>
  3693. <param name="path">The directory for which file and subdirectory names are returned.</param>
  3694. </member>
  3695. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntries(System.String,System.String)">
  3696. <summary>Returns an array of file system entries that match the specified search criteria.</summary>
  3697. <returns>An string[] array of file system entries that match the specified search criteria.</returns>
  3698. <remarks>
  3699. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3700. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3701. you must wait for the whole array of entries to be returned before you can access the array.
  3702. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3703. </para>
  3704. </remarks>
  3705. <exception cref="T:System.ArgumentException"/>
  3706. <exception cref="T:System.ArgumentNullException"/>
  3707. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3708. <exception cref="T:System.IO.IOException"/>
  3709. <exception cref="T:System.NotSupportedException"/>
  3710. <exception cref="T:System.UnauthorizedAccessException"/>
  3711. <param name="path">The path to be searched.</param>
  3712. <param name="searchPattern">
  3713. The search string to match against the names of directories in <paramref name="path"/>.
  3714. This parameter can contain a combination of valid literal path and wildcard
  3715. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3716. </param>
  3717. </member>
  3718. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
  3719. <summary>Gets an array of all the file names and directory names that match a <paramref name="searchPattern"/> in a specified path, and optionally searches subdirectories.</summary>
  3720. <returns>An string[] array of file system entries that match the specified search criteria.</returns>
  3721. <remarks>
  3722. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3723. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3724. you must wait for the whole array of entries to be returned before you can access the array.
  3725. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3726. </para>
  3727. </remarks>
  3728. <exception cref="T:System.ArgumentException"/>
  3729. <exception cref="T:System.ArgumentNullException"/>
  3730. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3731. <exception cref="T:System.IO.IOException"/>
  3732. <exception cref="T:System.NotSupportedException"/>
  3733. <exception cref="T:System.UnauthorizedAccessException"/>
  3734. <param name="path">The directory to search.</param>
  3735. <param name="searchPattern">
  3736. The search string to match against the names of directories in <paramref name="path"/>.
  3737. This parameter can contain a combination of valid literal path and wildcard
  3738. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3739. </param>
  3740. <param name="searchOption">
  3741. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3742. should include only the current directory or should include all subdirectories.
  3743. </param>
  3744. </member>
  3745. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3746. <summary>Returns the names of all files and subdirectories in the specified directory.</summary>
  3747. <returns>An string[] array of the names of files and subdirectories in the specified directory.</returns>
  3748. <remarks>
  3749. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3750. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3751. you must wait for the whole array of entries to be returned before you can access the array.
  3752. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3753. </para>
  3754. </remarks>
  3755. <exception cref="T:System.ArgumentException"/>
  3756. <exception cref="T:System.ArgumentNullException"/>
  3757. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3758. <exception cref="T:System.IO.IOException"/>
  3759. <exception cref="T:System.NotSupportedException"/>
  3760. <exception cref="T:System.UnauthorizedAccessException"/>
  3761. <param name="transaction">The transaction.</param>
  3762. <param name="path">The directory for which file and subdirectory names are returned.</param>
  3763. </member>
  3764. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  3765. <summary>Returns an array of file system entries that match the specified search criteria.</summary>
  3766. <returns>An string[] array of file system entries that match the specified search criteria.</returns>
  3767. <remarks>
  3768. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3769. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3770. you must wait for the whole array of entries to be returned before you can access the array.
  3771. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3772. </para>
  3773. </remarks>
  3774. <exception cref="T:System.ArgumentException"/>
  3775. <exception cref="T:System.ArgumentNullException"/>
  3776. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3777. <exception cref="T:System.IO.IOException"/>
  3778. <exception cref="T:System.NotSupportedException"/>
  3779. <exception cref="T:System.UnauthorizedAccessException"/>
  3780. <param name="transaction">The transaction.</param>
  3781. <param name="path">The path to be searched.</param>
  3782. <param name="searchPattern">
  3783. The search string to match against the names of directories in <paramref name="path"/>.
  3784. This parameter can contain a combination of valid literal path and wildcard
  3785. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3786. </param>
  3787. </member>
  3788. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetFileSystemEntriesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.IO.SearchOption)">
  3789. <summary>Gets an array of all the file names and directory names that match a <paramref name="searchPattern"/> in a specified path, and optionally searches subdirectories.</summary>
  3790. <returns>An string[] array of file system entries that match the specified search criteria.</returns>
  3791. <remarks>
  3792. <para>The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
  3793. you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
  3794. you must wait for the whole array of entries to be returned before you can access the array.
  3795. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  3796. </para>
  3797. </remarks>
  3798. <exception cref="T:System.ArgumentException"/>
  3799. <exception cref="T:System.ArgumentNullException"/>
  3800. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  3801. <exception cref="T:System.IO.IOException"/>
  3802. <exception cref="T:System.NotSupportedException"/>
  3803. <exception cref="T:System.UnauthorizedAccessException"/>
  3804. <param name="transaction">The transaction.</param>
  3805. <param name="path">The directory to search.</param>
  3806. <param name="searchPattern">
  3807. The search string to match against the names of directories in <paramref name="path"/>.
  3808. This parameter can contain a combination of valid literal path and wildcard
  3809. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  3810. </param>
  3811. <param name="searchOption">
  3812. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  3813. should include only the current directory or should include all subdirectories.
  3814. </param>
  3815. </member>
  3816. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoryRoot(System.String)">
  3817. <summary>Returns the volume information, root information, or both for the specified path.</summary>
  3818. <returns>The volume information, root information, or both for the specified path, or <see langword="null"/> if <paramref name="path"/> path does not contain root directory information.</returns>
  3819. <exception cref="T:System.ArgumentException"/>
  3820. <exception cref="T:System.ArgumentNullException"/>
  3821. <exception cref="T:System.NotSupportedException"/>
  3822. <param name="path">The path of a file or directory.</param>
  3823. </member>
  3824. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoryRoot(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3825. <summary>Returns the volume information, root information, or both for the specified path.</summary>
  3826. <returns>The volume information, root information, or both for the specified path, or <see langword="null"/> if <paramref name="path"/> path does not contain root directory information.</returns>
  3827. <exception cref="T:System.ArgumentException"/>
  3828. <exception cref="T:System.ArgumentNullException"/>
  3829. <exception cref="T:System.NotSupportedException"/>
  3830. <param name="path">The path of a file or directory.</param>
  3831. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3832. </member>
  3833. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoryRootTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3834. <summary>[AlphaFS] Returns the volume information, root information, or both for the specified path.</summary>
  3835. <returns>The volume information, root information, or both for the specified path, or <see langword="null"/> if <paramref name="path"/> path does not contain root directory information.</returns>
  3836. <exception cref="T:System.ArgumentException"/>
  3837. <exception cref="T:System.ArgumentNullException"/>
  3838. <exception cref="T:System.NotSupportedException"/>
  3839. <param name="transaction">The transaction.</param>
  3840. <param name="path">The path of a file or directory.</param>
  3841. </member>
  3842. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoryRootTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3843. <summary>Returns the volume information, root information, or both for the specified path.</summary>
  3844. <returns>The volume information, root information, or both for the specified path, or <see langword="null"/> if <paramref name="path"/> path does not contain root directory information.</returns>
  3845. <exception cref="T:System.ArgumentException"/>
  3846. <exception cref="T:System.ArgumentNullException"/>
  3847. <exception cref="T:System.NotSupportedException"/>
  3848. <param name="transaction">The transaction.</param>
  3849. <param name="path">The path of a file or directory.</param>
  3850. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3851. </member>
  3852. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetDirectoryRootCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3853. <summary>Returns the volume information, root information, or both for the specified path.</summary>
  3854. <returns>The volume information, root information, or both for the specified path, or <see langword="null"/> if <paramref name="path"/> path does not contain root directory information.</returns>
  3855. <exception cref="T:System.ArgumentException"/>
  3856. <exception cref="T:System.ArgumentNullException"/>
  3857. <exception cref="T:System.NotSupportedException"/>
  3858. <param name="transaction">The transaction.</param>
  3859. <param name="path">The path of a file or directory.</param>
  3860. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3861. </member>
  3862. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLogicalDrives">
  3863. <summary>Retrieves the names of the logical drives on this computer in the form "&lt;drive letter&gt;:\".</summary>
  3864. <returns>An array of type <see cref="T:System.String"/> that represents the logical drives on a computer.</returns>
  3865. </member>
  3866. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetLogicalDrives(System.Boolean,System.Boolean)">
  3867. <summary>[AlphaFS] Retrieves the names of the logical drives on this computer in the form "&lt;drive letter&gt;:\".</summary>
  3868. <returns>An array of type <see cref="T:System.String"/> that represents the logical drives on a computer.</returns>
  3869. <param name="fromEnvironment">Retrieve logical drives as known by the Environment.</param>
  3870. <param name="isReady">Retrieve only when accessible (IsReady) logical drives.</param>
  3871. </member>
  3872. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateLogicalDrives(System.Boolean,System.Boolean)">
  3873. <summary>[AlphaFS] Enumerates the drive names of all logical drives on a computer.</summary>
  3874. <returns>An IEnumerable of type <see cref="T:Alphaleonis.Win32.Filesystem.DriveInfo"/> that represents the logical drives on a computer.</returns>
  3875. <param name="fromEnvironment">Retrieve logical drives as known by the Environment.</param>
  3876. <param name="isReady">Retrieve only when accessible (IsReady) logical drives.</param>
  3877. </member>
  3878. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateLogicalDrivesCore(System.Boolean,System.Boolean)">
  3879. <summary>Enumerates the drive names of all logical drives on a computer.</summary>
  3880. <returns>An IEnumerable of type <see cref="T:Alphaleonis.Win32.Filesystem.DriveInfo"/> that represents the logical drives on a computer.</returns>
  3881. <param name="fromEnvironment">Retrieve logical drives as known by the Environment.</param>
  3882. <param name="isReady">Retrieve only when accessible (IsReady) logical drives.</param>
  3883. </member>
  3884. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetParent(System.String)">
  3885. <summary>Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
  3886. <param name="path">The path for which to retrieve the parent directory.</param>
  3887. <returns>The parent directory, or <see langword="null"/> if <paramref name="path"/> is the root directory, including the root of a UNC server or share name.</returns>
  3888. </member>
  3889. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetParent(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3890. <summary>[AlphaFS] Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
  3891. <returns>The parent directory, or <see langword="null"/> if <paramref name="path"/> is the root directory, including the root of a UNC server or share name.</returns>
  3892. <param name="path">The path for which to retrieve the parent directory.</param>
  3893. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3894. </member>
  3895. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetParentTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  3896. <summary>[AlphaFS] Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
  3897. <returns>The parent directory, or <see langword="null"/> if <paramref name="path"/> is the root directory, including the root of a UNC server or share name.</returns>
  3898. <param name="transaction">The transaction.</param>
  3899. <param name="path">The path for which to retrieve the parent directory.</param>
  3900. </member>
  3901. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetParentTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3902. <summary>Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
  3903. <returns>The parent directory, or <see langword="null"/> if <paramref name="path"/> is the root directory, including the root of a UNC server or share name.</returns>
  3904. <param name="transaction">The transaction.</param>
  3905. <param name="path">The path for which to retrieve the parent directory.</param>
  3906. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3907. </member>
  3908. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetParentCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  3909. <summary>Retrieves the parent directory of the specified path, including both absolute and relative paths.</summary>
  3910. <returns>The parent directory, or <see langword="null"/> if <paramref name="path"/> is the root directory, including the root of a UNC server or share name.</returns>
  3911. <param name="transaction">The transaction.</param>
  3912. <param name="path">The path for which to retrieve the parent directory.</param>
  3913. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3914. </member>
  3915. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(System.String,System.Security.AccessControl.DirectorySecurity)">
  3916. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3917. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  3918. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3919. </member>
  3920. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(System.String,System.Security.AccessControl.DirectorySecurity,System.Security.AccessControl.AccessControlSections)">
  3921. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3922. <remarks>Note that unlike <see cref="M:System.IO.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity)"/> this method does <b>not</b> automatically
  3923. determine what parts of the specified <see cref="T:System.Security.AccessControl.DirectorySecurity"/> instance has been modified. Instead, the
  3924. parameter <paramref name="includeSections"/> is used to specify what entries from <paramref name="directorySecurity"/> to apply to <paramref name="path"/>.</remarks>
  3925. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  3926. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3927. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  3928. </member>
  3929. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(System.String,System.Security.AccessControl.DirectorySecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  3930. <summary>[AlphaFS] Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3931. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  3932. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3933. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3934. </member>
  3935. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(System.String,System.Security.AccessControl.DirectorySecurity,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  3936. <summary>[AlphaFS] Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3937. <remarks>Note that unlike <see cref="M:System.IO.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity)"/> this method does <b>not</b> automatically
  3938. determine what parts of the specified <see cref="T:System.Security.AccessControl.DirectorySecurity"/> instance has been modified. Instead, the
  3939. parameter <paramref name="includeSections"/> is used to specify what entries from <paramref name="directorySecurity"/> to apply to <paramref name="path"/>.</remarks>
  3940. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  3941. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3942. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  3943. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3944. </member>
  3945. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.DirectorySecurity)">
  3946. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3947. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to a file to add or remove access control list (ACL) entries from.</param>
  3948. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3949. </member>
  3950. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.DirectorySecurity,System.Security.AccessControl.AccessControlSections)">
  3951. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  3952. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to a file to add or remove access control list (ACL) entries from.</param>
  3953. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  3954. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  3955. </member>
  3956. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTime(System.String,System.DateTime)">
  3957. <summary>Sets the date and time the directory was created.</summary>
  3958. <param name="path">The directory for which to set the creation date and time information.</param>
  3959. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  3960. </member>
  3961. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtc(System.String,System.DateTime)">
  3962. <summary>Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  3963. <param name="path">The directory for which to set the creation date and time information.</param>
  3964. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  3965. </member>
  3966. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  3967. <summary>[AlphaFS] Sets the date and time the directory was created.</summary>
  3968. <param name="path">The directory for which to set the creation date and time information.</param>
  3969. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3970. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  3971. </member>
  3972. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  3973. <summary>[AlphaFS] Sets the date and time the directory was created.</summary>
  3974. <param name="path">The directory for which to set the creation date and time information.</param>
  3975. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3976. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  3977. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  3978. </member>
  3979. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  3980. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  3981. <param name="path">The directory for which to set the creation date and time information.</param>
  3982. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  3983. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3984. </member>
  3985. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  3986. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  3987. <param name="path">The directory for which to set the creation date and time information.</param>
  3988. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  3989. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  3990. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  3991. </member>
  3992. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  3993. <summary>[AlphaFS] Sets the date and time the directory was created.</summary>
  3994. <param name="transaction">The transaction.</param>
  3995. <param name="path">The directory for which to set the creation date and time information.</param>
  3996. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  3997. </member>
  3998. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  3999. <summary>[AlphaFS] Sets the date and time the directory was created.</summary>
  4000. <param name="transaction">The transaction.</param>
  4001. <param name="path">The directory for which to set the creation date and time information.</param>
  4002. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4003. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4004. </member>
  4005. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4006. <summary>[AlphaFS] Sets the date and time the directory was created.</summary>
  4007. <param name="transaction">The transaction.</param>
  4008. <param name="path">The directory for which to set the creation date and time information.</param>
  4009. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4010. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4011. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4012. </member>
  4013. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  4014. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  4015. <param name="transaction">The transaction.</param>
  4016. <param name="path">The directory for which to set the creation date and time information.</param>
  4017. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4018. </member>
  4019. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4020. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  4021. <param name="transaction">The transaction.</param>
  4022. <param name="path">The directory for which to set the creation date and time information.</param>
  4023. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4024. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4025. </member>
  4026. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4027. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the directory was created.</summary>
  4028. <param name="transaction">The transaction.</param>
  4029. <param name="path">The directory for which to set the creation date and time information.</param>
  4030. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4031. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4032. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4033. </member>
  4034. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTime(System.String,System.DateTime)">
  4035. <summary>Sets the date and time that the specified directory was last accessed.</summary>
  4036. <param name="path">The file for which to set the access date and time information.</param>
  4037. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4038. </member>
  4039. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtc(System.String,System.DateTime)">
  4040. <summary>Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4041. <param name="path">The directory for which to set the access date and time information.</param>
  4042. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4043. </member>
  4044. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4045. <summary>[AlphaFS] Sets the date and time that the specified directory was last accessed.</summary>
  4046. <param name="path">The file for which to set the access date and time information.</param>
  4047. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4048. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4049. </member>
  4050. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4051. <summary>[AlphaFS] Sets the date and time that the specified directory was last accessed.</summary>
  4052. <param name="path">The file for which to set the access date and time information.</param>
  4053. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4054. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4055. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4056. </member>
  4057. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4058. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4059. <param name="path">The directory for which to set the access date and time information.</param>
  4060. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4061. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4062. </member>
  4063. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4064. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4065. <param name="path">The directory for which to set the access date and time information.</param>
  4066. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4067. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4068. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4069. </member>
  4070. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  4071. <summary>[AlphaFS] Sets the date and time that the specified directory was last accessed.</summary>
  4072. <param name="transaction">The transaction.</param>
  4073. <param name="path">The directory for which to set the access date and time information.</param>
  4074. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4075. </member>
  4076. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4077. <summary>[AlphaFS] Sets the date and time that the specified directory was last accessed.</summary>
  4078. <param name="transaction">The transaction.</param>
  4079. <param name="path">The directory for which to set the access date and time information.</param>
  4080. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4081. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4082. </member>
  4083. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4084. <summary>[AlphaFS] Sets the date and time that the specified directory was last accessed.</summary>
  4085. <param name="transaction">The transaction.</param>
  4086. <param name="path">The directory for which to set the access date and time information.</param>
  4087. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4088. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4089. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4090. </member>
  4091. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  4092. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4093. <param name="transaction">The transaction.</param>
  4094. <param name="path">The directory for which to set the access date and time information.</param>
  4095. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4096. </member>
  4097. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4098. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4099. <param name="transaction">The transaction.</param>
  4100. <param name="path">The directory for which to set the access date and time information.</param>
  4101. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4102. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4103. </member>
  4104. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4105. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed.</summary>
  4106. <param name="transaction">The transaction.</param>
  4107. <param name="path">The directory for which to set the access date and time information.</param>
  4108. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4109. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4110. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4111. </member>
  4112. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime)">
  4113. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4114. <param name="path">The directory for which to set the dates and times information.</param>
  4115. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4116. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4117. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4118. </member>
  4119. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4120. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4121. <param name="path">The directory for which to set the dates and times information.</param>
  4122. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4123. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4124. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4125. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4126. </member>
  4127. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4128. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4129. <param name="path">The directory for which to set the dates and times information.</param>
  4130. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4131. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4132. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4133. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4134. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4135. </member>
  4136. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime)">
  4137. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4138. <param name="path">The directory for which to set the dates and times information.</param>
  4139. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4140. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4141. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4142. </member>
  4143. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4144. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4145. <param name="path">The directory for which to set the dates and times information.</param>
  4146. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4147. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4148. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4149. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4150. </member>
  4151. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4152. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4153. <param name="path">The directory for which to set the dates and times information.</param>
  4154. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4155. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4156. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4157. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4158. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4159. </member>
  4160. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime)">
  4161. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4162. <param name="transaction">The transaction.</param>
  4163. <param name="path">The directory for which to set the dates and times information.</param>
  4164. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4165. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4166. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4167. </member>
  4168. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4169. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4170. <param name="transaction">The transaction.</param>
  4171. <param name="path">The directory for which to set the dates and times information.</param>
  4172. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4173. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4174. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4175. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4176. </member>
  4177. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4178. <summary>[AlphaFS] Sets all the date and time stamps for the specified directory, at once.</summary>
  4179. <param name="transaction">The transaction.</param>
  4180. <param name="path">The directory for which to set the dates and times information.</param>
  4181. <param name="creationTime">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4182. <param name="lastAccessTime">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4183. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4184. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4185. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4186. </member>
  4187. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime)">
  4188. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4189. <param name="transaction">The transaction.</param>
  4190. <param name="path">The directory for which to set the dates and times information.</param>
  4191. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4192. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4193. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4194. </member>
  4195. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4196. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4197. <param name="transaction">The transaction.</param>
  4198. <param name="path">The directory for which to set the dates and times information.</param>
  4199. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4200. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4201. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4202. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4203. </member>
  4204. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4205. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once.</summary>
  4206. <param name="transaction">The transaction.</param>
  4207. <param name="path">The directory for which to set the dates and times information.</param>
  4208. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4209. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4210. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4211. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4212. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4213. </member>
  4214. <member name="M:Alphaleonis.Win32.Filesystem.Directory.TransferTimestamps(System.String,System.String)">
  4215. <summary>[AlphaFS] Transfers the date and time stamps for the specified directories.</summary>
  4216. <remarks>This method uses BackupSemantics flag to get Timestamp changed for directories.</remarks>
  4217. <param name="sourcePath">The source directory to get the date and time stamps from.</param>
  4218. <param name="destinationPath">The destination directory to set the date and time stamps.</param>
  4219. </member>
  4220. <member name="M:Alphaleonis.Win32.Filesystem.Directory.TransferTimestamps(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4221. <summary>[AlphaFS] Transfers the date and time stamps for the specified directories.</summary>
  4222. <remarks>This method uses BackupSemantics flag to get Timestamp changed for directories.</remarks>
  4223. <param name="sourcePath">The source directory to get the date and time stamps from.</param>
  4224. <param name="destinationPath">The destination directory to set the date and time stamps.</param>
  4225. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4226. </member>
  4227. <member name="M:Alphaleonis.Win32.Filesystem.Directory.TransferTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  4228. <summary>[AlphaFS] Transfers the date and time stamps for the specified directories.</summary>
  4229. <remarks>This method uses BackupSemantics flag to get Timestamp changed for directories.</remarks>
  4230. <param name="transaction">The transaction.</param>
  4231. <param name="sourcePath">The source directory to get the date and time stamps from.</param>
  4232. <param name="destinationPath">The destination directory to set the date and time stamps.</param>
  4233. </member>
  4234. <member name="M:Alphaleonis.Win32.Filesystem.Directory.TransferTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4235. <summary>[AlphaFS] Transfers the date and time stamps for the specified directories.</summary>
  4236. <remarks>This method uses BackupSemantics flag to get Timestamp changed for directories.</remarks>
  4237. <param name="transaction">The transaction.</param>
  4238. <param name="sourcePath">The source directory to get the date and time stamps from.</param>
  4239. <param name="destinationPath">The destination directory to set the date and time stamps.</param>
  4240. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4241. </member>
  4242. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTime(System.String,System.DateTime)">
  4243. <summary>Sets the date and time that the specified directory was last written to.</summary>
  4244. <param name="path">The directory for which to set the date and time information.</param>
  4245. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4246. </member>
  4247. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtc(System.String,System.DateTime)">
  4248. <summary>Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4249. <param name="path">The directory for which to set the date and time information.</param>
  4250. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4251. </member>
  4252. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4253. <summary>[AlphaFS] Sets the date and time that the specified directory was last written to.</summary>
  4254. <param name="path">The directory for which to set the date and time information.</param>
  4255. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4256. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4257. </member>
  4258. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4259. <summary>[AlphaFS] Sets the date and time that the specified directory was last written to.</summary>
  4260. <param name="path">The directory for which to set the date and time information.</param>
  4261. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4262. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4263. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4264. </member>
  4265. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4266. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4267. <param name="path">The directory for which to set the date and time information.</param>
  4268. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4269. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4270. </member>
  4271. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4272. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4273. <param name="path">The directory for which to set the date and time information.</param>
  4274. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4275. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4276. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4277. </member>
  4278. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  4279. <summary>[AlphaFS] Sets the date and time that the specified directory was last written to.</summary>
  4280. <param name="transaction">The transaction.</param>
  4281. <param name="path">The directory for which to set the date and time information.</param>
  4282. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4283. </member>
  4284. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4285. <summary>[AlphaFS] Sets the date and time that the specified directory was last written to.</summary>
  4286. <param name="transaction">The transaction.</param>
  4287. <param name="path">The directory for which to set the date and time information.</param>
  4288. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4289. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4290. </member>
  4291. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4292. <summary>[AlphaFS] Sets the date and time that the specified directory was last written to.</summary>
  4293. <param name="transaction">The transaction.</param>
  4294. <param name="path">The directory for which to set the date and time information.</param>
  4295. <param name="lastWriteTime">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in local time.</param>
  4296. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4297. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4298. </member>
  4299. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  4300. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4301. <param name="transaction">The transaction.</param>
  4302. <param name="path">The directory for which to set the date and time information.</param>
  4303. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4304. </member>
  4305. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  4306. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4307. <param name="transaction">The transaction.</param>
  4308. <param name="path">The directory for which to set the date and time information.</param>
  4309. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4310. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4311. </member>
  4312. <member name="M:Alphaleonis.Win32.Filesystem.Directory.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4313. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last written to.</summary>
  4314. <param name="transaction">The transaction.</param>
  4315. <param name="path">The directory for which to set the date and time information.</param>
  4316. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  4317. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  4318. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4319. </member>
  4320. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Compress(System.String)">
  4321. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4322. <remarks>This will only compress the root items (non recursive).</remarks>
  4323. <exception cref="T:System.ArgumentException"/>
  4324. <exception cref="T:System.ArgumentNullException"/>
  4325. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4326. <exception cref="T:System.IO.IOException"/>
  4327. <exception cref="T:System.NotSupportedException"/>
  4328. <exception cref="T:System.UnauthorizedAccessException"/>
  4329. <param name="path">A path that describes a directory to compress.</param>
  4330. </member>
  4331. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Compress(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4332. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4333. <remarks>This will only compress the root items (non recursive).</remarks>
  4334. <exception cref="T:System.ArgumentException"/>
  4335. <exception cref="T:System.ArgumentNullException"/>
  4336. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4337. <exception cref="T:System.IO.IOException"/>
  4338. <exception cref="T:System.NotSupportedException"/>
  4339. <exception cref="T:System.UnauthorizedAccessException"/>
  4340. <param name="path">A path that describes a directory to compress.</param>
  4341. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4342. </member>
  4343. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Compress(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4344. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4345. <exception cref="T:System.ArgumentException"/>
  4346. <exception cref="T:System.ArgumentNullException"/>
  4347. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4348. <exception cref="T:System.IO.IOException"/>
  4349. <exception cref="T:System.NotSupportedException"/>
  4350. <exception cref="T:System.UnauthorizedAccessException"/>
  4351. <param name="path">A path that describes a directory to compress.</param>
  4352. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4353. </member>
  4354. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Compress(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4355. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4356. <exception cref="T:System.ArgumentException"/>
  4357. <exception cref="T:System.ArgumentNullException"/>
  4358. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4359. <exception cref="T:System.IO.IOException"/>
  4360. <exception cref="T:System.NotSupportedException"/>
  4361. <exception cref="T:System.UnauthorizedAccessException"/>
  4362. <param name="path">A path that describes a directory to compress.</param>
  4363. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4364. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4365. </member>
  4366. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4367. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4368. <remarks>This will only compress the root items (non recursive).</remarks>
  4369. <exception cref="T:System.ArgumentException"/>
  4370. <exception cref="T:System.ArgumentNullException"/>
  4371. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4372. <exception cref="T:System.IO.IOException"/>
  4373. <exception cref="T:System.NotSupportedException"/>
  4374. <exception cref="T:System.UnauthorizedAccessException"/>
  4375. <param name="transaction">The transaction.</param>
  4376. <param name="path">A path that describes a directory to compress.</param>
  4377. </member>
  4378. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4379. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4380. <remarks>This will only compress the root items (non recursive).</remarks>
  4381. <exception cref="T:System.ArgumentException"/>
  4382. <exception cref="T:System.ArgumentNullException"/>
  4383. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4384. <exception cref="T:System.IO.IOException"/>
  4385. <exception cref="T:System.NotSupportedException"/>
  4386. <exception cref="T:System.UnauthorizedAccessException"/>
  4387. <param name="transaction">The transaction.</param>
  4388. <param name="path">A path that describes a directory to compress.</param>
  4389. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4390. </member>
  4391. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4392. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4393. <exception cref="T:System.ArgumentException"/>
  4394. <exception cref="T:System.ArgumentNullException"/>
  4395. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4396. <exception cref="T:System.IO.IOException"/>
  4397. <exception cref="T:System.NotSupportedException"/>
  4398. <exception cref="T:System.UnauthorizedAccessException"/>
  4399. <param name="transaction">The transaction.</param>
  4400. <param name="path">A path that describes a directory to compress.</param>
  4401. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4402. </member>
  4403. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4404. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  4405. <exception cref="T:System.ArgumentException"/>
  4406. <exception cref="T:System.ArgumentNullException"/>
  4407. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4408. <exception cref="T:System.IO.IOException"/>
  4409. <exception cref="T:System.NotSupportedException"/>
  4410. <exception cref="T:System.UnauthorizedAccessException"/>
  4411. <param name="transaction">The transaction.</param>
  4412. <param name="path">A path that describes a directory to compress.</param>
  4413. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4414. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4415. </member>
  4416. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decompress(System.String)">
  4417. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4418. <remarks>This will only decompress the root items (non recursive).</remarks>
  4419. <exception cref="T:System.ArgumentException"/>
  4420. <exception cref="T:System.ArgumentNullException"/>
  4421. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4422. <exception cref="T:System.IO.IOException"/>
  4423. <exception cref="T:System.NotSupportedException"/>
  4424. <exception cref="T:System.UnauthorizedAccessException"/>
  4425. <param name="path">A path that describes a directory to decompress.</param>
  4426. </member>
  4427. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decompress(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4428. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4429. <remarks>This will only decompress the root items (non recursive).</remarks>
  4430. <exception cref="T:System.ArgumentException"/>
  4431. <exception cref="T:System.ArgumentNullException"/>
  4432. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4433. <exception cref="T:System.IO.IOException"/>
  4434. <exception cref="T:System.NotSupportedException"/>
  4435. <exception cref="T:System.UnauthorizedAccessException"/>
  4436. <param name="path">A path that describes a directory to decompress.</param>
  4437. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4438. </member>
  4439. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decompress(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4440. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4441. <exception cref="T:System.ArgumentException"/>
  4442. <exception cref="T:System.ArgumentNullException"/>
  4443. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4444. <exception cref="T:System.IO.IOException"/>
  4445. <exception cref="T:System.NotSupportedException"/>
  4446. <exception cref="T:System.UnauthorizedAccessException"/>
  4447. <param name="path">A path that describes a directory to decompress.</param>
  4448. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4449. </member>
  4450. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decompress(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4451. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4452. <exception cref="T:System.ArgumentException"/>
  4453. <exception cref="T:System.ArgumentNullException"/>
  4454. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4455. <exception cref="T:System.IO.IOException"/>
  4456. <exception cref="T:System.NotSupportedException"/>
  4457. <exception cref="T:System.UnauthorizedAccessException"/>
  4458. <param name="path">A path that describes a directory to decompress.</param>
  4459. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4460. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4461. </member>
  4462. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4463. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4464. <remarks>This will only decompress the root items (non recursive).</remarks>
  4465. <exception cref="T:System.ArgumentException"/>
  4466. <exception cref="T:System.ArgumentNullException"/>
  4467. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4468. <exception cref="T:System.IO.IOException"/>
  4469. <exception cref="T:System.NotSupportedException"/>
  4470. <exception cref="T:System.UnauthorizedAccessException"/>
  4471. <param name="transaction">The transaction.</param>
  4472. <param name="path">A path that describes a directory to decompress.</param>
  4473. </member>
  4474. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4475. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4476. <remarks>This will only decompress the root items (non recursive).</remarks>
  4477. <exception cref="T:System.ArgumentException"/>
  4478. <exception cref="T:System.ArgumentNullException"/>
  4479. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4480. <exception cref="T:System.IO.IOException"/>
  4481. <exception cref="T:System.NotSupportedException"/>
  4482. <exception cref="T:System.UnauthorizedAccessException"/>
  4483. <param name="transaction">The transaction.</param>
  4484. <param name="path">A path that describes a directory to decompress.</param>
  4485. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4486. </member>
  4487. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4488. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4489. <exception cref="T:System.ArgumentException"/>
  4490. <exception cref="T:System.ArgumentNullException"/>
  4491. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4492. <exception cref="T:System.IO.IOException"/>
  4493. <exception cref="T:System.NotSupportedException"/>
  4494. <exception cref="T:System.UnauthorizedAccessException"/>
  4495. <param name="transaction">The transaction.</param>
  4496. <param name="path">A path that describes a directory to decompress.</param>
  4497. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4498. </member>
  4499. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4500. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  4501. <exception cref="T:System.ArgumentException"/>
  4502. <exception cref="T:System.ArgumentNullException"/>
  4503. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4504. <exception cref="T:System.IO.IOException"/>
  4505. <exception cref="T:System.NotSupportedException"/>
  4506. <exception cref="T:System.UnauthorizedAccessException"/>
  4507. <param name="transaction">The transaction.</param>
  4508. <param name="path">A path that describes a directory to decompress.</param>
  4509. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4510. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4511. </member>
  4512. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableCompression(System.String)">
  4513. <summary>[AlphaFS] Disables NTFS compression of the specified directory and the files in it.</summary>
  4514. <remarks>This method disables the directory-compression attribute. It will not decompress the current contents of the directory. However, newly created files and directories will be uncompressed.</remarks>
  4515. <exception cref="T:System.ArgumentException"/>
  4516. <exception cref="T:System.ArgumentNullException"/>
  4517. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4518. <exception cref="T:System.IO.IOException"/>
  4519. <exception cref="T:System.NotSupportedException"/>
  4520. <exception cref="T:System.UnauthorizedAccessException"/>
  4521. <param name="path">A path to a directory to decompress.</param>
  4522. </member>
  4523. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableCompression(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4524. <summary>[AlphaFS] Disables NTFS compression of the specified directory and the files in it.</summary>
  4525. <remarks>This method disables the directory-compression attribute. It will not decompress the current contents of the directory. However, newly created files and directories will be uncompressed.</remarks>
  4526. <exception cref="T:System.ArgumentException"/>
  4527. <exception cref="T:System.ArgumentNullException"/>
  4528. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4529. <exception cref="T:System.IO.IOException"/>
  4530. <exception cref="T:System.NotSupportedException"/>
  4531. <exception cref="T:System.UnauthorizedAccessException"/>
  4532. <param name="path">A path to a directory to decompress.</param>
  4533. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4534. </member>
  4535. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableCompressionTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4536. <summary>[AlphaFS] Disables NTFS compression of the specified directory and the files in it.</summary>
  4537. <remarks>This method disables the directory-compression attribute. It will not decompress the current contents of the directory. However, newly created files and directories will be uncompressed.</remarks>
  4538. <exception cref="T:System.ArgumentException"/>
  4539. <exception cref="T:System.ArgumentNullException"/>
  4540. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4541. <exception cref="T:System.IO.IOException"/>
  4542. <exception cref="T:System.NotSupportedException"/>
  4543. <exception cref="T:System.UnauthorizedAccessException"/>
  4544. <param name="transaction">The transaction.</param>
  4545. <param name="path">A path to a directory to decompress.</param>
  4546. </member>
  4547. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableCompressionTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4548. <summary>[AlphaFS] Disables NTFS compression of the specified directory and the files in it.</summary>
  4549. <remarks>This method disables the directory-compression attribute. It will not decompress the current contents of the directory. However, newly created files and directories will be uncompressed.</remarks>
  4550. <exception cref="T:System.ArgumentException"/>
  4551. <exception cref="T:System.ArgumentNullException"/>
  4552. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4553. <exception cref="T:System.IO.IOException"/>
  4554. <exception cref="T:System.NotSupportedException"/>
  4555. <exception cref="T:System.UnauthorizedAccessException"/>
  4556. <param name="transaction">The transaction.</param>
  4557. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4558. <param name="path">A path to a directory to decompress.</param>
  4559. </member>
  4560. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableCompression(System.String)">
  4561. <summary>[AlphaFS] Enables NTFS compression of the specified directory and the files in it.</summary>
  4562. <remarks>This method enables the directory-compression attribute. It will not compress the current contents of the directory. However, newly created files and directories will be compressed.</remarks>
  4563. <exception cref="T:System.ArgumentException"/>
  4564. <exception cref="T:System.ArgumentNullException"/>
  4565. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4566. <exception cref="T:System.IO.IOException"/>
  4567. <exception cref="T:System.NotSupportedException"/>
  4568. <exception cref="T:System.UnauthorizedAccessException"/>
  4569. <param name="path">A path to a directory to compress.</param>
  4570. </member>
  4571. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableCompression(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4572. <summary>[AlphaFS] Enables NTFS compression of the specified directory and the files in it.</summary>
  4573. <remarks>This method enables the directory-compression attribute. It will not compress the current contents of the directory. However, newly created files and directories will be compressed.</remarks>
  4574. <exception cref="T:System.ArgumentException"/>
  4575. <exception cref="T:System.ArgumentNullException"/>
  4576. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4577. <exception cref="T:System.IO.IOException"/>
  4578. <exception cref="T:System.NotSupportedException"/>
  4579. <exception cref="T:System.UnauthorizedAccessException"/>
  4580. <param name="path">A path to a directory to compress.</param>
  4581. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4582. </member>
  4583. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableCompressionTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4584. <summary>[AlphaFS] Enables NTFS compression of the specified directory and the files in it.</summary>
  4585. <remarks>This method enables the directory-compression attribute. It will not compress the current contents of the directory. However, newly created files and directories will be compressed.</remarks>
  4586. <exception cref="T:System.ArgumentException"/>
  4587. <exception cref="T:System.ArgumentNullException"/>
  4588. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4589. <exception cref="T:System.IO.IOException"/>
  4590. <exception cref="T:System.NotSupportedException"/>
  4591. <exception cref="T:System.UnauthorizedAccessException"/>
  4592. <param name="transaction">The transaction.</param>
  4593. <param name="path">A path to a directory to compress.</param>
  4594. </member>
  4595. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableCompressionTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4596. <summary>[AlphaFS] Enables NTFS compression of the specified directory and the files in it.</summary>
  4597. <remarks>This method enables the directory-compression attribute. It will not compress the current contents of the directory. However, newly created files and directories will be compressed.</remarks>
  4598. <exception cref="T:System.ArgumentException"/>
  4599. <exception cref="T:System.ArgumentNullException"/>
  4600. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4601. <exception cref="T:System.IO.IOException"/>
  4602. <exception cref="T:System.NotSupportedException"/>
  4603. <exception cref="T:System.UnauthorizedAccessException"/>
  4604. <param name="transaction">The transaction.</param>
  4605. <param name="path">A path to a directory to compress.</param>
  4606. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4607. </member>
  4608. <member name="M:Alphaleonis.Win32.Filesystem.Directory.CompressDecompressCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4609. <summary>Compress/decompress Non-/Transacted files/directories.</summary>
  4610. <exception cref="T:System.ArgumentException"/>
  4611. <exception cref="T:System.ArgumentNullException"/>
  4612. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4613. <exception cref="T:System.IO.IOException"/>
  4614. <exception cref="T:System.NotSupportedException"/>
  4615. <exception cref="T:System.UnauthorizedAccessException"/>
  4616. <param name="transaction">The transaction.</param>
  4617. <param name="path">A path that describes a directory to compress.</param>
  4618. <param name="searchPattern">
  4619. The search string to match against the names of directories in <paramref name="path"/>.
  4620. This parameter can contain a combination of valid literal path and wildcard
  4621. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  4622. </param>
  4623. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4624. <param name="compress"><see langword="true"/> compress, when <see langword="false"/> decompress.</param>
  4625. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4626. </member>
  4627. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decrypt(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4628. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  4629. <exception cref="T:System.ArgumentException"/>
  4630. <exception cref="T:System.ArgumentNullException"/>
  4631. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4632. <exception cref="T:System.IO.IOException"/>
  4633. <exception cref="T:System.NotSupportedException"/>
  4634. <exception cref="T:System.UnauthorizedAccessException"/>
  4635. <param name="path">A path that describes a directory to decrypt.</param>
  4636. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4637. </member>
  4638. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decrypt(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4639. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  4640. <exception cref="T:System.ArgumentException"/>
  4641. <exception cref="T:System.ArgumentNullException"/>
  4642. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4643. <exception cref="T:System.IO.IOException"/>
  4644. <exception cref="T:System.NotSupportedException"/>
  4645. <exception cref="T:System.UnauthorizedAccessException"/>
  4646. <param name="path">A path that describes a directory to decrypt.</param>
  4647. <param name="recursive"><see langword="true"/> to decrypt the directory recursively. <see langword="false"/> only decrypt the directory.</param>
  4648. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4649. </member>
  4650. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decrypt(System.String)">
  4651. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  4652. <exception cref="T:System.ArgumentException"/>
  4653. <exception cref="T:System.ArgumentNullException"/>
  4654. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4655. <exception cref="T:System.IO.IOException"/>
  4656. <exception cref="T:System.NotSupportedException"/>
  4657. <exception cref="T:System.UnauthorizedAccessException"/>
  4658. <param name="path">A path that describes a directory to decrypt.</param>
  4659. </member>
  4660. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Decrypt(System.String,System.Boolean)">
  4661. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  4662. <exception cref="T:System.ArgumentException"/>
  4663. <exception cref="T:System.ArgumentNullException"/>
  4664. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4665. <exception cref="T:System.IO.IOException"/>
  4666. <exception cref="T:System.NotSupportedException"/>
  4667. <exception cref="T:System.UnauthorizedAccessException"/>
  4668. <param name="path">A path that describes a directory to decrypt.</param>
  4669. <param name="recursive"><see langword="true"/> to decrypt the directory recursively. <see langword="false"/> only decrypt the directory.</param>
  4670. </member>
  4671. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Encrypt(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4672. <summary>[AlphaFS] Encrypts a directory so that only the account used to encrypt the directory can decrypt it.</summary>
  4673. <exception cref="T:System.ArgumentException"/>
  4674. <exception cref="T:System.ArgumentNullException"/>
  4675. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4676. <exception cref="T:System.IO.IOException"/>
  4677. <exception cref="T:System.NotSupportedException"/>
  4678. <exception cref="T:System.UnauthorizedAccessException"/>
  4679. <param name="path">A path that describes a directory to encrypt.</param>
  4680. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4681. </member>
  4682. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Encrypt(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4683. <summary>[AlphaFS] Encrypts a directory so that only the account used to encrypt the directory can decrypt it.</summary>
  4684. <exception cref="T:System.ArgumentException"/>
  4685. <exception cref="T:System.ArgumentNullException"/>
  4686. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4687. <exception cref="T:System.IO.IOException"/>
  4688. <exception cref="T:System.NotSupportedException"/>
  4689. <exception cref="T:System.UnauthorizedAccessException"/>
  4690. <param name="path">A path that describes a directory to encrypt.</param>
  4691. <param name="recursive"><see langword="true"/> to encrypt the directory recursively. <see langword="false"/> only encrypt the directory.</param>
  4692. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4693. </member>
  4694. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Encrypt(System.String)">
  4695. <summary>[AlphaFS] Encrypts a directory so that only the account used to encrypt the directory can decrypt it.</summary>
  4696. <exception cref="T:System.ArgumentException"/>
  4697. <exception cref="T:System.ArgumentNullException"/>
  4698. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4699. <exception cref="T:System.IO.IOException"/>
  4700. <exception cref="T:System.NotSupportedException"/>
  4701. <exception cref="T:System.UnauthorizedAccessException"/>
  4702. <param name="path">A path that describes a directory to encrypt.</param>
  4703. </member>
  4704. <member name="M:Alphaleonis.Win32.Filesystem.Directory.Encrypt(System.String,System.Boolean)">
  4705. <summary>[AlphaFS] Encrypts a directory so that only the account used to encrypt the directory can decrypt it.</summary>
  4706. <exception cref="T:System.ArgumentException"/>
  4707. <exception cref="T:System.ArgumentNullException"/>
  4708. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4709. <exception cref="T:System.IO.IOException"/>
  4710. <exception cref="T:System.NotSupportedException"/>
  4711. <exception cref="T:System.UnauthorizedAccessException"/>
  4712. <param name="path">A path that describes a directory to encrypt.</param>
  4713. <param name="recursive"><see langword="true"/> to encrypt the directory recursively. <see langword="false"/> only encrypt the directory.</param>
  4714. </member>
  4715. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableEncryption(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4716. <summary>[AlphaFS] Disables encryption of the specified directory and the files in it.
  4717. <para>This method only creates/modifies the file "Desktop.ini" in the root of <paramref name="path"/> and disables encryption by writing: "Disable=1"</para>
  4718. <para>This method does not affect encryption of files and subdirectories below the indicated directory.</para>
  4719. </summary>
  4720. <param name="path">The name of the directory for which to disable encryption.</param>
  4721. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4722. </member>
  4723. <member name="M:Alphaleonis.Win32.Filesystem.Directory.DisableEncryption(System.String)">
  4724. <summary>[AlphaFS] Disables encryption of the specified directory and the files in it.
  4725. <para>This method only creates/modifies the file "Desktop.ini" in the root of <paramref name="path"/> and disables encryption by writing: "Disable=1"</para>
  4726. <para>This method does not affect encryption of files and subdirectories below the indicated directory.</para>
  4727. </summary>
  4728. <param name="path">The name of the directory for which to disable encryption.</param>
  4729. </member>
  4730. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableEncryption(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4731. <summary>[AlphaFS] Enables encryption of the specified directory and the files in it.
  4732. <para>This method only creates/modifies the file "Desktop.ini" in the root of <paramref name="path"/> and enables encryption by writing: "Disable=0"</para>
  4733. <para>This method does not affect encryption of files and subdirectories below the indicated directory.</para>
  4734. </summary>
  4735. <param name="path">The name of the directory for which to enable encryption.</param>
  4736. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4737. </member>
  4738. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableEncryption(System.String)">
  4739. <summary>[AlphaFS] Enables encryption of the specified directory and the files in it.
  4740. <para>This method only creates/modifies the file "Desktop.ini" in the root of <paramref name="path"/> and enables encryption by writing: "Disable=0"</para>
  4741. <para>This method does not affect encryption of files and subdirectories below the indicated directory.</para>
  4742. </summary>
  4743. <param name="path">The name of the directory for which to enable encryption.</param>
  4744. </member>
  4745. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnableDisableEncryptionCore(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4746. <summary>Enables/disables encryption of the specified directory and the files in it.
  4747. <para>This method only creates/modifies the file "Desktop.ini" in the root of <paramref name="path"/> and enables/disables encryption by writing: "Disable=0" or "Disable=1".</para>
  4748. <para>This method does not affect encryption of files and subdirectories below the indicated directory.</para>
  4749. </summary>
  4750. <param name="path">The name of the directory for which to enable encryption.</param>
  4751. <param name="enable"><see langword="true"/> enabled encryption, <see langword="false"/> disables encryption.</param>
  4752. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4753. </member>
  4754. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EncryptDecryptDirectoryCore(System.String,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4755. <summary>Decrypts/encrypts a directory recursively so that only the account used to encrypt the directory can decrypt it.</summary>
  4756. <exception cref="T:System.ArgumentException"/>
  4757. <exception cref="T:System.ArgumentNullException"/>
  4758. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4759. <exception cref="T:System.IO.IOException"/>
  4760. <exception cref="T:System.NotSupportedException"/>
  4761. <exception cref="T:System.UnauthorizedAccessException"/>
  4762. <param name="path">A path that describes a directory to encrypt.</param>
  4763. <param name="encrypt"><see langword="true"/> encrypt, <see langword="false"/> decrypt.</param>
  4764. <param name="recursive"><see langword="true"/> to decrypt the directory recursively. <see langword="false"/> only decrypt files and directories in the root of <paramref name="path"/>.</param>
  4765. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4766. </member>
  4767. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfo(System.String)">
  4768. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in <see cref="F:System.IO.FileShare.ReadWrite"/> mode.</summary>
  4769. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4770. <param name="path">A path to a directory from which to retrieve information.</param>
  4771. </member>
  4772. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4773. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in <see cref="F:System.IO.FileShare.ReadWrite"/> mode.</summary>
  4774. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4775. <param name="path">A path to a directory from which to retrieve information.</param>
  4776. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4777. </member>
  4778. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfo(System.String,System.IO.FileShare)">
  4779. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in specified <see cref="T:System.IO.FileShare"/> mode.</summary>
  4780. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4781. <param name="path">A path to a directory from which to retrieve information.</param>
  4782. <param name="shareMode">The <see cref="T:System.IO.FileShare"/> mode with which to open a handle to the directory.</param>
  4783. </member>
  4784. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfo(System.String,System.IO.FileShare,Alphaleonis.Win32.Filesystem.PathFormat)">
  4785. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in specified <see cref="T:System.IO.FileShare"/> mode.</summary>
  4786. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4787. <param name="path">A path to a directory from which to retrieve information.</param>
  4788. <param name="shareMode">The <see cref="T:System.IO.FileShare"/> mode with which to open a handle to the directory.</param>
  4789. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4790. </member>
  4791. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfo(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  4792. <summary>[AlphaFS] Retrieves information about files in the directory handle specified.</summary>
  4793. <returns>An IEnumerable of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4794. <param name="handle">An open handle to the directory from which to retrieve information.</param>
  4795. </member>
  4796. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4797. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in <see cref="F:System.IO.FileShare.ReadWrite"/> mode.</summary>
  4798. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4799. <param name="transaction">The transaction.</param>
  4800. <param name="path">A path to a directory from which to retrieve information.</param>
  4801. </member>
  4802. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4803. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in <see cref="F:System.IO.FileShare.ReadWrite"/> mode.</summary>
  4804. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4805. <param name="transaction">The transaction.</param>
  4806. <param name="path">A path to a directory from which to retrieve information.</param>
  4807. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4808. </member>
  4809. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileShare)">
  4810. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in specified <see cref="T:System.IO.FileShare"/> mode.</summary>
  4811. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4812. <param name="transaction">The transaction.</param>
  4813. <param name="path">A path to a directory from which to retrieve information.</param>
  4814. <param name="shareMode">The <see cref="T:System.IO.FileShare"/> mode with which to open a handle to the directory.</param>
  4815. </member>
  4816. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileShare,Alphaleonis.Win32.Filesystem.PathFormat)">
  4817. <summary>[AlphaFS] Retrieves information about files in the directory specified by <paramref name="path"/> in specified <see cref="T:System.IO.FileShare"/> mode.</summary>
  4818. <returns>An enumeration of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4819. <param name="transaction">The transaction.</param>
  4820. <param name="path">A path to a directory from which to retrieve information.</param>
  4821. <param name="shareMode">The <see cref="T:System.IO.FileShare"/> mode with which to open a handle to the directory.</param>
  4822. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4823. </member>
  4824. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateFileIdBothDirectoryInfoCore(Alphaleonis.Win32.Filesystem.KernelTransaction,Microsoft.Win32.SafeHandles.SafeFileHandle,System.String,System.IO.FileShare,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  4825. <summary>Returns an enumerable collection of information about files in the directory handle specified.</summary>
  4826. <returns>An IEnumerable of <see cref="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo"/> records for each file system entry in the specified diretory.</returns>
  4827. <remarks>
  4828. <para>Either use <paramref name="path"/> or <paramref name="safeHandle"/>, not both.</para>
  4829. <para>
  4830. The number of files that are returned for each call to GetFileInformationByHandleEx depends on the size of the buffer that is passed to the function.
  4831. Any subsequent calls to GetFileInformationByHandleEx on the same handle will resume the enumeration operation after the last file is returned.
  4832. </para>
  4833. </remarks>
  4834. <param name="transaction">The transaction.</param>
  4835. <param name="safeHandle">An open handle to the directory from which to retrieve information.</param>
  4836. <param name="path">A path to the directory.</param>
  4837. <param name="shareMode">The <see cref="T:System.IO.FileShare"/> mode with which to open a handle to the directory.</param>
  4838. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as ACLs protected directories or non-accessible reparse points.</param>
  4839. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4840. </member>
  4841. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetProperties(System.String)">
  4842. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4843. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4844. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4845. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4846. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4847. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4848. </summary>
  4849. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4850. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4851. <exception cref="T:System.ArgumentException"/>
  4852. <exception cref="T:System.ArgumentNullException"/>
  4853. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4854. <exception cref="T:System.IO.IOException"/>
  4855. <exception cref="T:System.NotSupportedException"/>
  4856. <exception cref="T:System.UnauthorizedAccessException"/>
  4857. <param name="path">The target directory.</param>
  4858. </member>
  4859. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetProperties(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4860. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4861. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4862. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4863. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4864. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4865. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4866. </summary>
  4867. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4868. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4869. <exception cref="T:System.ArgumentException"/>
  4870. <exception cref="T:System.ArgumentNullException"/>
  4871. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4872. <exception cref="T:System.IO.IOException"/>
  4873. <exception cref="T:System.NotSupportedException"/>
  4874. <exception cref="T:System.UnauthorizedAccessException"/>
  4875. <param name="path">The target directory.</param>
  4876. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4877. </member>
  4878. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetProperties(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4879. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4880. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4881. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4882. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4883. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4884. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4885. </summary>
  4886. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4887. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4888. <exception cref="T:System.ArgumentException"/>
  4889. <exception cref="T:System.ArgumentNullException"/>
  4890. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4891. <exception cref="T:System.IO.IOException"/>
  4892. <exception cref="T:System.NotSupportedException"/>
  4893. <exception cref="T:System.UnauthorizedAccessException"/>
  4894. <param name="path">The target directory.</param>
  4895. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4896. </member>
  4897. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetProperties(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4898. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4899. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4900. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4901. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4902. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4903. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4904. </summary>
  4905. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4906. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4907. <exception cref="T:System.ArgumentException"/>
  4908. <exception cref="T:System.ArgumentNullException"/>
  4909. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4910. <exception cref="T:System.IO.IOException"/>
  4911. <exception cref="T:System.NotSupportedException"/>
  4912. <exception cref="T:System.UnauthorizedAccessException"/>
  4913. <param name="path">The target directory.</param>
  4914. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4915. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4916. </member>
  4917. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetPropertiesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  4918. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4919. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4920. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4921. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4922. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4923. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4924. </summary>
  4925. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4926. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4927. <exception cref="T:System.ArgumentException"/>
  4928. <exception cref="T:System.ArgumentNullException"/>
  4929. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4930. <exception cref="T:System.IO.IOException"/>
  4931. <exception cref="T:System.NotSupportedException"/>
  4932. <exception cref="T:System.UnauthorizedAccessException"/>
  4933. <param name="transaction">The transaction.</param>
  4934. <param name="path">The target directory.</param>
  4935. </member>
  4936. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetPropertiesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  4937. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4938. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4939. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4940. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4941. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4942. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4943. </summary>
  4944. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4945. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4946. <exception cref="T:System.ArgumentException"/>
  4947. <exception cref="T:System.ArgumentNullException"/>
  4948. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4949. <exception cref="T:System.IO.IOException"/>
  4950. <exception cref="T:System.NotSupportedException"/>
  4951. <exception cref="T:System.UnauthorizedAccessException"/>
  4952. <param name="transaction">The transaction.</param>
  4953. <param name="path">The target directory.</param>
  4954. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4955. </member>
  4956. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetPropertiesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  4957. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4958. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4959. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4960. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4961. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4962. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4963. </summary>
  4964. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4965. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4966. <exception cref="T:System.ArgumentException"/>
  4967. <exception cref="T:System.ArgumentNullException"/>
  4968. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4969. <exception cref="T:System.IO.IOException"/>
  4970. <exception cref="T:System.NotSupportedException"/>
  4971. <exception cref="T:System.UnauthorizedAccessException"/>
  4972. <param name="transaction">The transaction.</param>
  4973. <param name="path">The target directory.</param>
  4974. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4975. </member>
  4976. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetPropertiesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4977. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4978. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  4979. <para><b>Total:</b> is the total number of enumerated objects.</para>
  4980. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  4981. <para><b>Size:</b> is the total size of enumerated objects.</para>
  4982. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  4983. </summary>
  4984. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  4985. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  4986. <exception cref="T:System.ArgumentException"/>
  4987. <exception cref="T:System.ArgumentNullException"/>
  4988. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  4989. <exception cref="T:System.IO.IOException"/>
  4990. <exception cref="T:System.NotSupportedException"/>
  4991. <exception cref="T:System.UnauthorizedAccessException"/>
  4992. <param name="transaction">The transaction.</param>
  4993. <param name="path">The target directory.</param>
  4994. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  4995. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  4996. </member>
  4997. <member name="M:Alphaleonis.Win32.Filesystem.Directory.GetPropertiesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  4998. <summary>[AlphaFS] Gets the properties of the particular directory without following any symbolic links or mount points.
  4999. <para>Properties include aggregated info from <see cref="T:System.IO.FileAttributes"/> of each encountered file system object, plus additional ones: Total, File, Size and Error.</para>
  5000. <para><b>Total:</b> is the total number of enumerated objects.</para>
  5001. <para><b>File:</b> is the total number of files. File is considered when object is neither <see cref="F:System.IO.FileAttributes.Directory"/> nor <see cref="F:System.IO.FileAttributes.ReparsePoint"/>.</para>
  5002. <para><b>Size:</b> is the total size of enumerated objects.</para>
  5003. <para><b>Error:</b> is the total number of errors encountered during enumeration.</para>
  5004. </summary>
  5005. <returns>A dictionary mapping the keys mentioned above to their respective aggregated values.</returns>
  5006. <remarks><b>Directory:</b> is an object which has <see cref="F:System.IO.FileAttributes.Directory"/> attribute without <see cref="F:System.IO.FileAttributes.ReparsePoint"/> one.</remarks>
  5007. <exception cref="T:System.ArgumentException"/>
  5008. <exception cref="T:System.ArgumentNullException"/>
  5009. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5010. <exception cref="T:System.IO.IOException"/>
  5011. <exception cref="T:System.NotSupportedException"/>
  5012. <exception cref="T:System.UnauthorizedAccessException"/>
  5013. <param name="transaction">The transaction.</param>
  5014. <param name="path">The target directory.</param>
  5015. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5016. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5017. </member>
  5018. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateAlternateDataStreams(System.String)">
  5019. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified directory.</summary>
  5020. <param name="path">The path to the directory to enumerate streams of.</param>
  5021. <returns>The streams of type :$DATA in the specified directory.</returns>
  5022. </member>
  5023. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateAlternateDataStreams(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  5024. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified directory.</summary>
  5025. <param name="path">The path to the directory to enumerate streams of.</param>
  5026. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5027. <returns>The streams of type :$DATA in the specified directory.</returns>
  5028. </member>
  5029. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateAlternateDataStreamsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  5030. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified directory.</summary>
  5031. <param name="transaction">The transaction.</param>
  5032. <param name="path">The path to the directory to enumerate streams of.</param>
  5033. <returns>The streams of type :$DATA in the specified directory.</returns>
  5034. </member>
  5035. <member name="M:Alphaleonis.Win32.Filesystem.Directory.EnumerateAlternateDataStreamsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  5036. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified directory.</summary>
  5037. <param name="transaction">The transaction.</param>
  5038. <param name="path">The path to the directory to enumerate streams of.</param>
  5039. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5040. <returns>The streams of type :$DATA in the specified directory.</returns>
  5041. </member>
  5042. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw(System.String,System.IO.Stream)">
  5043. <summary>[AlphaFS] Backs up (export) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5044. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5045. </summary>
  5046. <remarks>
  5047. <para>The directory being backed up is not decrypted; it is backed up in its encrypted state.</para>
  5048. <para>If the caller does not have access to the key for the file, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to export encrypted files. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5049. <para>To backup an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/> overloads and specify the directory to backup along with the destination stream of the backup data.</para>
  5050. <para>This function is intended for the backup of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted directories.</para>
  5051. <para>Note that this method does not back up the files inside the directory, only the directory entry itself.</para>
  5052. </remarks>
  5053. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5054. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5055. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/>
  5056. <param name="fileName">The name of the file to be backed up.</param>
  5057. <param name="outputStream">The destination stream to which the backup data will be written.</param>
  5058. </member>
  5059. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw(System.String,System.IO.Stream,Alphaleonis.Win32.Filesystem.PathFormat)">
  5060. <summary>[AlphaFS] Backs up (export) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5061. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5062. </summary>
  5063. <remarks>
  5064. <para>The directory being backed up is not decrypted; it is backed up in its encrypted state.</para>
  5065. <para>If the caller does not have access to the key for the file, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to export encrypted files. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5066. <para>To backup an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/> overloads and specify the directory to backup along with the destination stream of the backup data.</para>
  5067. <para>This function is intended for the backup of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted directories.</para>
  5068. <para>Note that this method does not back up the files inside the directory, only the directory entry itself.</para>
  5069. </remarks>
  5070. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5071. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5072. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/>
  5073. <param name="fileName">The name of the file to be backed up.</param>
  5074. <param name="outputStream">The destination stream to which the backup data will be written.</param>
  5075. <param name="pathFormat">The path format of the <paramref name="fileName"/> parameter.</param>
  5076. </member>
  5077. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw(System.IO.Stream,System.String)">
  5078. <summary>[AlphaFS] Restores (import) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5079. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5080. </summary>
  5081. <remarks>
  5082. <para>If the caller does not have access to the key for the directory, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted directories. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5083. <para>To restore an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/> overloads and specify the file to restore along with the destination stream of the restored data.</para>
  5084. <para>This function is intended for the restoration of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted files.</para>
  5085. </remarks>
  5086. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5087. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5088. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/>
  5089. <param name="inputStream">The stream to read previously backed up data from.</param>
  5090. <param name="destinationPath">The path of the destination directory to restore to.</param>
  5091. </member>
  5092. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw(System.IO.Stream,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  5093. <summary>[AlphaFS] Restores (import) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5094. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5095. </summary>
  5096. <remarks>
  5097. <para>If the caller does not have access to the key for the directory, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted directories. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5098. <para>To restore an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/> overloads and specify the file to restore along with the destination stream of the restored data.</para>
  5099. <para>This function is intended for the restoration of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted files.</para>
  5100. </remarks>
  5101. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5102. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5103. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/>
  5104. <param name="inputStream">The stream to read previously backed up data from.</param>
  5105. <param name="destinationPath">The path of the destination directory to restore to.</param>
  5106. <param name="pathFormat">The path format of the <paramref name="destinationPath"/> parameter.</param>
  5107. </member>
  5108. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw(System.IO.Stream,System.String,System.Boolean)">
  5109. <summary>[AlphaFS] Restores (import) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5110. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5111. </summary>
  5112. <remarks>
  5113. <para>If the caller does not have access to the key for the directory, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted directories. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5114. <para>To restore an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/> overloads and specify the file to restore along with the destination stream of the restored data.</para>
  5115. <para>This function is intended for the restoration of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted files.</para>
  5116. </remarks>
  5117. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5118. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5119. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/>
  5120. <param name="inputStream">The stream to read previously backed up data from.</param>
  5121. <param name="destinationPath">The path of the destination directory to restore to.</param>
  5122. <param name="overwriteHidden">If set to <see langword="true"/> a hidden directory will be overwritten on import.</param>
  5123. </member>
  5124. <member name="M:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw(System.IO.Stream,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  5125. <summary>[AlphaFS] Restores (import) encrypted directories. This is one of a group of Encrypted File System (EFS) functions that is
  5126. intended to implement backup and restore functionality, while maintaining files in their encrypted state.
  5127. </summary>
  5128. <remarks>
  5129. <para>If the caller does not have access to the key for the directory, the caller needs <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted directories. See <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.</para>
  5130. <para>To restore an encrypted directory call one of the <see cref="O:Alphaleonis.Win32.Filesystem.Directory.ImportEncryptedDirectoryRaw"/> overloads and specify the file to restore along with the destination stream of the restored data.</para>
  5131. <para>This function is intended for the restoration of only encrypted directories; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup of unencrypted files.</para>
  5132. </remarks>
  5133. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  5134. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  5135. <seealso cref="O:Alphaleonis.Win32.Filesystem.Directory.ExportEncryptedDirectoryRaw"/>
  5136. <param name="inputStream">The stream to read previously backed up data from.</param>
  5137. <param name="destinationPath">The path of the destination directory to restore to.</param>
  5138. <param name="overwriteHidden">If set to <see langword="true"/> a hidden directory will be overwritten on import.</param>
  5139. <param name="pathFormat">The path format of the <paramref name="destinationPath"/> parameter.</param>
  5140. </member>
  5141. <member name="T:Alphaleonis.Win32.Filesystem.DirectoryInfo">
  5142. <summary>Exposes instance methods for creating, moving, and enumerating through directories and subdirectories. This class cannot be inherited.</summary>
  5143. </member>
  5144. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.RefreshEntryInfo">
  5145. <summary>Refreshes the state of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> EntryInfo instance.</summary>
  5146. </member>
  5147. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Decrypt">
  5148. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  5149. <exception cref="T:System.ArgumentException"/>
  5150. <exception cref="T:System.ArgumentNullException"/>
  5151. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5152. <exception cref="T:System.IO.IOException"/>
  5153. <exception cref="T:System.NotSupportedException"/>
  5154. <exception cref="T:System.UnauthorizedAccessException"/>
  5155. </member>
  5156. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Decrypt(System.Boolean)">
  5157. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  5158. <exception cref="T:System.ArgumentException"/>
  5159. <exception cref="T:System.ArgumentNullException"/>
  5160. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5161. <exception cref="T:System.IO.IOException"/>
  5162. <exception cref="T:System.NotSupportedException"/>
  5163. <exception cref="T:System.UnauthorizedAccessException"/>
  5164. <param name="recursive"><see langword="true"/> to decrypt the directory recursively. <see langword="false"/> only decrypt files and directories in the root of the directory.</param>
  5165. </member>
  5166. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.DisableEncryption">
  5167. <summary>[AlphaFS] Disables encryption of the specified directory and the files in it. It does not affect encryption of subdirectories below the indicated directory.</summary>
  5168. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  5169. <remarks>This method will create/change the file "Desktop.ini" and wil set Encryption value: "Disable=0"</remarks>
  5170. </member>
  5171. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnableEncryption">
  5172. <summary>[AlphaFS] Enables encryption of the specified directory and the files in it. It does not affect encryption of subdirectories below the indicated directory.</summary>
  5173. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  5174. <remarks>This method will create/change the file "Desktop.ini" and wil set Encryption value: "Disable=1"</remarks>
  5175. </member>
  5176. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Encrypt">
  5177. <summary>[AlphaFS] Encrypts a directory so that only the account used to encrypt the directory can decrypt it.</summary>
  5178. <exception cref="T:System.ArgumentException"/>
  5179. <exception cref="T:System.ArgumentNullException"/>
  5180. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5181. <exception cref="T:System.IO.IOException"/>
  5182. <exception cref="T:System.NotSupportedException"/>
  5183. <exception cref="T:System.UnauthorizedAccessException"/>
  5184. </member>
  5185. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Encrypt(System.Boolean)">
  5186. <summary>[AlphaFS] Decrypts a directory that was encrypted by the current account using the Encrypt method.</summary>
  5187. <exception cref="T:System.ArgumentException"/>
  5188. <exception cref="T:System.ArgumentNullException"/>
  5189. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5190. <exception cref="T:System.IO.IOException"/>
  5191. <exception cref="T:System.NotSupportedException"/>
  5192. <exception cref="T:System.UnauthorizedAccessException"/>
  5193. <param name="recursive"><see langword="true"/> to encrypt the directory recursively. <see langword="false"/> only encrypt files and directories in the root of the directory.</param>
  5194. </member>
  5195. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.DeleteEmptySubdirectories">
  5196. <summary>[AlphaFS] Deletes empty subdirectories from the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance.</summary>
  5197. </member>
  5198. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.DeleteEmptySubdirectories(System.Boolean)">
  5199. <summary>[AlphaFS] Deletes empty subdirectories from the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance.</summary>
  5200. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  5201. </member>
  5202. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.DeleteEmptySubdirectories(System.Boolean,System.Boolean)">
  5203. <summary>[AlphaFS] Deletes empty subdirectories from the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance.</summary>
  5204. <param name="recursive"><see langword="true"/> deletes empty subdirectories from this directory and its subdirectories.</param>
  5205. <param name="ignoreReadOnly"><see langword="true"/> overrides read only <see cref="T:System.IO.FileAttributes"/> of empty directories.</param>
  5206. </member>
  5207. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Compress">
  5208. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  5209. <remarks>This will only compress the root items (non recursive).</remarks>
  5210. <exception cref="T:System.ArgumentException"/>
  5211. <exception cref="T:System.ArgumentNullException"/>
  5212. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5213. <exception cref="T:System.IO.IOException"/>
  5214. <exception cref="T:System.NotSupportedException"/>
  5215. <exception cref="T:System.UnauthorizedAccessException"/>
  5216. </member>
  5217. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Compress(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5218. <summary>[AlphaFS] Compresses a directory using NTFS compression.</summary>
  5219. <exception cref="T:System.ArgumentException"/>
  5220. <exception cref="T:System.ArgumentNullException"/>
  5221. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5222. <exception cref="T:System.IO.IOException"/>
  5223. <exception cref="T:System.NotSupportedException"/>
  5224. <exception cref="T:System.UnauthorizedAccessException"/>
  5225. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5226. </member>
  5227. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Decompress">
  5228. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  5229. <remarks>This will only decompress the root items (non recursive).</remarks>
  5230. <exception cref="T:System.ArgumentException"/>
  5231. <exception cref="T:System.ArgumentNullException"/>
  5232. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5233. <exception cref="T:System.IO.IOException"/>
  5234. <exception cref="T:System.NotSupportedException"/>
  5235. <exception cref="T:System.UnauthorizedAccessException"/>
  5236. </member>
  5237. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Decompress(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5238. <summary>[AlphaFS] Decompresses an NTFS compressed directory.</summary>
  5239. <exception cref="T:System.ArgumentException"/>
  5240. <exception cref="T:System.ArgumentNullException"/>
  5241. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5242. <exception cref="T:System.IO.IOException"/>
  5243. <exception cref="T:System.NotSupportedException"/>
  5244. <exception cref="T:System.UnauthorizedAccessException"/>
  5245. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5246. </member>
  5247. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.DisableCompression">
  5248. <summary>[AlphaFS] Disables compression of the specified directory and the files in it.</summary>
  5249. <remarks>
  5250. This method disables the directory-compression attribute. It will not decompress the current contents of the directory.
  5251. However, newly created files and directories will be uncompressed.
  5252. </remarks>
  5253. </member>
  5254. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnableCompression">
  5255. <summary>[AlphaFS] Enables compression of the specified directory and the files in it.</summary>
  5256. <remarks>
  5257. This method enables the directory-compression attribute. It will not compress the current contents of the directory.
  5258. However, newly created files and directories will be compressed.
  5259. </remarks>
  5260. </member>
  5261. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CountFileSystemObjects(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5262. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  5263. <returns>The counted number of file system objects.</returns>
  5264. <exception cref="T:System.ArgumentException"/>
  5265. <exception cref="T:System.ArgumentNullException"/>
  5266. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5267. <exception cref="T:System.IO.IOException"/>
  5268. <exception cref="T:System.NotSupportedException"/>
  5269. <exception cref="T:System.UnauthorizedAccessException"/>
  5270. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5271. </member>
  5272. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CountFileSystemObjects(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5273. <summary>[AlphaFS] Counts file system objects: files, folders or both) in a given directory.</summary>
  5274. <returns>The counted number of file system objects.</returns>
  5275. <exception cref="T:System.ArgumentException"/>
  5276. <exception cref="T:System.ArgumentNullException"/>
  5277. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5278. <exception cref="T:System.IO.IOException"/>
  5279. <exception cref="T:System.NotSupportedException"/>
  5280. <exception cref="T:System.UnauthorizedAccessException"/>
  5281. <param name="searchPattern">
  5282. The search string to match against the names of directories in path.
  5283. This parameter can contain a combination of valid literal path and wildcard
  5284. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5285. </param>
  5286. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5287. </member>
  5288. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String)">
  5289. <summary>[AlphaFS] Copies a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path.
  5290. <remarks>
  5291. <para>Use this method to prevent overwriting of an existing directory by default.</para>
  5292. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5293. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5294. </remarks>
  5295. </summary>
  5296. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance if the directory was completely copied.</returns>
  5297. <exception cref="T:System.ArgumentException"/>
  5298. <exception cref="T:System.ArgumentNullException"/>
  5299. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5300. <exception cref="T:System.IO.IOException"/>
  5301. <exception cref="T:System.NotSupportedException"/>
  5302. <exception cref="T:System.UnauthorizedAccessException"/>
  5303. <param name="destinationPath">The destination directory path.</param>
  5304. </member>
  5305. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  5306. <summary>[AlphaFS] Copies a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path.
  5307. <remarks>
  5308. <para>Use this method to prevent overwriting of an existing directory by default.</para>
  5309. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5310. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5311. </remarks>
  5312. </summary>
  5313. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance if the directory was completely copied.</returns>
  5314. <exception cref="T:System.ArgumentException"/>
  5315. <exception cref="T:System.ArgumentNullException"/>
  5316. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5317. <exception cref="T:System.IO.IOException"/>
  5318. <exception cref="T:System.NotSupportedException"/>
  5319. <exception cref="T:System.UnauthorizedAccessException"/>
  5320. <param name="destinationPath">The destination directory path.</param>
  5321. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5322. </member>
  5323. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  5324. <summary>[AlphaFS] Copies an existing directory to a new directory, allowing the overwriting of an existing directory, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  5325. <remarks>
  5326. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  5327. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5328. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5329. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5330. </remarks>
  5331. </summary>
  5332. <returns>
  5333. <para>Returns a new directory, or an overwrite of an existing directory if <paramref name="copyOptions"/> is not <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.FailIfExists"/>.</para>
  5334. <para>If the directory exists and <paramref name="copyOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.FailIfExists"/>, an <see cref="T:System.IO.IOException"/> is thrown.</para>
  5335. </returns>
  5336. <exception cref="T:System.ArgumentException"/>
  5337. <exception cref="T:System.ArgumentNullException"/>
  5338. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5339. <exception cref="T:System.IO.IOException"/>
  5340. <exception cref="T:System.NotSupportedException"/>
  5341. <exception cref="T:System.UnauthorizedAccessException"/>
  5342. <param name="destinationPath">The destination directory path.</param>
  5343. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  5344. </member>
  5345. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  5346. <summary>[AlphaFS] Copies an existing directory to a new directory, allowing the overwriting of an existing directory, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  5347. <remarks>
  5348. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  5349. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5350. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5351. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5352. </remarks>
  5353. </summary>
  5354. <returns>
  5355. <para>Returns a new directory, or an overwrite of an existing directory if <paramref name="copyOptions"/> is not <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.FailIfExists"/>.</para>
  5356. <para>If the directory exists and <paramref name="copyOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.FailIfExists"/>, an <see cref="T:System.IO.IOException"/> is thrown.</para>
  5357. </returns>
  5358. <exception cref="T:System.ArgumentException"/>
  5359. <exception cref="T:System.ArgumentNullException"/>
  5360. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5361. <exception cref="T:System.IO.IOException"/>
  5362. <exception cref="T:System.NotSupportedException"/>
  5363. <exception cref="T:System.UnauthorizedAccessException"/>
  5364. <param name="destinationPath">The destination directory path.</param>
  5365. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  5366. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5367. </member>
  5368. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  5369. <summary>[AlphaFS] Copies an existing directory to a new directory, allowing the overwriting of an existing directory, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  5370. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  5371. <remarks>
  5372. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  5373. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5374. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5375. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5376. </remarks>
  5377. </summary>
  5378. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  5379. <exception cref="T:System.ArgumentException"/>
  5380. <exception cref="T:System.ArgumentNullException"/>
  5381. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5382. <exception cref="T:System.IO.IOException"/>
  5383. <exception cref="T:System.NotSupportedException"/>
  5384. <exception cref="T:System.UnauthorizedAccessException"/>
  5385. <param name="destinationPath">The destination directory path.</param>
  5386. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  5387. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  5388. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  5389. </member>
  5390. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  5391. <summary>[AlphaFS] Copies an existing directory to a new directory, allowing the overwriting of an existing directory, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  5392. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  5393. <remarks>
  5394. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  5395. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5396. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5397. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5398. </remarks>
  5399. </summary>
  5400. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  5401. <exception cref="T:System.ArgumentException"/>
  5402. <exception cref="T:System.ArgumentNullException"/>
  5403. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5404. <exception cref="T:System.IO.IOException"/>
  5405. <exception cref="T:System.NotSupportedException"/>
  5406. <exception cref="T:System.UnauthorizedAccessException"/>
  5407. <param name="destinationPath">The destination directory path.</param>
  5408. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the directory is to be copied. This parameter can be <see langword="null"/>.</param>
  5409. <param name="progressHandler">A callback function that is called each time another portion of the directory has been copied. This parameter can be <see langword="null"/>.</param>
  5410. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  5411. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5412. </member>
  5413. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String)">
  5414. <summary>Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path.
  5415. <remarks>
  5416. <para>Use this method to prevent overwriting of an existing directory by default.</para>
  5417. <para>This method does not work across disk volumes.</para>
  5418. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5419. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5420. </remarks>
  5421. </summary>
  5422. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  5423. <exception cref="T:System.ArgumentException"/>
  5424. <exception cref="T:System.ArgumentNullException"/>
  5425. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5426. <exception cref="T:System.IO.IOException"/>
  5427. <exception cref="T:System.NotSupportedException"/>
  5428. <exception cref="T:System.UnauthorizedAccessException"/>
  5429. <param name="destinationPath">
  5430. <para>The name and path to which to move this directory.</para>
  5431. <para>The destination cannot be another disk volume or a directory with the identical name.</para>
  5432. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5433. </param>
  5434. </member>
  5435. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  5436. <summary>Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path.
  5437. <remarks>
  5438. <para>Use this method to prevent overwriting of an existing directory by default.</para>
  5439. <para>This method does not work across disk volumes.</para>
  5440. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5441. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5442. </remarks>
  5443. </summary>
  5444. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance if the directory was completely moved.</returns>
  5445. <exception cref="T:System.ArgumentException"/>
  5446. <exception cref="T:System.ArgumentNullException"/>
  5447. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5448. <exception cref="T:System.IO.IOException"/>
  5449. <exception cref="T:System.NotSupportedException"/>
  5450. <exception cref="T:System.UnauthorizedAccessException"/>
  5451. <param name="destinationPath">
  5452. <para>The name and path to which to move this directory.</para>
  5453. <para>The destination cannot be another disk volume or a directory with the identical name.</para>
  5454. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5455. </param>
  5456. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5457. </member>
  5458. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  5459. <summary>[AlphaFS] Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  5460. <remarks>
  5461. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5462. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  5463. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5464. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5465. </remarks>
  5466. </summary>
  5467. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance if the directory was completely moved.</returns>
  5468. <exception cref="T:System.ArgumentException"/>
  5469. <exception cref="T:System.ArgumentNullException"/>
  5470. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5471. <exception cref="T:System.IO.IOException"/>
  5472. <exception cref="T:System.NotSupportedException"/>
  5473. <exception cref="T:System.UnauthorizedAccessException"/>
  5474. <param name="destinationPath">
  5475. <para>The name and path to which to move this directory.</para>
  5476. <para>The destination cannot be another disk volume unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>, or a directory with the identical name.</para>
  5477. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5478. </param>
  5479. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  5480. </member>
  5481. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  5482. <summary>[AlphaFS] Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  5483. <remarks>
  5484. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5485. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  5486. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5487. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5488. </remarks>
  5489. </summary>
  5490. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance if the directory was completely moved.</returns>
  5491. <exception cref="T:System.ArgumentException"/>
  5492. <exception cref="T:System.ArgumentNullException"/>
  5493. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5494. <exception cref="T:System.IO.IOException"/>
  5495. <exception cref="T:System.NotSupportedException"/>
  5496. <exception cref="T:System.UnauthorizedAccessException"/>
  5497. <param name="destinationPath">
  5498. <para>The name and path to which to move this directory.</para>
  5499. <para>The destination cannot be another disk volume unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>, or a directory with the identical name.</para>
  5500. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5501. </param>
  5502. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  5503. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5504. </member>
  5505. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  5506. <summary>[AlphaFS] Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  5507. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  5508. <remarks>
  5509. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5510. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  5511. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5512. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5513. </remarks>
  5514. </summary>
  5515. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  5516. <exception cref="T:System.ArgumentException"/>
  5517. <exception cref="T:System.ArgumentNullException"/>
  5518. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5519. <exception cref="T:System.IO.IOException"/>
  5520. <exception cref="T:System.NotSupportedException"/>
  5521. <exception cref="T:System.UnauthorizedAccessException"/>
  5522. <param name="destinationPath">
  5523. <para>The name and path to which to move this directory.</para>
  5524. <para>The destination cannot be another disk volume unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>, or a directory with the identical name.</para>
  5525. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5526. </param>
  5527. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  5528. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  5529. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  5530. </member>
  5531. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  5532. <summary>[AlphaFS] Moves a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance and its contents to a new path, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  5533. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  5534. <remarks>
  5535. <para>Use this method to allow or prevent overwriting of an existing directory.</para>
  5536. <para>This method does not work across disk volumes unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  5537. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  5538. <para>If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  5539. </remarks>
  5540. </summary>
  5541. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  5542. <exception cref="T:System.ArgumentException"/>
  5543. <exception cref="T:System.ArgumentNullException"/>
  5544. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5545. <exception cref="T:System.IO.IOException"/>
  5546. <exception cref="T:System.NotSupportedException"/>
  5547. <exception cref="T:System.UnauthorizedAccessException"/>
  5548. <param name="destinationPath">
  5549. <para>The name and path to which to move this directory.</para>
  5550. <para>The destination cannot be another disk volume unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>, or a directory with the identical name.</para>
  5551. <para>It can be an existing directory to which you want to add this directory as a subdirectory.</para>
  5552. </param>
  5553. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  5554. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  5555. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  5556. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5557. </member>
  5558. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CopyToMoveToCore(System.String,System.Nullable{Alphaleonis.Win32.Filesystem.CopyOptions},System.Nullable{Alphaleonis.Win32.Filesystem.MoveOptions},Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,System.String@,Alphaleonis.Win32.Filesystem.PathFormat)">
  5559. <summary>Copy/move a Non-/Transacted file or directory including its children to a new location,
  5560. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> or <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified, and the possibility of notifying the application of its progress through a callback function.
  5561. <remarks>
  5562. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  5563. <para>You cannot use the Move method to overwrite an existing file, unless <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.ReplaceExisting"/>.</para>
  5564. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an IOException.</para>
  5565. </remarks>
  5566. </summary>
  5567. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy or Move action.</returns>
  5568. <exception cref="T:System.ArgumentException"/>
  5569. <exception cref="T:System.ArgumentNullException"/>
  5570. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5571. <exception cref="T:System.IO.IOException"/>
  5572. <exception cref="T:System.NotSupportedException"/>
  5573. <exception cref="T:System.UnauthorizedAccessException"/>
  5574. <param name="destinationPath">The destination directory path.</param>
  5575. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  5576. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  5577. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  5578. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  5579. <param name="longFullPath">Returns the retrieved long full path.</param>
  5580. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  5581. </member>
  5582. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.ToString">
  5583. <summary>Returns the original path that was passed by the user.</summary>
  5584. <returns>A string that represents this object.</returns>
  5585. </member>
  5586. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.SetAccessControl(System.Security.AccessControl.DirectorySecurity)">
  5587. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the directory described by the current DirectoryInfo object.</summary>
  5588. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  5589. </member>
  5590. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.SetAccessControl(System.Security.AccessControl.DirectorySecurity,System.Security.AccessControl.AccessControlSections)">
  5591. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the directory described by the current DirectoryInfo object.</summary>
  5592. <param name="directorySecurity">A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  5593. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  5594. </member>
  5595. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Refresh">
  5596. <summary>Refreshes the state of the object.</summary>
  5597. </member>
  5598. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFileSystemInfos">
  5599. <summary>Returns an array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> entries representing all the files and subdirectories in a directory.</summary>
  5600. <returns>An array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> entries.</returns>
  5601. <remarks>
  5602. For subdirectories, the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> objects returned by this method can be cast to the derived class <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.
  5603. Use the <see cref="T:System.IO.FileAttributes"/> value returned by the <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Attributes"/> property to determine whether the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> represents a file or a directory.
  5604. </remarks>
  5605. <remarks>
  5606. If there are no files or directories in the DirectoryInfo, this method returns an empty array. This method is not recursive.
  5607. For subdirectories, the FileSystemInfo objects returned by this method can be cast to the derived class DirectoryInfo.
  5608. Use the FileAttributes value returned by the Attributes property to determine whether the FileSystemInfo represents a file or a directory.
  5609. </remarks>
  5610. <exception cref="T:System.ArgumentException"/>
  5611. <exception cref="T:System.ArgumentNullException"/>
  5612. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5613. <exception cref="T:System.IO.IOException"/>
  5614. <exception cref="T:System.NotSupportedException"/>
  5615. <exception cref="T:System.UnauthorizedAccessException"/>
  5616. </member>
  5617. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFileSystemInfos(System.String)">
  5618. <summary>Retrieves an array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> objects representing the files and subdirectories that match the specified search criteria.</summary>
  5619. <param name="searchPattern">
  5620. The search string to match against the names of directories in path.
  5621. This parameter can contain a combination of valid literal path and wildcard
  5622. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5623. </param>
  5624. <returns>An array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> entries.</returns>
  5625. <remarks>
  5626. For subdirectories, the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> objects returned by this method can be cast to the derived class <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.
  5627. Use the <see cref="T:System.IO.FileAttributes"/> value returned by the <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Attributes"/> property to determine whether the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> represents a file or a directory.
  5628. </remarks>
  5629. <remarks>
  5630. If there are no files or directories in the DirectoryInfo, this method returns an empty array. This method is not recursive.
  5631. For subdirectories, the FileSystemInfo objects returned by this method can be cast to the derived class DirectoryInfo.
  5632. Use the FileAttributes value returned by the Attributes property to determine whether the FileSystemInfo represents a file or a directory.
  5633. </remarks>
  5634. <exception cref="T:System.ArgumentException"/>
  5635. <exception cref="T:System.ArgumentNullException"/>
  5636. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5637. <exception cref="T:System.IO.IOException"/>
  5638. <exception cref="T:System.NotSupportedException"/>
  5639. <exception cref="T:System.UnauthorizedAccessException"/>
  5640. </member>
  5641. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFileSystemInfos(System.String,System.IO.SearchOption)">
  5642. <summary>Retrieves an array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> objects representing the files and subdirectories that match the specified search criteria.</summary>
  5643. <param name="searchPattern">
  5644. The search string to match against the names of directories in path.
  5645. This parameter can contain a combination of valid literal path and wildcard
  5646. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5647. </param>
  5648. <param name="searchOption">
  5649. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5650. should include only the current directory or should include all subdirectories.
  5651. </param>
  5652. <returns>An array of strongly typed <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> entries.</returns>
  5653. <remarks>
  5654. For subdirectories, the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> objects returned by this method can be cast to the derived class <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.
  5655. Use the <see cref="T:System.IO.FileAttributes"/> value returned by the <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Attributes"/> property to determine whether the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> represents a file or a directory.
  5656. </remarks>
  5657. <remarks>
  5658. If there are no files or directories in the DirectoryInfo, this method returns an empty array. This method is not recursive.
  5659. For subdirectories, the FileSystemInfo objects returned by this method can be cast to the derived class DirectoryInfo.
  5660. Use the FileAttributes value returned by the Attributes property to determine whether the FileSystemInfo represents a file or a directory.
  5661. </remarks>
  5662. <exception cref="T:System.ArgumentException"/>
  5663. <exception cref="T:System.ArgumentNullException"/>
  5664. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5665. <exception cref="T:System.IO.IOException"/>
  5666. <exception cref="T:System.NotSupportedException"/>
  5667. <exception cref="T:System.UnauthorizedAccessException"/>
  5668. </member>
  5669. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFiles">
  5670. <summary>Returns a file list from the current directory.</summary>
  5671. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>.</returns>
  5672. <remarks>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</remarks>
  5673. <remarks>If there are no files in the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>, this method returns an empty array.</remarks>
  5674. <remarks>
  5675. The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  5676. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  5677. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  5678. </remarks>
  5679. <exception cref="T:System.ArgumentException"/>
  5680. <exception cref="T:System.ArgumentNullException"/>
  5681. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5682. <exception cref="T:System.IO.IOException"/>
  5683. <exception cref="T:System.NotSupportedException"/>
  5684. <exception cref="T:System.UnauthorizedAccessException"/>
  5685. </member>
  5686. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFiles(System.String)">
  5687. <summary>Returns a file list from the current directory matching the given search pattern.</summary>
  5688. <param name="searchPattern">
  5689. The search string to match against the names of directories in path.
  5690. This parameter can contain a combination of valid literal path and wildcard
  5691. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5692. </param>
  5693. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>.</returns>
  5694. <remarks>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</remarks>
  5695. <remarks>If there are no files in the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>, this method returns an empty array.</remarks>
  5696. <remarks>
  5697. The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  5698. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  5699. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  5700. </remarks>
  5701. <exception cref="T:System.ArgumentException"/>
  5702. <exception cref="T:System.ArgumentNullException"/>
  5703. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5704. <exception cref="T:System.IO.IOException"/>
  5705. <exception cref="T:System.NotSupportedException"/>
  5706. <exception cref="T:System.UnauthorizedAccessException"/>
  5707. </member>
  5708. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetFiles(System.String,System.IO.SearchOption)">
  5709. <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>
  5710. <param name="searchPattern">
  5711. The search string to match against the names of directories in path.
  5712. This parameter can contain a combination of valid literal path and wildcard
  5713. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5714. </param>
  5715. <param name="searchOption">
  5716. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5717. should include only the current directory or should include all subdirectories.
  5718. </param>
  5719. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>.</returns>
  5720. <remarks>The order of the returned file names is not guaranteed; use the Sort() method if a specific sort order is required.</remarks>
  5721. <remarks>If there are no files in the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>, this method returns an empty array.</remarks>
  5722. <remarks>
  5723. The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names
  5724. before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array.
  5725. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
  5726. </remarks>
  5727. <exception cref="T:System.ArgumentException"/>
  5728. <exception cref="T:System.ArgumentNullException"/>
  5729. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5730. <exception cref="T:System.IO.IOException"/>
  5731. <exception cref="T:System.NotSupportedException"/>
  5732. <exception cref="T:System.UnauthorizedAccessException"/>
  5733. </member>
  5734. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetDirectories">
  5735. <summary>Returns the subdirectories of the current directory.</summary>
  5736. <returns>An array of <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> objects.</returns>
  5737. <remarks>If there are no subdirectories, this method returns an empty array. This method is not recursive.</remarks>
  5738. <remarks>
  5739. The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  5740. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  5741. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  5742. </remarks>
  5743. <exception cref="T:System.ArgumentException"/>
  5744. <exception cref="T:System.ArgumentNullException"/>
  5745. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5746. <exception cref="T:System.IO.IOException"/>
  5747. <exception cref="T:System.NotSupportedException"/>
  5748. <exception cref="T:System.UnauthorizedAccessException"/>
  5749. </member>
  5750. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetDirectories(System.String)">
  5751. <summary>Returns an array of directories in the current <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> matching the given search criteria.</summary>
  5752. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> matching <paramref name="searchPattern"/>.</returns>
  5753. <remarks>
  5754. The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  5755. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  5756. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  5757. </remarks>
  5758. <exception cref="T:System.ArgumentException"/>
  5759. <exception cref="T:System.ArgumentNullException"/>
  5760. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5761. <exception cref="T:System.IO.IOException"/>
  5762. <exception cref="T:System.NotSupportedException"/>
  5763. <exception cref="T:System.UnauthorizedAccessException"/>
  5764. <param name="searchPattern">
  5765. The search string to match against the names of directories in path.
  5766. This parameter can contain a combination of valid literal path and wildcard
  5767. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5768. </param>
  5769. </member>
  5770. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetDirectories(System.String,System.IO.SearchOption)">
  5771. <summary>Returns an array of directories in the current <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> matching the given search criteria and using a value to determine whether to search subdirectories.</summary>
  5772. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> matching <paramref name="searchPattern"/>.</returns>
  5773. <remarks>If there are no subdirectories, or no subdirectories match the searchPattern parameter, this method returns an empty array.</remarks>
  5774. <remarks>
  5775. The EnumerateDirectories and GetDirectories methods differ as follows: When you use EnumerateDirectories, you can start enumerating the collection of names
  5776. before the whole collection is returned; when you use GetDirectories, you must wait for the whole array of names to be returned before you can access the array.
  5777. Therefore, when you are working with many files and directories, EnumerateDirectories can be more efficient.
  5778. </remarks>
  5779. <exception cref="T:System.ArgumentException"/>
  5780. <exception cref="T:System.ArgumentNullException"/>
  5781. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5782. <exception cref="T:System.IO.IOException"/>
  5783. <exception cref="T:System.NotSupportedException"/>
  5784. <exception cref="T:System.UnauthorizedAccessException"/>
  5785. <param name="searchPattern">
  5786. The search string to match against the names of directories in path.
  5787. This parameter can contain a combination of valid literal path and wildcard
  5788. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5789. </param>
  5790. <param name="searchOption">
  5791. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5792. should include only the current directory or should include all subdirectories.
  5793. </param>
  5794. </member>
  5795. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetAccessControl">
  5796. <summary>Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control list (ACL) entries for the directory described by the current DirectoryInfo object.</summary>
  5797. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the directory.</returns>
  5798. </member>
  5799. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.GetAccessControl(System.Security.AccessControl.AccessControlSections)">
  5800. <summary>Gets a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the specified type of access control list (ACL) entries for the directory described by the current <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> object.</summary>
  5801. <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  5802. <returns>A <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that encapsulates the access control rules for the file described by the path parameter.</returns>
  5803. </member>
  5804. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFileSystemInfos">
  5805. <summary>Returns an enumerable collection of file system information in the current directory.</summary>
  5806. <returns>An enumerable collection of file system information in the current directory. </returns>
  5807. <exception cref="T:System.ArgumentException"/>
  5808. <exception cref="T:System.ArgumentNullException"/>
  5809. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5810. <exception cref="T:System.IO.IOException"/>
  5811. <exception cref="T:System.NotSupportedException"/>
  5812. <exception cref="T:System.UnauthorizedAccessException"/>
  5813. </member>
  5814. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFileSystemInfos(System.String)">
  5815. <summary>Returns an enumerable collection of file system information that matches a specified search pattern.</summary>
  5816. <returns>An enumerable collection of file system information objects that matches <paramref name="searchPattern"/>.</returns>
  5817. <exception cref="T:System.ArgumentException"/>
  5818. <exception cref="T:System.ArgumentNullException"/>
  5819. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5820. <exception cref="T:System.IO.IOException"/>
  5821. <exception cref="T:System.NotSupportedException"/>
  5822. <exception cref="T:System.UnauthorizedAccessException"/>
  5823. <param name="searchPattern">
  5824. The search string to match against the names of directories in path.
  5825. This parameter can contain a combination of valid literal path and wildcard
  5826. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5827. </param>
  5828. </member>
  5829. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFileSystemInfos(System.String,System.IO.SearchOption)">
  5830. <summary>Returns an enumerable collection of file system information that matches a specified search pattern and search subdirectory option.</summary>
  5831. <returns>An enumerable collection of file system information objects that matches <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  5832. <exception cref="T:System.ArgumentException"/>
  5833. <exception cref="T:System.ArgumentNullException"/>
  5834. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5835. <exception cref="T:System.IO.IOException"/>
  5836. <exception cref="T:System.NotSupportedException"/>
  5837. <exception cref="T:System.UnauthorizedAccessException"/>
  5838. <param name="searchPattern">
  5839. The search string to match against the names of directories in path.
  5840. This parameter can contain a combination of valid literal path and wildcard
  5841. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5842. </param>
  5843. <param name="searchOption">
  5844. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5845. should include only the current directory or should include all subdirectories.
  5846. </param>
  5847. </member>
  5848. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFileSystemInfos(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5849. <summary>[AlphaFS] Returns an enumerable collection of file system information in the current directory.</summary>
  5850. <returns>An enumerable collection of file system information in the current directory. </returns>
  5851. <exception cref="T:System.ArgumentException"/>
  5852. <exception cref="T:System.ArgumentNullException"/>
  5853. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5854. <exception cref="T:System.IO.IOException"/>
  5855. <exception cref="T:System.NotSupportedException"/>
  5856. <exception cref="T:System.UnauthorizedAccessException"/>
  5857. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5858. </member>
  5859. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFileSystemInfos(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5860. <summary>[AlphaFS] Returns an enumerable collection of file system information that matches a specified search pattern.</summary>
  5861. <returns>An enumerable collection of file system information objects that matches <paramref name="searchPattern"/>.</returns>
  5862. <exception cref="T:System.ArgumentException"/>
  5863. <exception cref="T:System.ArgumentNullException"/>
  5864. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5865. <exception cref="T:System.IO.IOException"/>
  5866. <exception cref="T:System.NotSupportedException"/>
  5867. <exception cref="T:System.UnauthorizedAccessException"/>
  5868. <param name="searchPattern">
  5869. The search string to match against the names of directories in path.
  5870. This parameter can contain a combination of valid literal path and wildcard
  5871. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5872. </param>
  5873. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5874. </member>
  5875. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFiles">
  5876. <summary>Returns an enumerable collection of file information in the current directory.</summary>
  5877. <returns>An enumerable collection of the files in the current directory.</returns>
  5878. <exception cref="T:System.ArgumentException"/>
  5879. <exception cref="T:System.ArgumentNullException"/>
  5880. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5881. <exception cref="T:System.IO.IOException"/>
  5882. <exception cref="T:System.NotSupportedException"/>
  5883. <exception cref="T:System.UnauthorizedAccessException"/>
  5884. </member>
  5885. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFiles(System.String)">
  5886. <summary>Returns an enumerable collection of file information that matches a search pattern.</summary>
  5887. <returns>An enumerable collection of files that matches <paramref name="searchPattern"/>.</returns>
  5888. <exception cref="T:System.ArgumentException"/>
  5889. <exception cref="T:System.ArgumentNullException"/>
  5890. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5891. <exception cref="T:System.IO.IOException"/>
  5892. <exception cref="T:System.NotSupportedException"/>
  5893. <exception cref="T:System.UnauthorizedAccessException"/>
  5894. <param name="searchPattern">
  5895. The search string to match against the names of directories in path.
  5896. This parameter can contain a combination of valid literal path and wildcard
  5897. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5898. </param>
  5899. </member>
  5900. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFiles(System.String,System.IO.SearchOption)">
  5901. <summary>Returns an enumerable collection of file information that matches a specified search pattern and search subdirectory option.</summary>
  5902. <returns>An enumerable collection of files that matches <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  5903. <exception cref="T:System.ArgumentException"/>
  5904. <exception cref="T:System.ArgumentNullException"/>
  5905. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5906. <exception cref="T:System.IO.IOException"/>
  5907. <exception cref="T:System.NotSupportedException"/>
  5908. <exception cref="T:System.UnauthorizedAccessException"/>
  5909. <param name="searchPattern">
  5910. The search string to match against the names of directories in path.
  5911. This parameter can contain a combination of valid literal path and wildcard
  5912. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5913. </param>
  5914. <param name="searchOption">
  5915. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5916. should include only the current directory or should include all subdirectories.
  5917. </param>
  5918. </member>
  5919. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFiles(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5920. <summary>Returns an enumerable collection of file information in the current directory.</summary>
  5921. <returns>An enumerable collection of the files in the current directory.</returns>
  5922. <exception cref="T:System.ArgumentException"/>
  5923. <exception cref="T:System.ArgumentNullException"/>
  5924. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5925. <exception cref="T:System.IO.IOException"/>
  5926. <exception cref="T:System.NotSupportedException"/>
  5927. <exception cref="T:System.UnauthorizedAccessException"/>
  5928. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5929. </member>
  5930. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateFiles(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5931. <summary>Returns an enumerable collection of file information that matches a search pattern.</summary>
  5932. <returns>An enumerable collection of files that matches <paramref name="searchPattern"/>.</returns>
  5933. <exception cref="T:System.ArgumentException"/>
  5934. <exception cref="T:System.ArgumentNullException"/>
  5935. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5936. <exception cref="T:System.IO.IOException"/>
  5937. <exception cref="T:System.NotSupportedException"/>
  5938. <exception cref="T:System.UnauthorizedAccessException"/>
  5939. <param name="searchPattern">
  5940. The search string to match against the names of directories in path.
  5941. This parameter can contain a combination of valid literal path and wildcard
  5942. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5943. </param>
  5944. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  5945. </member>
  5946. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateDirectories">
  5947. <summary>Returns an enumerable collection of directory information in the current directory.</summary>
  5948. <returns>An enumerable collection of directories in the current directory.</returns>
  5949. <exception cref="T:System.ArgumentException"/>
  5950. <exception cref="T:System.ArgumentNullException"/>
  5951. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5952. <exception cref="T:System.IO.IOException"/>
  5953. <exception cref="T:System.NotSupportedException"/>
  5954. <exception cref="T:System.UnauthorizedAccessException"/>
  5955. </member>
  5956. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateDirectories(System.String)">
  5957. <summary>Returns an enumerable collection of directory information that matches a specified search pattern.</summary>
  5958. <returns>An enumerable collection of directories that matches <paramref name="searchPattern"/>.</returns>
  5959. <exception cref="T:System.ArgumentException"/>
  5960. <exception cref="T:System.ArgumentNullException"/>
  5961. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5962. <exception cref="T:System.IO.IOException"/>
  5963. <exception cref="T:System.NotSupportedException"/>
  5964. <exception cref="T:System.UnauthorizedAccessException"/>
  5965. <param name="searchPattern">
  5966. The search string to match against the names of directories in path.
  5967. This parameter can contain a combination of valid literal path and wildcard
  5968. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5969. </param>
  5970. </member>
  5971. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateDirectories(System.String,System.IO.SearchOption)">
  5972. <summary>Returns an enumerable collection of directory information that matches a specified search pattern and search subdirectory option.</summary>
  5973. <returns>An enumerable collection of directories that matches <paramref name="searchPattern"/> and <paramref name="searchOption"/>.</returns>
  5974. <exception cref="T:System.ArgumentException"/>
  5975. <exception cref="T:System.ArgumentNullException"/>
  5976. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5977. <exception cref="T:System.IO.IOException"/>
  5978. <exception cref="T:System.NotSupportedException"/>
  5979. <exception cref="T:System.UnauthorizedAccessException"/>
  5980. <param name="searchPattern">
  5981. The search string to match against the names of directories in path.
  5982. This parameter can contain a combination of valid literal path and wildcard
  5983. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  5984. </param>
  5985. <param name="searchOption">
  5986. One of the <see cref="T:System.IO.SearchOption"/> enumeration values that specifies whether the <paramref name="searchOption"/>
  5987. should include only the current directory or should include all subdirectories.
  5988. </param>
  5989. </member>
  5990. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateDirectories(Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  5991. <summary>[AlphaFS] Returns an enumerable collection of directory information in the current directory.</summary>
  5992. <returns>An enumerable collection of directories in the current directory.</returns>
  5993. <exception cref="T:System.ArgumentException"/>
  5994. <exception cref="T:System.ArgumentNullException"/>
  5995. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  5996. <exception cref="T:System.IO.IOException"/>
  5997. <exception cref="T:System.NotSupportedException"/>
  5998. <exception cref="T:System.UnauthorizedAccessException"/>
  5999. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  6000. </member>
  6001. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateDirectories(System.String,Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions)">
  6002. <summary>Returns an enumerable collection of directory information that matches a specified search pattern.</summary>
  6003. <returns>An enumerable collection of directories that matches <paramref name="searchPattern"/>.</returns>
  6004. <exception cref="T:System.ArgumentException"/>
  6005. <exception cref="T:System.ArgumentNullException"/>
  6006. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  6007. <exception cref="T:System.IO.IOException"/>
  6008. <exception cref="T:System.NotSupportedException"/>
  6009. <exception cref="T:System.UnauthorizedAccessException"/>
  6010. <param name="searchPattern">
  6011. The search string to match against the names of directories in path.
  6012. This parameter can contain a combination of valid literal path and wildcard
  6013. (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>) characters, but does not support regular expressions.
  6014. </param>
  6015. <param name="options"><see cref="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions"/> flags that specify how the directory is to be enumerated.</param>
  6016. </member>
  6017. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Delete">
  6018. <summary>Deletes this <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> if it is empty.</summary>
  6019. <exception cref="T:System.ArgumentException"/>
  6020. <exception cref="T:System.ArgumentNullException"/>
  6021. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  6022. <exception cref="T:System.IO.IOException"/>
  6023. <exception cref="T:System.NotSupportedException"/>
  6024. <exception cref="T:System.UnauthorizedAccessException"/>
  6025. </member>
  6026. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Delete(System.Boolean)">
  6027. <summary>Deletes this instance of a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>, specifying whether to delete subdirectories and files.</summary>
  6028. <remarks>
  6029. <para>If the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> has no files or subdirectories, this method deletes the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> even if recursive is <see langword="false"/>.</para>
  6030. <para>Attempting to delete a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> that is not empty when recursive is false throws an <see cref="T:System.IO.IOException"/>.</para>
  6031. </remarks>
  6032. <exception cref="T:System.ArgumentException"/>
  6033. <exception cref="T:System.ArgumentNullException"/>
  6034. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  6035. <exception cref="T:System.IO.IOException"/>
  6036. <exception cref="T:System.NotSupportedException"/>
  6037. <exception cref="T:System.UnauthorizedAccessException"/>
  6038. <param name="recursive"><see langword="true"/> to delete this directory, its subdirectories, and all files; otherwise, <see langword="false"/>.</param>
  6039. </member>
  6040. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Delete(System.Boolean,System.Boolean)">
  6041. <summary>[AlphaFS] Deletes this instance of a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>, specifying whether to delete files and subdirectories.</summary>
  6042. <remarks>
  6043. <para>If the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> has no files or subdirectories, this method deletes the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> even if recursive is <see langword="false"/>.</para>
  6044. <para>Attempting to delete a <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> that is not empty when recursive is false throws an <see cref="T:System.IO.IOException"/>.</para>
  6045. </remarks>
  6046. <exception cref="T:System.ArgumentException"/>
  6047. <exception cref="T:System.ArgumentNullException"/>
  6048. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  6049. <exception cref="T:System.IO.IOException"/>
  6050. <exception cref="T:System.NotSupportedException"/>
  6051. <exception cref="T:System.UnauthorizedAccessException"/>
  6052. <param name="recursive"><see langword="true"/> to delete this directory, its subdirectories, and all files; otherwise, <see langword="false"/>.</param>
  6053. <param name="ignoreReadOnly"><see langword="true"/> ignores read only attribute of files and directories.</param>
  6054. </member>
  6055. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String)">
  6056. <summary>Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6057. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6058. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6059. <remarks>
  6060. Any and all directories specified in path are created, unless some part of path is invalid.
  6061. The path parameter specifies a directory path, not a file path.
  6062. If the subdirectory already exists, this method does nothing.
  6063. </remarks>
  6064. </member>
  6065. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String,System.Security.AccessControl.DirectorySecurity)">
  6066. <summary>Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6067. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6068. <param name="directorySecurity">The <see cref="T:System.Security.AccessControl.DirectorySecurity"/> security to apply.</param>
  6069. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6070. <remarks>
  6071. Any and all directories specified in path are created, unless some part of path is invalid.
  6072. The path parameter specifies a directory path, not a file path.
  6073. If the subdirectory already exists, this method does nothing.
  6074. </remarks>
  6075. </member>
  6076. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String,System.Boolean)">
  6077. <summary>[AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6078. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6079. <remarks>
  6080. Any and all directories specified in path are created, unless some part of path is invalid.
  6081. The path parameter specifies a directory path, not a file path.
  6082. If the subdirectory already exists, this method does nothing.
  6083. </remarks>
  6084. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6085. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6086. </member>
  6087. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String,System.String,System.Boolean)">
  6088. <summary>[AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6089. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6090. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  6091. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6092. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6093. <remarks>
  6094. Any and all directories specified in path are created, unless some part of path is invalid.
  6095. The path parameter specifies a directory path, not a file path.
  6096. If the subdirectory already exists, this method does nothing.
  6097. </remarks>
  6098. </member>
  6099. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  6100. <summary>[AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6101. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6102. <param name="directorySecurity">The <see cref="T:System.Security.AccessControl.DirectorySecurity"/> security to apply.</param>
  6103. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6104. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6105. <remarks>
  6106. Any and all directories specified in path are created, unless some part of path is invalid.
  6107. The path parameter specifies a directory path, not a file path.
  6108. If the subdirectory already exists, this method does nothing.
  6109. </remarks>
  6110. </member>
  6111. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectory(System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  6112. <summary>[AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class.</summary>
  6113. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  6114. <param name="path">The specified path. This cannot be a different disk volume.</param>
  6115. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6116. <param name="directorySecurity">The <see cref="T:System.Security.AccessControl.DirectorySecurity"/> security to apply.</param>
  6117. <returns>The last directory specified in <paramref name="path"/>.</returns>
  6118. <remarks>
  6119. Any and all directories specified in path are created, unless some part of path is invalid.
  6120. The path parameter specifies a directory path, not a file path.
  6121. If the subdirectory already exists, this method does nothing.
  6122. </remarks>
  6123. </member>
  6124. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.CreateSubdirectoryCore(System.String,System.String,System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  6125. <summary>Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the DirectoryInfo class.</summary>
  6126. <returns>The last directory specified in path as an <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> object.</returns>
  6127. <remarks>
  6128. Any and all directories specified in path are created, unless some part of path is invalid.
  6129. The path parameter specifies a directory path, not a file path.
  6130. If the subdirectory already exists, this method does nothing.
  6131. </remarks>
  6132. <param name="path">The specified path. This cannot be a different disk volume or Universal Naming Convention (UNC) name.</param>
  6133. <param name="templatePath">The path of the directory to use as a template when creating the new directory.</param>
  6134. <param name="directorySecurity">The <see cref="T:System.Security.AccessControl.DirectorySecurity"/> security to apply.</param>
  6135. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6136. </member>
  6137. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Create">
  6138. <summary>Creates a directory.</summary>
  6139. <remarks>If the directory already exists, this method does nothing.</remarks>
  6140. </member>
  6141. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Create(System.Security.AccessControl.DirectorySecurity)">
  6142. <summary>Creates a directory using a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object.</summary>
  6143. <param name="directorySecurity">The access control to apply to the directory.</param>
  6144. <remarks>If the directory already exists, this method does nothing.</remarks>
  6145. </member>
  6146. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Create(System.Boolean)">
  6147. <summary>[AlphaFS] Creates a directory using a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object.</summary>
  6148. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6149. <remarks>If the directory already exists, this method does nothing.</remarks>
  6150. </member>
  6151. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.Create(System.Security.AccessControl.DirectorySecurity,System.Boolean)">
  6152. <summary>[AlphaFS] Creates a directory using a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object.</summary>
  6153. <param name="directorySecurity">The access control to apply to the directory.</param>
  6154. <param name="compress">When <see langword="true"/> compresses the directory.</param>
  6155. <remarks>If the directory already exists, this method does nothing.</remarks>
  6156. </member>
  6157. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.EnumerateAlternateDataStreams">
  6158. <summary>[AlphaFS] Returns an enumerable collection of <see cref="T:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo"/> instances for the directory.</summary>
  6159. <returns>An enumerable collection of <see cref="T:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo"/> instances for the directory.</returns>
  6160. </member>
  6161. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.#ctor(System.String)">
  6162. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class on the specified path.</summary>
  6163. <param name="path">The path on which to create the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.</param>
  6164. <remarks>
  6165. This constructor does not check if a directory exists. This constructor is a placeholder for a string that is used to access the disk in subsequent operations.
  6166. The path parameter can be a file name, including a file on a Universal Naming Convention (UNC) share.
  6167. </remarks>
  6168. </member>
  6169. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.#ctor(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  6170. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class on the specified path.</summary>
  6171. <param name="path">The path on which to create the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.</param>
  6172. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  6173. <remarks>This constructor does not check if a directory exists. This constructor is a placeholder for a string that is used to access the disk in subsequent operations.</remarks>
  6174. </member>
  6175. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,System.Boolean)">
  6176. <summary>[AlphaFS] Special internal implementation.</summary>
  6177. <param name="transaction">The transaction.</param>
  6178. <param name="fullPath">The full path on which to create the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.</param>
  6179. <param name="junk1">Not used.</param>
  6180. <param name="junk2">Not used.</param>
  6181. <remarks>This constructor does not check if a directory exists. This constructor is a placeholder for a string that is used to access the disk in subsequent operations.</remarks>
  6182. </member>
  6183. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  6184. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class on the specified path.</summary>
  6185. <param name="transaction">The transaction.</param>
  6186. <param name="path">The path on which to create the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.</param>
  6187. <remarks>This constructor does not check if a directory exists. This constructor is a placeholder for a string that is used to access the disk in subsequent operations.</remarks>
  6188. </member>
  6189. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryInfo.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  6190. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> class on the specified path.</summary>
  6191. <param name="transaction">The transaction.</param>
  6192. <param name="path">The path on which to create the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/>.</param>
  6193. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  6194. <remarks>This constructor does not check if a directory exists. This constructor is a placeholder for a string that is used to access the disk in subsequent operations.</remarks>
  6195. </member>
  6196. <member name="P:Alphaleonis.Win32.Filesystem.DirectoryInfo.Exists">
  6197. <summary>Gets a value indicating whether the directory exists.</summary>
  6198. <remarks>
  6199. <para>The <see cref="P:Alphaleonis.Win32.Filesystem.DirectoryInfo.Exists"/> property returns <see langword="false"/> if any error occurs while trying to determine if the
  6200. specified directory exists.</para>
  6201. <para>This can occur in situations that raise exceptions such as passing a directory name with invalid characters or too many
  6202. characters,</para>
  6203. <para>a failing or missing disk, or if the caller does not have permission to read the directory.</para>
  6204. </remarks>
  6205. <value><see langword="true"/> if the directory exists; otherwise, <see langword="false"/>.</value>
  6206. </member>
  6207. <member name="P:Alphaleonis.Win32.Filesystem.DirectoryInfo.Name">
  6208. <summary>Gets the name of this <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> instance.</summary>
  6209. <value>The directory name.</value>
  6210. <remarks>
  6211. <para>This Name property returns only the name of the directory, such as "Bin".</para>
  6212. <para>To get the full path, such as "c:\public\Bin", use the FullName property.</para>
  6213. </remarks>
  6214. </member>
  6215. <member name="P:Alphaleonis.Win32.Filesystem.DirectoryInfo.Parent">
  6216. <summary>Gets the parent directory of a specified subdirectory.</summary>
  6217. <value>The parent directory, or null if the path is null or if the file path denotes a root (such as "\", "C:", or * "\\server\share").</value>
  6218. </member>
  6219. <member name="P:Alphaleonis.Win32.Filesystem.DirectoryInfo.Root">
  6220. <summary>Gets the root portion of the directory.</summary>
  6221. <value>An object that represents the root of the directory.</value>
  6222. </member>
  6223. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode">
  6224. <summary>Indicates the operation to be performed when opening a file using the OpenEncryptedFileRaw.</summary>
  6225. </member>
  6226. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode.CreateForExport">
  6227. <summary>(0) Open the file for export (backup).</summary>
  6228. </member>
  6229. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode.CreateForImport">
  6230. <summary>(1) The file is being opened for import (restore).</summary>
  6231. </member>
  6232. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode.CreateForDir">
  6233. <summary>(2) Import (restore) a directory containing encrypted files. This must be combined with one of the previous two flags to indicate the operation.</summary>
  6234. </member>
  6235. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode.OverwriteHidden">
  6236. <summary>(4) Overwrite a hidden file on import.</summary>
  6237. </member>
  6238. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.STREAM_INFO_LEVELS">
  6239. <summary>Defines values that are used with the FindFirstStreamW function to specify the information level of the returned data.</summary>
  6240. <remarks>
  6241. <para>Minimum supported client: Windows Vista [desktop apps only]</para>
  6242. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  6243. </remarks>
  6244. </member>
  6245. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.STREAM_INFO_LEVELS.FindStreamInfoStandard">
  6246. <summary>The FindFirstStreamW function retrieves standard stream information. The data is returned in a <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_STREAM_DATA"/> structure.</summary>
  6247. </member>
  6248. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.STREAM_INFO_LEVELS.FindStreamInfoMaxInfoLevel">
  6249. <summary>Used to determine valid enumeration values. All supported enumeration values are less than FindStreamInfoMaxInfoLevel.</summary>
  6250. </member>
  6251. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags">
  6252. <summary>Specifies control options that filter the device information elements that are added to the device information set.</summary>
  6253. </member>
  6254. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags.Default">
  6255. <summary>DIGCF_DEFAULT
  6256. <para>Return only the device that is associated with the system default device interface, if one is set, for the specified device interface classes.</para>
  6257. </summary>
  6258. </member>
  6259. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags.Present">
  6260. <summary>DIGCF_PRESENT
  6261. <para>Return only devices that are currently present.</para>
  6262. </summary>
  6263. </member>
  6264. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags.AllClasses">
  6265. <summary>DIGCF_ALLCLASSES
  6266. <para>Return a list of installed devices for the specified device setup classes or device interface classes.</para>
  6267. </summary>
  6268. </member>
  6269. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags.Profile">
  6270. <summary>DIGCF_PROFILE
  6271. <para>Return only devices that are a part of the current hardware profile.</para>
  6272. </summary>
  6273. </member>
  6274. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags.DeviceInterface">
  6275. <summary>DIGCF_DEVICEINTERFACE
  6276. <para>
  6277. Return devices that support device interfaces for the specified device interface classes.
  6278. This flag must be set in the Flags parameter if the Enumerator parameter specifies a Device Instance ID.
  6279. </para>
  6280. </summary>
  6281. </member>
  6282. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FileInfoByHandleClass">
  6283. <summary>FILE_INFO_BY_HANDLE_CLASS
  6284. <para>Identifies the type of file information that GetFileInformationByHandleEx should retrieve or SetFileInformationByHandle should set.</para>
  6285. </summary>
  6286. </member>
  6287. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FileInfoByHandleClass.FileBasicInfo">
  6288. <summary>FILE_BASIC_INFO
  6289. <para>Minimal information for the file should be retrieved or set. Used for file handles.</para>
  6290. </summary>
  6291. </member>
  6292. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FileInfoByHandleClass.FileIdBothDirectoryInfo">
  6293. <summary>FILE_ID_BOTH_DIR_INFO
  6294. <para>Files in the specified directory should be retrieved. Used for directory handles.</para>
  6295. <para>Use only when calling GetFileInformationByHandleEx.</para>
  6296. <remarks>
  6297. <para>The number of files returned for each call to GetFileInformationByHandleEx</para>
  6298. <para>depends on the size of the buffer that is passed to the function.</para>
  6299. <para>Any subsequent calls to GetFileInformationByHandleEx on the same handle</para>
  6300. <para>will resume the enumeration operation after the last file is returned.</para>
  6301. </remarks>
  6302. </summary>
  6303. </member>
  6304. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags">
  6305. <summary>Additional flags that control the search.</summary>
  6306. </member>
  6307. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags.None">
  6308. <summary>No additional flags used.</summary>
  6309. </member>
  6310. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags.CaseSensitive">
  6311. <summary>Searches are case-sensitive.</summary>
  6312. </member>
  6313. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags.LargeFetch">
  6314. <summary>Uses a larger buffer for directory queries, which can increase performance of the find operation.</summary>
  6315. <remarks>This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6316. </member>
  6317. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS">
  6318. <summary>FINDEX_INFO_LEVELS Enumeration - Defines values that are used with the FindFirstFileEx function to specify the information level of the returned data.</summary>
  6319. <remarks>
  6320. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  6321. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  6322. </remarks>
  6323. </member>
  6324. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS.Standard">
  6325. <summary>A standard set of attribute is returned in a <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA"/> structure.</summary>
  6326. </member>
  6327. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS.Basic">
  6328. <summary>The FindFirstFileEx function does not query the short file name, improving overall enumeration speed.</summary>
  6329. <remarks>This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6330. </member>
  6331. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS">
  6332. <summary>FINDEX_SEARCH_OPS Enumeration - Defines values that are used with the FindFirstFileEx function to specify the type of filtering to perform.</summary>
  6333. <remarks>
  6334. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  6335. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  6336. </remarks>
  6337. </member>
  6338. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS.SearchNameMatch">
  6339. <summary>The search for a file that matches a specified file name.
  6340. <para>The lpSearchFilter parameter of FindFirstFileEx must be NULL when this search operation is used.</para>
  6341. </summary>
  6342. </member>
  6343. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS.SearchLimitToDirectories">
  6344. <summary>This is an advisory flag. If the file system supports directory filtering,
  6345. <para>the function searches for a file that matches the specified name and is also a directory.</para>
  6346. <para>If the file system does not support directory filtering, this flag is silently ignored.</para>
  6347. <para>&#160;</para>
  6348. <remarks>
  6349. <para>The lpSearchFilter parameter of the FindFirstFileEx function must be NULL when this search value is used.</para>
  6350. <para>If directory filtering is desired, this flag can be used on all file systems,</para>
  6351. <para>but because it is an advisory flag and only affects file systems that support it,</para>
  6352. <para>the application must examine the file attribute data stored in the lpFindFileData parameter</para>
  6353. <para>of the FindFirstFileEx function to determine whether the function has returned a handle to a directory.</para>
  6354. </remarks>
  6355. </summary>
  6356. </member>
  6357. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS.SearchLimitToDevices">
  6358. <summary>This filtering type is not available.</summary>
  6359. <remarks>For more information, see Device Interface Classes.</remarks>
  6360. </member>
  6361. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode">
  6362. <summary>Enum for struct ChangeErrorMode.</summary>
  6363. </member>
  6364. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode.SystemDefault">
  6365. <summary>Use the system default, which is to display all error dialog boxes.</summary>
  6366. </member>
  6367. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode.FailCriticalErrors">
  6368. <summary>The system does not display the critical-error-handler message box. Instead, the system sends the error to the calling process/thread.</summary>
  6369. </member>
  6370. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode.NoGpfaultErrorbox">
  6371. <summary>The system does not display the Windows Error Reporting dialog.</summary>
  6372. </member>
  6373. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode.NoAlignmentFaultExcept">
  6374. <summary>The system automatically fixes memory alignment faults and makes them invisible to the application. It does this for the calling process and any descendant processes. This feature is only supported by certain processor architectures.</summary>
  6375. </member>
  6376. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode.NoOpenFileErrorbox">
  6377. <summary>The system does not display a message box when it fails to find a file. Instead, the error is returned to the calling process/thread.</summary>
  6378. </member>
  6379. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum">
  6380. <summary>Flags for SetupDiGetDeviceRegistryProperty().</summary>
  6381. </member>
  6382. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.DeviceDescription">
  6383. <summary>SPDRP_DEVICEDESC
  6384. <para>Represents a description of a device instance.</para>
  6385. </summary>
  6386. </member>
  6387. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.HardwareId">
  6388. <summary>SPDRP_HARDWAREID
  6389. <para>Represents the list of hardware identifiers for a device instance.</para>
  6390. </summary>
  6391. </member>
  6392. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.CompatibleIds">
  6393. <summary>SPDRP_COMPATIBLEIDS
  6394. <para>Represents the list of compatible identifiers for a device instance.</para>
  6395. </summary>
  6396. </member>
  6397. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.Service">
  6398. <summary>SPDRP_CLASS
  6399. <para>Represents the name of the service that is installed for a device instance.</para>
  6400. </summary>
  6401. </member>
  6402. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.Class">
  6403. <summary>SPDRP_CLASS
  6404. <para>Represents the name of the device setup class that a device instance belongs to.</para>
  6405. </summary>
  6406. </member>
  6407. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.ClassGuid">
  6408. <summary>SPDRP_CLASSGUID
  6409. <para>Represents the <see cref="T:System.Guid"/> of the device setup class that a device instance belongs to.</para>
  6410. </summary>
  6411. </member>
  6412. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.Driver">
  6413. <summary>SPDRP_DRIVER
  6414. <para>Represents the registry entry name of the driver key for a device instance.</para>
  6415. </summary>
  6416. </member>
  6417. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.Manufacturer">
  6418. <summary>SPDRP_MFG
  6419. <para>Represents the name of the manufacturer of a device instance.</para>
  6420. </summary>
  6421. </member>
  6422. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.FriendlyName">
  6423. <summary>SPDRP_FRIENDLYNAME
  6424. <para>Represents the friendly name of a device instance.</para>
  6425. </summary>
  6426. </member>
  6427. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.LocationInformation">
  6428. <summary>SPDRP_LOCATION_INFORMATION
  6429. <para>Represents the bus-specific physical location of a device instance.</para>
  6430. </summary>
  6431. </member>
  6432. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.PhysicalDeviceObjectName">
  6433. <summary>SPDRP_PHYSICAL_DEVICE_LOCATION
  6434. <para>Encapsulates the physical device location information provided by a device's firmware to Windows.</para>
  6435. </summary>
  6436. </member>
  6437. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.EnumeratorName">
  6438. <summary>SPDRP_ENUMERATOR_NAME
  6439. <para>Represents the name of the enumerator for a device instance.</para>
  6440. </summary>
  6441. </member>
  6442. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.LocationPaths">
  6443. <summary>SPDRP_LOCATION_PATHS
  6444. <para>Represents the location of a device instance in the device tree.</para>
  6445. </summary>
  6446. </member>
  6447. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum.BaseContainerId">
  6448. <summary>SPDRP_BASE_CONTAINERID
  6449. <para>Represents the <see cref="T:System.Guid"/> value of the base container identifier (ID) .The Windows Plug and Play (PnP) manager assigns this value to the device node (devnode).</para>
  6450. </summary>
  6451. </member>
  6452. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes">
  6453. <summary>Volume Attributes used by the GetVolumeInfo() function.</summary>
  6454. </member>
  6455. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.None">
  6456. <summary>No VolumeInfo attributes.</summary>
  6457. </member>
  6458. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.CaseSensitiveSearch">
  6459. <summary>FILE_CASE_SENSITIVE_SEARCH
  6460. <para>The specified volume supports case-sensitive file names.</para>
  6461. </summary>
  6462. </member>
  6463. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.CasePreservedNames">
  6464. <summary>FILE_CASE_PRESERVED_NAMES
  6465. <para>The specified volume supports preserved case of file names when it places a name on disk.</para>
  6466. </summary>
  6467. </member>
  6468. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.UnicodeOnDisk">
  6469. <summary>FILE_UNICODE_ON_DISK
  6470. <para>The specified volume supports Unicode in file names as they appear on disk.</para>
  6471. </summary>
  6472. </member>
  6473. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.PersistentAcls">
  6474. <summary>FILE_PERSISTENT_ACLS
  6475. <para>
  6476. The specified volume preserves and enforces access control lists (ACL).
  6477. For example, the NTFS file system preserves and enforces ACLs, and the FAT file system does not.
  6478. </para>
  6479. </summary>
  6480. </member>
  6481. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.Compression">
  6482. <summary>FILE_FILE_COMPRESSION
  6483. <para>The specified volume supports file-based compression.</para>
  6484. </summary>
  6485. </member>
  6486. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.VolumeQuotas">
  6487. <summary>FILE_VOLUME_QUOTAS
  6488. <para>The specified volume supports disk quotas.</para>
  6489. </summary>
  6490. </member>
  6491. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsSparseFiles">
  6492. <summary>FILE_SUPPORTS_SPARSE_FILES
  6493. <para>The specified volume supports sparse files.</para>
  6494. </summary>
  6495. </member>
  6496. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsReparsePoints">
  6497. <summary>FILE_SUPPORTS_REPARSE_POINTS
  6498. <para>The specified volume supports re-parse points.</para>
  6499. </summary>
  6500. </member>
  6501. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsRemoteStorage">
  6502. <summary>(does not appear on MSDN)</summary>
  6503. </member>
  6504. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.VolumeIsCompressed">
  6505. <summary>FILE_VOLUME_IS_COMPRESSED
  6506. <para>The specified volume is a compressed volume, for example, a DoubleSpace volume.</para>
  6507. </summary>
  6508. </member>
  6509. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsObjectIds">
  6510. <summary>FILE_SUPPORTS_OBJECT_IDS
  6511. <para>The specified volume supports object identifiers.</para>
  6512. </summary>
  6513. </member>
  6514. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsEncryption">
  6515. <summary>FILE_SUPPORTS_ENCRYPTION
  6516. <para>The specified volume supports the Encrypted File System (EFS). For more information, see File Encryption.</para>
  6517. </summary>
  6518. </member>
  6519. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.NamedStreams">
  6520. <summary>FILE_NAMED_STREAMS
  6521. <para>The specified volume supports named streams.</para>
  6522. </summary>
  6523. </member>
  6524. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.ReadOnlyVolume">
  6525. <summary>FILE_READ_ONLY_VOLUME
  6526. <para>The specified volume is read-only.</para>
  6527. </summary>
  6528. </member>
  6529. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SequentialWriteOnce">
  6530. <summary>FILE_SEQUENTIAL_WRITE_ONCE
  6531. <para>The specified volume is read-only.</para>
  6532. </summary>
  6533. </member>
  6534. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsTransactions">
  6535. <summary>FILE_SUPPORTS_TRANSACTIONS
  6536. <para>The specified volume supports transactions.For more information, see About KTM.</para>
  6537. </summary>
  6538. </member>
  6539. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsHardLinks">
  6540. <summary>FILE_SUPPORTS_HARD_LINKS
  6541. <para>The specified volume supports hard links. For more information, see Hard Links and Junctions.</para>
  6542. </summary>
  6543. <remarks>Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6544. </member>
  6545. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsExtendedAttributes">
  6546. <summary>FILE_SUPPORTS_EXTENDED_ATTRIBUTES
  6547. <para>
  6548. The specified volume supports extended attributes. An extended attribute is a piece of application-specific metadata
  6549. that an application can associate with a file and is not part of the file's data.
  6550. </para>
  6551. </summary>
  6552. <remarks>Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6553. </member>
  6554. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsOpenByFileId">
  6555. <summary>FILE_SUPPORTS_OPEN_BY_FILE_ID
  6556. <para>The file system supports open by FileID. For more information, see FILE_ID_BOTH_DIR_INFO.</para>
  6557. </summary>
  6558. <remarks>Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6559. </member>
  6560. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes.SupportsUsnJournal">
  6561. <summary>FILE_SUPPORTS_USN_JOURNAL
  6562. <para>The specified volume supports update sequence number (USN) journals. For more information, see Change Journal Records.</para>
  6563. </summary>
  6564. <remarks>Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  6565. </member>
  6566. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileExInfoLevels">
  6567. <summary>Defines values that are used with the GetFileAttributesEx and GetFileAttributesTransacted functions to specify the information level of the returned data.</summary>
  6568. </member>
  6569. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileExInfoLevels.GetFileExInfoStandard">
  6570. <summary>The GetFileAttributesEx or GetFileAttributesTransacted function retrieves a standard set of attribute information. The data is returned in a WIN32_FILE_ATTRIBUTE_DATA structure.</summary>
  6571. </member>
  6572. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.OpenEncryptedFileRaw(System.String,Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawMode,Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle@)">
  6573. <summary>Opens an encrypted file in order to backup (export) or restore (import) the file.</summary>
  6574. <returns>If the function succeeds, it returns ERROR_SUCCESS.</returns>
  6575. <returns>If the function fails, it returns a nonzero error code defined in WinError.h. You can use FormatMessage with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic text description of the error.</returns>
  6576. <remarks>Minimum supported client: Windows XP Professional [desktop apps only]</remarks>
  6577. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  6578. <param name="lpFileName">The name of the file to be opened.</param>
  6579. <param name="ulFlags">The operation to be performed.</param>
  6580. <param name="pvContext">[out] The address of a context block that must be presented in subsequent calls to
  6581. ReadEncryptedFileRaw, WriteEncryptedFileRaw, or CloseEncryptedFileRaw.</param>
  6582. </member>
  6583. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CloseEncryptedFileRaw(System.IntPtr)">
  6584. <summary>Closes an encrypted file after a backup or restore operation, and frees associated system resources.</summary>
  6585. <remarks>Minimum supported client: Windows XP Professional [desktop apps only]</remarks>
  6586. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  6587. <param name="pvContext">A pointer to a system-defined context block. The OpenEncryptedFileRaw function returns the context block.</param>
  6588. </member>
  6589. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.ReadEncryptedFileRaw(Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawExportCallback,System.IntPtr,Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle)">
  6590. <summary>Backs up (export) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  6591. <returns>If the function succeeds, it returns ERROR_SUCCESS.</returns>
  6592. <returns>If the function fails, it returns a nonzero error code defined in WinError.h. You can use FormatMessage with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic text description of the error.</returns>
  6593. <remarks>Minimum supported client: Windows XP Professional [desktop apps only]</remarks>
  6594. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  6595. </member>
  6596. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.WriteEncryptedFileRaw(Alphaleonis.Win32.Filesystem.NativeMethods.EncryptedFileRawImportCallback,System.IntPtr,Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle)">
  6597. <summary>Restores (import) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  6598. <returns>If the function succeeds, it returns ERROR_SUCCESS.</returns>
  6599. <returns>If the function fails, it returns a nonzero error code defined in WinError.h. You can use FormatMessage with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic text description of the error.</returns>
  6600. <remarks>Minimum supported client: Windows XP Professional [desktop apps only]</remarks>
  6601. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  6602. </member>
  6603. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.AssocCreate(System.Guid,System.Guid@,Alphaleonis.Win32.Filesystem.NativeMethods.IQueryAssociations@)">
  6604. <summary>Returns a pointer to an IQueryAssociations object.</summary>
  6605. <returns>If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.</returns>
  6606. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6607. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6608. </member>
  6609. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.AssocQueryString(Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes,Alphaleonis.Win32.Filesystem.Shell32.AssociationString,System.String,System.String,System.Text.StringBuilder,System.UInt32@)">
  6610. <summary>Searches for and retrieves a file or protocol association-related string from the registry.</summary>
  6611. <returns>Return value Type: HRESULT. Returns a standard COM error value, including the following: S_OK, E_POINTER and S_FALSE.</returns>
  6612. <remarks>Minimum supported client: Windows 2000 Professional</remarks>
  6613. <remarks>Minimum supported server: Windows 2000 Server</remarks>
  6614. </member>
  6615. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.IQueryAssociations">
  6616. <summary>Exposes methods that simplify the process of retrieving information stored in the registry in association with defining a file type or protocol and associating it with an application.</summary>
  6617. </member>
  6618. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.IQueryAssociations.Init(Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes,System.String,System.IntPtr,System.IntPtr)">
  6619. <summary>Initializes the IQueryAssociations interface and sets the root key to the appropriate ProgID.</summary>
  6620. <returns>If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.</returns>
  6621. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6622. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6623. </member>
  6624. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.IQueryAssociations.GetString(Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes,Alphaleonis.Win32.Filesystem.Shell32.AssociationString,System.String,System.Text.StringBuilder,System.Int32@)">
  6625. <summary>Searches for and retrieves a file or protocol association-related string from the registry.</summary>
  6626. <returns>A standard COM error value, including the following: S_OK, E_POINTER, S_FALSE</returns>
  6627. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6628. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6629. </member>
  6630. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.PathFileExists(System.String)">
  6631. <summary>Determines whether a path to a file system object such as a file or folder is valid.</summary>
  6632. <returns><see langword="true"/> if the file exists; otherwise, <see langword="false"/>. Call GetLastError for extended error information.</returns>
  6633. <remarks>
  6634. This function tests the validity of the path.
  6635. A path specified by Universal Naming Convention (UNC) is limited to a file only; that is, \\server\share\file is permitted.
  6636. A network share path to a server or server share is not permitted; that is, \\server or \\server\share.
  6637. This function returns FALSE if a mounted remote drive is out of service.
  6638. </remarks>
  6639. <remarks>Minimum supported client: Windows 2000 Professional</remarks>
  6640. <remarks>Minimum supported server: Windows 2000 Server</remarks>
  6641. </member>
  6642. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.PathCreateFromUrl(System.String,System.Text.StringBuilder,System.UInt32@,System.UInt32)">
  6643. <summary>Converts a file URL to a Microsoft MS-DOS path.</summary>
  6644. <returns>Type: HRESULT
  6645. If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
  6646. </returns>
  6647. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6648. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6649. </member>
  6650. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.PathCreateFromUrlAlloc(System.String,System.Text.StringBuilder@,System.UInt32)">
  6651. <summary>Creates a path from a file URL.</summary>
  6652. <returns>Type: HRESULT
  6653. If this function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
  6654. </returns>
  6655. <remarks>Minimum supported client: Windows Vista [desktop apps only]</remarks>
  6656. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
  6657. </member>
  6658. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.UrlCreateFromPath(System.String,System.Text.StringBuilder,System.UInt32@,System.UInt32)">
  6659. <summary>Converts a Microsoft MS-DOS path to a canonicalized URL.</summary>
  6660. <returns>Type: HRESULT
  6661. Returns S_FALSE if pszPath is already in URL format. In this case, pszPath will simply be copied to pszUrl.
  6662. Otherwise, it returns S_OK if successful or a standard COM error value if not.
  6663. </returns>
  6664. <remarks>
  6665. UrlCreateFromPath does not support extended paths. These are paths that include the extended-length path prefix "\\?\".
  6666. </remarks>
  6667. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6668. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6669. </member>
  6670. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.UrlIs(System.String,Alphaleonis.Win32.Filesystem.Shell32.UrlType)">
  6671. <summary>Tests whether a URL is a specified type.</summary>
  6672. <returns>
  6673. Type: BOOL
  6674. For all but one of the URL types, UrlIs returns <see langword="true"/> if the URL is the specified type, <see langword="true"/> otherwise.
  6675. If UrlIs is set to <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsAppliable"/>, UrlIs will attempt to determine the URL scheme.
  6676. If the function is able to determine a scheme, it returns <see langword="true"/>, or <see langword="false"/>.
  6677. </returns>
  6678. <remarks>Minimum supported client: Windows 2000 Professional, Windows XP [desktop apps only]</remarks>
  6679. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6680. </member>
  6681. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DestroyIcon(System.IntPtr)">
  6682. <summary>Destroys an icon and frees any memory the icon occupied.</summary>
  6683. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  6684. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6685. </member>
  6686. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.ShGetFileInfo(System.String,System.IO.FileAttributes,Alphaleonis.Win32.Filesystem.Shell32.FileInfo@,System.UInt32,Alphaleonis.Win32.Filesystem.Shell32.FileAttributes)">
  6687. <summary>Retrieves information about an object in the file system, such as a file, folder, directory, or drive root.</summary>
  6688. <remarks>You should call this function from a background thread. Failure to do so could cause the UI to stop responding.</remarks>
  6689. <remarks>Minimum supported client: Windows 2000 Professional [desktop apps only]</remarks>
  6690. <remarks>Minimum supported server: Windows 2000 Server [desktop apps only]</remarks>
  6691. </member>
  6692. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateTransaction(Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Int32,System.String)">
  6693. <summary>
  6694. Creates a new transaction object.
  6695. </summary>
  6696. <remarks>
  6697. <para>Use the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CloseHandle(System.IntPtr)"/> function to close the transaction handle. If the last transaction handle is closed
  6698. beforea client calls the CommitTransaction function with the transaction handle, then KTM rolls back the transaction.</para>
  6699. <para>Minimum supported client: Windows Vista</para>
  6700. <para>Minimum supported server:Windows Server 2008</para>
  6701. </remarks>
  6702. <returns>
  6703. <para>If the function succeeds, the return value is a handle to the transaction.</para>
  6704. <para>If the function fails, the return value is INVALID_HANDLE_VALUE. To get extended error information, call the GetLastError
  6705. function.</para>
  6706. </returns>
  6707. </member>
  6708. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CommitTransaction(System.Runtime.InteropServices.SafeHandle)">
  6709. <summary>Requests that the specified transaction be committed.</summary>
  6710. <remarks>
  6711. <para>You can commit any transaction handle that has been opened or created using the TRANSACTION_COMMIT permission; any
  6712. application can commit a transaction, not just the creator.</para>
  6713. <para>This function can only be called if the transaction is still active, not prepared, pre-prepared, or rolled back.</para>
  6714. <para>Minimum supported client: Windows Vista</para>
  6715. <para>Minimum supported server:Windows Server 2008</para>
  6716. </remarks>
  6717. <returns>
  6718. <para>If the function succeeds, the return value is nonzero.</para>
  6719. <para>If the function fails, the return value is 0 (zero). To get extended error information, call the GetLastError function.</para>
  6720. </returns>
  6721. </member>
  6722. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.RollbackTransaction(System.Runtime.InteropServices.SafeHandle)">
  6723. <summary>
  6724. Requests that the specified transaction be rolled back. This function is synchronous.
  6725. </summary>
  6726. <returns>
  6727. <para>If the function succeeds, the return value is nonzero.</para>
  6728. <para>If the function fails, the return value is zero. To get extended error information, call the GetLastError function. </para>
  6729. </returns>
  6730. </member>
  6731. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CloseHandle(System.IntPtr)">
  6732. <summary>Closes an open object handle.</summary>
  6733. <remarks>
  6734. <para>The CloseHandle function closes handles to the following objects:</para>
  6735. <para>Access token, Communications device, Console input, Console screen buffer, Event, File, File mapping, I/O completion port,
  6736. Job, Mailslot, Memory resource notification, Mutex, Named pipe, Pipe, Process, Semaphore, Thread, Transaction, Waitable
  6737. timer.</para>
  6738. <para>SetLastError is set to <see langword="false"/>.</para>
  6739. <para>Minimum supported client: Windows 2000 Professional [desktop apps | Windows Store apps]</para>
  6740. <para>Minimum supported server: Windows 2000 Server [desktop apps | Windows Store apps]</para>
  6741. </remarks>
  6742. <returns>
  6743. <para>If the function succeeds, the return value is nonzero.</para>
  6744. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  6745. <para>If the application is running under a debugger, the function will throw an exception if it receives either a handle value
  6746. that is not valid or a pseudo-handle value.This can happen if you close a handle twice, or if you call CloseHandle on a handle
  6747. returned by the FindFirstFile function instead of calling the FindClose function.</para>
  6748. </returns>
  6749. </member>
  6750. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CopyFileEx(System.String,System.String,Alphaleonis.Win32.Filesystem.NativeMethods.NativeCopyMoveProgressRoutine,System.IntPtr,System.Boolean@,Alphaleonis.Win32.Filesystem.CopyOptions)">
  6751. <summary>
  6752. Copies an existing file to a new file, notifying the application of its progress through a callback function.
  6753. </summary>
  6754. <remarks>
  6755. <para>This function fails with ERROR_ACCESS_DENIED if the destination file already exists and has the FILE_ATTRIBUTE_HIDDEN or
  6756. FILE_ATTRIBUTE_READONLY attribute set.</para>
  6757. <para>This function preserves extended attributes, OLE structured storage, NTFS file system alternate data streams, security
  6758. resource attributes, and file attributes.</para>
  6759. <para>Windows 7, Windows Server 2008 R2, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP:
  6760. Security resource attributes (ATTRIBUTE_SECURITY_INFORMATION) for the existing file are not copied to the new file until
  6761. Windows 8 and Windows Server 2012.</para>
  6762. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  6763. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  6764. </remarks>
  6765. <param name="lpExistingFileName">Filename of the existing file.</param>
  6766. <param name="lpNewFileName">Filename of the new file.</param>
  6767. <param name="lpProgressRoutine">The progress routine.</param>
  6768. <param name="lpData">The data.</param>
  6769. <param name="pbCancel">[out] The pb cancel.</param>
  6770. <param name="dwCopyFlags">The copy flags.</param>
  6771. <returns>
  6772. <para>If the function succeeds, the return value is nonzero.</para>
  6773. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  6774. </returns>
  6775. </member>
  6776. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CopyFileTransacted(System.String,System.String,Alphaleonis.Win32.Filesystem.NativeMethods.NativeCopyMoveProgressRoutine,System.IntPtr,System.Boolean@,Alphaleonis.Win32.Filesystem.CopyOptions,System.Runtime.InteropServices.SafeHandle)">
  6777. <summary>
  6778. Copies an existing file to a new file as a transacted operation, notifying the application of its progress through a callback
  6779. function.
  6780. </summary>
  6781. <remarks>
  6782. <para>This function fails with ERROR_ACCESS_DENIED if the destination file already exists and has the FILE_ATTRIBUTE_HIDDEN or
  6783. FILE_ATTRIBUTE_READONLY attribute set.</para>
  6784. <para>This function preserves extended attributes, OLE structured storage, NTFS file system alternate data streams, security
  6785. resource attributes, and file attributes.</para>
  6786. <para>Windows 7, Windows Server 2008 R2, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP:
  6787. Security resource attributes (ATTRIBUTE_SECURITY_INFORMATION) for the existing file are not copied to the new file until
  6788. Windows 8 and Windows Server 2012.</para>
  6789. <para>Minimum supported client: Windows Vista [desktop apps only]</para>
  6790. <para>Minimum supported server: Windows Server 2008 [desktop apps only]</para>
  6791. </remarks>
  6792. <returns>
  6793. <para>If the function succeeds, the return value is nonzero.</para>
  6794. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  6795. </returns>
  6796. </member>
  6797. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFile(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr)">
  6798. <summary>
  6799. Creates or opens a file or I/O device. The most commonly used I/O devices are as follows: file, file stream, directory, physical
  6800. disk, volume, console buffer, tape drive, communications resource, mailslot, and pipe.
  6801. </summary>
  6802. <remarks>Minimum supported client: Windows XP.</remarks>
  6803. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  6804. <returns>
  6805. If the function succeeds, the return value is an open handle to the specified file, device, named pipe, or mail slot. If the
  6806. function fails, the return value is Win32Errors.ERROR_INVALID_HANDLE. To get extended error information, call GetLastError.
  6807. </returns>
  6808. </member>
  6809. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFileTransacted(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr,System.Runtime.InteropServices.SafeHandle,System.IntPtr,System.IntPtr)">
  6810. <summary>
  6811. Creates or opens a file or I/O device. The most commonly used I/O devices are as follows: file, file stream, directory, physical
  6812. disk, volume, console buffer, tape drive, communications resource, mailslot, and pipe.
  6813. </summary>
  6814. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  6815. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  6816. <returns>
  6817. If the function succeeds, the return value is an open handle to the specified file, device, named pipe, or mail slot. If the
  6818. function fails, the return value is Win32Errors.ERROR_INVALID_HANDLE". To get extended error information, call GetLastError.
  6819. </returns>
  6820. </member>
  6821. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFileMapping(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Runtime.InteropServices.SafeHandle,System.UInt32,System.UInt32,System.UInt32,System.String)">
  6822. <summary>Creates or opens a named or unnamed file mapping object for a specified file.</summary>
  6823. <remarks>Minimum supported client: Windows XP.</remarks>
  6824. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  6825. <returns>
  6826. If the function succeeds, the return value is a handle to the newly created file mapping object. If the function fails, the return
  6827. value is <see langword="null"/>.
  6828. </returns>
  6829. </member>
  6830. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateHardLink(System.String,System.String,System.IntPtr)">
  6831. <summary>
  6832. Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system, and only
  6833. for files, not directories.
  6834. </summary>
  6835. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  6836. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  6837. <returns>
  6838. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6839. information, call GetLastError.
  6840. </returns>
  6841. </member>
  6842. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateHardLinkTransacted(System.String,System.String,System.IntPtr,System.Runtime.InteropServices.SafeHandle)">
  6843. <summary>
  6844. Establishes a hard link between an existing file and a new file as a transacted operation. This function is only supported on the
  6845. NTFS file system, and only for files, not directories.
  6846. </summary>
  6847. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  6848. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  6849. <returns>
  6850. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6851. information, call GetLastError.
  6852. </returns>
  6853. </member>
  6854. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateSymbolicLink(System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget)">
  6855. <summary>Creates a symbolic link.</summary>
  6856. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  6857. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  6858. <remarks>
  6859. The unmanaged prototype contains a return directive because the CreateSymbolicLink API function returns BOOLEAN, a one-byte data type.
  6860. The default marshaling for bool is four bytes (to allow seamless integration with BOOL return values).
  6861. If you were to use the default marshaling for BOOLEAN values, it's likely that you will get erroneous results.
  6862. The return directive forces PInvoke to marshal just one byte of the return value.
  6863. Source: http://www.informit.com/guides/content.aspx?g=dotnet&amp;seqNum=762&amp;ns=16196
  6864. </remarks>
  6865. <returns>
  6866. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6867. information, call GetLastError.
  6868. </returns>
  6869. </member>
  6870. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateSymbolicLinkTransacted(System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget,System.Runtime.InteropServices.SafeHandle)">
  6871. <summary>Creates a symbolic link as a transacted operation.</summary>
  6872. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  6873. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  6874. <remarks>
  6875. The unmanaged prototype contains a return directive because the CreateSymbolicLink API function returns BOOLEAN, a one-byte data type.
  6876. The default marshaling for bool is four bytes (to allow seamless integration with BOOL return values).
  6877. If you were to use the default marshaling for BOOLEAN values, it's likely that you will get erroneous results.
  6878. The return directive forces PInvoke to marshal just one byte of the return value.
  6879. Source: http://www.informit.com/guides/content.aspx?g=dotnet&amp;seqNum=762&amp;ns=16196
  6880. </remarks>
  6881. <returns>
  6882. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6883. information, call GetLastError.
  6884. </returns>
  6885. </member>
  6886. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DecryptFile(System.String,System.UInt32)">
  6887. <summary>Decrypts an encrypted file or directory.</summary>
  6888. <remarks>
  6889. The DecryptFile function requires exclusive access to the file being decrypted, and will fail if another process is using the file.
  6890. If the file is not encrypted, DecryptFile simply returns a nonzero value, which indicates success. If lpFileName specifies a read-
  6891. only file, the function fails and GetLastError returns ERROR_FILE_READ_ONLY. If lpFileName specifies a directory that contains a
  6892. read-only file, the functions succeeds but the directory is not decrypted.
  6893. </remarks>
  6894. <remarks>Minimum supported client: Windows XP.</remarks>
  6895. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  6896. <returns>
  6897. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  6898. information, call GetLastError.
  6899. </returns>
  6900. </member>
  6901. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DeleteFile(System.String)">
  6902. <summary>Deletes an existing file.</summary>
  6903. <remarks>
  6904. If an application attempts to delete a file that does not exist, the DeleteFile function fails with ERROR_FILE_NOT_FOUND.
  6905. </remarks>
  6906. <remarks>If the file is a read-only file, the function fails with ERROR_ACCESS_DENIED.</remarks>
  6907. <remarks>
  6908. If the path points to a symbolic link, the symbolic link is deleted, not the target. To delete a target, you must call CreateFile
  6909. and specify FILE_FLAG_DELETE_ON_CLOSE.
  6910. </remarks>
  6911. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps].</remarks>
  6912. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps].</remarks>
  6913. <returns>
  6914. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6915. information, call GetLastError.
  6916. </returns>
  6917. </member>
  6918. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DeleteFileTransacted(System.String,System.Runtime.InteropServices.SafeHandle)">
  6919. <summary>Deletes an existing file as a transacted operation.</summary>
  6920. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  6921. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  6922. <returns>
  6923. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  6924. information, call GetLastError.
  6925. </returns>
  6926. </member>
  6927. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptFile(System.String)">
  6928. <summary>
  6929. Encrypts a file or directory. All data streams in a file are encrypted. All new files created in an encrypted directory are
  6930. encrypted.
  6931. </summary>
  6932. <remarks>
  6933. The EncryptFile function requires exclusive access to the file being encrypted, and will fail if another process is using the file.
  6934. If the file is already encrypted, EncryptFile simply returns a nonzero value, which indicates success. If the file is compressed,
  6935. EncryptFile will decompress the file before encrypting it. If lpFileName specifies a read-only file, the function fails and
  6936. GetLastError returns ERROR_FILE_READ_ONLY. If lpFileName specifies a directory that contains a read-only file, the functions
  6937. succeeds but the directory is not encrypted.
  6938. </remarks>
  6939. <remarks>Minimum supported client: Windows XP.</remarks>
  6940. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  6941. <returns>
  6942. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  6943. information, call GetLastError.
  6944. </returns>
  6945. </member>
  6946. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.EncryptionDisable(System.String,System.Boolean)">
  6947. <summary>
  6948. Disables or enables encryption of the specified directory and the files in it. It does not affect encryption of subdirectories
  6949. below the indicated directory.
  6950. </summary>
  6951. <remarks>
  6952. EncryptionDisable() disables encryption of directories and files. It does not affect the visibility of files with the
  6953. FILE_ATTRIBUTE_SYSTEM attribute set. This method will create/change the file "Desktop.ini" and wil set Encryption value:
  6954. "Disable=0|1".
  6955. </remarks>
  6956. <remarks>Minimum supported client: Windows XP Professional [desktop apps only].</remarks>
  6957. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  6958. <returns>
  6959. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  6960. information, call GetLastError.
  6961. </returns>
  6962. </member>
  6963. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FileEncryptionStatus(System.String,Alphaleonis.Win32.Filesystem.FileEncryptionStatus@)">
  6964. <summary>Retrieves the encryption status of the specified file.</summary>
  6965. <remarks>Minimum supported client: Windows XP Professional [desktop apps only].</remarks>
  6966. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  6967. <returns>
  6968. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  6969. information, call GetLastError.
  6970. </returns>
  6971. </member>
  6972. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindClose(System.IntPtr)">
  6973. <summary>
  6974. Closes a file search handle opened by the FindFirstFile, FindFirstFileEx, FindFirstFileNameW, FindFirstFileNameTransactedW,
  6975. FindFirstFileTransacted, FindFirstStreamTransactedW, or FindFirstStreamW functions.
  6976. </summary>
  6977. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps].</remarks>
  6978. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps].</remarks>
  6979. <returns>
  6980. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  6981. information, call GetLastError.
  6982. </returns>
  6983. </member>
  6984. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstFileEx(System.String,Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA@,Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS,System.IntPtr,Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags)">
  6985. <summary>Searches a directory for a file or subdirectory with a name and attributes that match those specified.</summary>
  6986. <remarks>A trailing backslash is not allowed and will be removed.</remarks>
  6987. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps].</remarks>
  6988. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps].</remarks>
  6989. <returns>
  6990. If the function succeeds, the return value is a search handle used in a subsequent call to FindNextFile or FindClose, and the
  6991. lpFindFileData parameter contains information about the first file or directory found. If the function fails or fails to locate
  6992. files from the search string in the lpFileName parameter, the return value is INVALID_HANDLE_VALUE and the contents of
  6993. lpFindFileData are indeterminate. To get extended error information, call the GetLastError function.
  6994. </returns>
  6995. </member>
  6996. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstFileTransacted(System.String,Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA@,Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_SEARCH_OPS,System.IntPtr,Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags,System.Runtime.InteropServices.SafeHandle)">
  6997. <summary>
  6998. Searches a directory for a file or subdirectory with a name that matches a specific name as a transacted operation.
  6999. </summary>
  7000. <remarks>A trailing backslash is not allowed and will be removed.</remarks>
  7001. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7002. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7003. <returns>
  7004. If the function succeeds, the return value is a search handle used in a subsequent call to FindNextFile or FindClose, and the
  7005. lpFindFileData parameter contains information about the first file or directory found. If the function fails or fails to locate
  7006. files from the search string in the lpFileName parameter, the return value is INVALID_HANDLE_VALUE and the contents of
  7007. lpFindFileData are indeterminate. To get extended error information, call the GetLastError function.
  7008. </returns>
  7009. </member>
  7010. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstFileName(System.String,System.UInt32,System.UInt32@,System.Text.StringBuilder)">
  7011. <summary>
  7012. Creates an enumeration of all the hard links to the specified file. The FindFirstFileNameW function returns a handle to the
  7013. enumeration that can be used on subsequent calls to the FindNextFileNameW function.
  7014. </summary>
  7015. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7016. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7017. <returns>
  7018. If the function succeeds, the return value is a search handle that can be used with the FindNextFileNameW function or closed with
  7019. the FindClose function. If the function fails, the return value is INVALID_HANDLE_VALUE (0xffffffff). To get extended error
  7020. information, call the GetLastError function.
  7021. </returns>
  7022. </member>
  7023. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstFileNameTransacted(System.String,System.UInt32,System.UInt32@,System.Text.StringBuilder,System.Runtime.InteropServices.SafeHandle)">
  7024. <summary>
  7025. Creates an enumeration of all the hard links to the specified file as a transacted operation. The function returns a handle to the
  7026. enumeration that can be used on subsequent calls to the FindNextFileNameW function.
  7027. </summary>
  7028. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7029. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7030. <returns>
  7031. If the function succeeds, the return value is a search handle that can be used with the FindNextFileNameW function or closed with
  7032. the FindClose function. If the function fails, the return value is INVALID_HANDLE_VALUE (0xffffffff). To get extended error
  7033. information, call the GetLastError function.
  7034. </returns>
  7035. </member>
  7036. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindNextFile(Alphaleonis.Win32.Filesystem.SafeFindFileHandle,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA@)">
  7037. <summary>
  7038. Continues a file search from a previous call to the FindFirstFile, FindFirstFileEx, or FindFirstFileTransacted functions.
  7039. </summary>
  7040. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps].</remarks>
  7041. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps].</remarks>
  7042. <returns>
  7043. If the function succeeds, the return value is nonzero and the lpFindFileData parameter contains information about the next file or
  7044. directory found. If the function fails, the return value is zero and the contents of lpFindFileData are indeterminate. To get
  7045. extended error information, call the GetLastError function. If the function fails because no more matching files can be found, the
  7046. GetLastError function returns ERROR_NO_MORE_FILES.
  7047. </returns>
  7048. </member>
  7049. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindNextFileName(Alphaleonis.Win32.Filesystem.SafeFindFileHandle,System.UInt32@,System.Text.StringBuilder)">
  7050. <summary>
  7051. Continues enumerating the hard links to a file using the handle returned by a successful call to the FindFirstFileName function.
  7052. </summary>
  7053. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7054. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7055. <returns>
  7056. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error
  7057. information, call GetLastError. If no matching files can be found, the GetLastError function returns ERROR_HANDLE_EOF.
  7058. </returns>
  7059. </member>
  7060. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FlushFileBuffers(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  7061. <summary>Flushes the buffers of a specified file and causes all buffered data to be written to a file.</summary>
  7062. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps].</remarks>
  7063. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps].</remarks>
  7064. <returns>
  7065. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  7066. information, call GetLastError.
  7067. </returns>
  7068. </member>
  7069. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetCompressedFileSize(System.String,System.UInt32@)">
  7070. <summary>Retrieves the actual number of bytes of disk storage used to store a specified file.</summary>
  7071. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  7072. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  7073. <returns>
  7074. If the function succeeds, the return value is the low-order DWORD of the actual number of bytes of disk storage used to store the
  7075. specified file, and if lpFileSizeHigh is non-NULL, the function puts the high-order DWORD of that actual value into the DWORD
  7076. pointed to by that parameter. This is the compressed file size for compressed files, the actual file size for noncompressed files.
  7077. If the function fails, and lpFileSizeHigh is NULL, the return value is INVALID_FILE_SIZE. To get extended error information, call
  7078. GetLastError. If the return value is INVALID_FILE_SIZE and lpFileSizeHigh is non-NULL, an application must call GetLastError to
  7079. determine whether the function has succeeded (value is NO_ERROR) or failed (value is other than NO_ERROR).
  7080. </returns>
  7081. </member>
  7082. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetCompressedFileSizeTransacted(System.String,System.UInt32@,System.Runtime.InteropServices.SafeHandle)">
  7083. <summary>Retrieves the actual number of bytes of disk storage used to store a specified file as a transacted operation.</summary>
  7084. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7085. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7086. <returns>
  7087. If the function succeeds, the return value is the low-order DWORD of the actual number of bytes of disk storage used to store the
  7088. specified file, and if lpFileSizeHigh is non-NULL, the function puts the high-order DWORD of that actual value into the DWORD
  7089. pointed to by that parameter. This is the compressed file size for compressed files, the actual file size for noncompressed files.
  7090. If the function fails, and lpFileSizeHigh is NULL, the return value is INVALID_FILE_SIZE. To get extended error information, call
  7091. GetLastError. If the return value is INVALID_FILE_SIZE and lpFileSizeHigh is non-NULL, an application must call GetLastError to
  7092. determine whether the function has succeeded (value is NO_ERROR) or failed (value is other than NO_ERROR).
  7093. </returns>
  7094. </member>
  7095. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileAttributesEx(System.String,Alphaleonis.Win32.Filesystem.NativeMethods.GetFileExInfoLevels,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA@)">
  7096. <summary>
  7097. Retrieves attributes for a specified file or directory.
  7098. </summary>
  7099. <remarks>
  7100. <para>The GetFileAttributes function retrieves file system attribute information.</para>
  7101. <para>GetFileAttributesEx can obtain other sets of file or directory attribute information.</para>
  7102. <para>Currently, GetFileAttributesEx retrieves a set of standard attributes that is a superset of the file system attribute
  7103. information.
  7104. When the GetFileAttributesEx function is called on a directory that is a mounted folder, it returns the attributes of the directory,
  7105. not those of the root directory in the volume that the mounted folder associates with the directory. To obtain the attributes of
  7106. the associated volume, call GetVolumeNameForVolumeMountPoint to obtain the name of the associated volume. Then use the resulting
  7107. name in a call to GetFileAttributesEx. The results are the attributes of the root directory on the associated volume.</para>
  7108. <para>Symbolic link behavior: If the path points to a symbolic link, the function returns attributes for the symbolic link.</para>
  7109. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7110. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7111. </remarks>
  7112. <returns>
  7113. <para>If the function succeeds, the return value is nonzero.</para>
  7114. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7115. </returns>
  7116. </member>
  7117. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileAttributesTransacted(System.String,Alphaleonis.Win32.Filesystem.NativeMethods.GetFileExInfoLevels,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA@,System.Runtime.InteropServices.SafeHandle)">
  7118. <summary>Retrieves attributes for a specified file or directory.</summary>
  7119. <remarks>
  7120. <para>The GetFileAttributes function retrieves file system attribute information.</para>
  7121. <para>GetFileAttributesEx can obtain other sets of file or directory attribute information.</para>
  7122. <para>
  7123. Currently, GetFileAttributesEx retrieves a set of standard attributes that is a superset of the file system attribute information.
  7124. When the GetFileAttributesEx function is called on a directory that is a mounted folder, it returns the attributes of the directory,
  7125. not those of the root directory in the volume that the mounted folder associates with the directory. To obtain the attributes of
  7126. the associated volume, call GetVolumeNameForVolumeMountPoint to obtain the name of the associated volume. Then use the resulting
  7127. name in a call to GetFileAttributesEx. The results are the attributes of the root directory on the associated volume.</para>
  7128. <para>Symbolic link behavior: If the path points to a symbolic link, the function returns attributes for the symbolic link.</para>
  7129. <para>Transacted Operations</para>
  7130. <para>If a file is open for modification in a transaction, no other thread can open the file for modification until the transaction
  7131. is committed. Conversely, if a file is open for modification outside of a transaction, no transacted thread can open the file for
  7132. modification until the non-transacted handle is closed. If a non-transacted thread has a handle opened to modify a file, a call to
  7133. GetFileAttributesTransacted for that file will fail with an ERROR_TRANSACTIONAL_CONFLICT error.</para>
  7134. <para>Minimum supported client: Windows Vista [desktop apps only]</para>
  7135. <para>Minimum supported server: Windows Server 2008 [desktop apps only]</para>
  7136. </remarks>
  7137. <returns>
  7138. <para>If the function succeeds, the return value is nonzero.</para>
  7139. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7140. </returns>
  7141. </member>
  7142. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileInformationByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION@)">
  7143. <summary>Retrieves file information for the specified file.</summary>
  7144. <returns>
  7145. If the function succeeds, the return value is nonzero and file information data is contained in the buffer pointed to by the lpByHandleFileInformation parameter.
  7146. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7147. </returns>
  7148. <remarks>
  7149. Depending on the underlying network features of the operating system and the type of server connected to,
  7150. the GetFileInformationByHandle function may fail, return partial information, or full information for the given file.
  7151. </remarks>
  7152. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  7153. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  7154. </member>
  7155. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileInformationByHandleEx(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.Filesystem.NativeMethods.FileInfoByHandleClass,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32)">
  7156. <summary>
  7157. Retrieves file information for the specified file.
  7158. </summary>
  7159. <remarks>
  7160. <para>Minimum supported client: Windows Vista [desktop apps | Windows Store apps]</para>
  7161. <para>Minimum supported server: Windows Server 2008 [desktop apps | Windows Store apps]</para>
  7162. <para>Redistributable: Windows SDK on Windows Server 2003 and Windows XP.</para>
  7163. </remarks>
  7164. <param name="hFile">The file.</param>
  7165. <param name="fileInfoByHandleClass">The file information by handle class.</param>
  7166. <param name="lpFileInformation">Information describing the file.</param>
  7167. <param name="dwBufferSize">Size of the buffer.</param>
  7168. <returns>
  7169. <para>If the function succeeds, the return value is nonzero and file information data is contained in the buffer pointed to by the
  7170. lpByHandleFileInformation parameter.</para>
  7171. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7172. </returns>
  7173. </member>
  7174. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileInformationByHandleEx_FileBasicInfo(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.Filesystem.NativeMethods.FileInfoByHandleClass,Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO@,System.UInt32)">
  7175. <summary>Retrieves file information for the specified file.</summary>
  7176. <remarks>
  7177. <para>Minimum supported client: Windows Vista [desktop apps | Windows Store apps]</para>
  7178. <para>Minimum supported server: Windows Server 2008 [desktop apps | Windows Store apps]</para>
  7179. <para>Redistributable: Windows SDK on Windows Server 2003 and Windows XP.</para>
  7180. </remarks>
  7181. <returns>
  7182. <para>If the function succeeds, the return value is nonzero and file information data is contained in the buffer pointed to by the
  7183. lpByHandleFileInformation parameter.</para>
  7184. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7185. </returns>
  7186. <param name="hFile">The file.</param>
  7187. <param name="fileInfoByHandleClass">The file information by handle class.</param>
  7188. <param name="lpFileInformation">Information describing the file.</param>
  7189. <param name="dwBufferSize">Size of the buffer.</param>
  7190. </member>
  7191. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFileSizeEx(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Int64@)">
  7192. <summary>
  7193. Retrieves the size of the specified file.
  7194. </summary>
  7195. <remarks>
  7196. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7197. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7198. </remarks>
  7199. <returns>
  7200. <para>If the function succeeds, the return value is nonzero.</para>
  7201. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7202. </returns>
  7203. </member>
  7204. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFinalPathNameByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Text.StringBuilder,System.UInt32,Alphaleonis.Win32.Filesystem.FinalPathFormats)">
  7205. <summary>Retrieves the final path for the specified file.</summary>
  7206. <remarks>Minimum supported client: Windows Vista [desktop apps only].</remarks>
  7207. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only].</remarks>
  7208. <returns>
  7209. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  7210. information, call GetLastError.
  7211. </returns>
  7212. </member>
  7213. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetMappedFileName(System.IntPtr,Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle,System.Text.StringBuilder,System.UInt32)">
  7214. <summary>
  7215. Checks whether the specified address is within a memory-mapped file in the address space of the specified process. If so, the
  7216. function returns the name of the memory-mapped file.
  7217. </summary>
  7218. <remarks>Minimum supported client: Windows XP.</remarks>
  7219. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  7220. <returns>
  7221. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  7222. information, call GetLastError.
  7223. </returns>
  7224. </member>
  7225. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.LockFile(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
  7226. <summary>Locks the specified file for exclusive access by the calling process.</summary>
  7227. <remarks>Minimum supported client: Windows XP.</remarks>
  7228. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  7229. <returns>
  7230. If the function succeeds, the return value is nonzero (TRUE). If the function fails, the return value is zero (FALSE). To get
  7231. extended error information, call GetLastError.
  7232. </returns>
  7233. </member>
  7234. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.MapViewOfFile(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.UInt32,System.UInt32,System.UIntPtr)">
  7235. <summary>Maps a view of a file mapping into the address space of a calling process.</summary>
  7236. <remarks>Minimum supported client: Windows XP.</remarks>
  7237. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  7238. <returns>
  7239. If the function succeeds, the return value is the starting address of the mapped view. If the function fails, the return value is
  7240. <see langword="null"/>.
  7241. </returns>
  7242. </member>
  7243. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.MoveFileWithProgress(System.String,System.String,Alphaleonis.Win32.Filesystem.NativeMethods.NativeCopyMoveProgressRoutine,System.IntPtr,Alphaleonis.Win32.Filesystem.MoveOptions)">
  7244. <summary>
  7245. Moves a file or directory, including its children.
  7246. <para>You can provide a callback function that receives progress notifications.</para>
  7247. </summary>
  7248. <remarks>
  7249. <para>The MoveFileWithProgress function coordinates its operation with the link tracking service, so link sources can be tracked as they are moved.</para>
  7250. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7251. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7252. </remarks>
  7253. <param name="lpExistingFileName">Filename of the existing file.</param>
  7254. <param name="lpNewFileName">Filename of the new file.</param>
  7255. <param name="lpProgressRoutine">The progress routine.</param>
  7256. <param name="lpData">The data.</param>
  7257. <param name="dwFlags">The flags.</param>
  7258. <returns>
  7259. <para>If the function succeeds, the return value is nonzero.</para>
  7260. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7261. </returns>
  7262. </member>
  7263. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.MoveFileTransacted(System.String,System.String,Alphaleonis.Win32.Filesystem.NativeMethods.NativeCopyMoveProgressRoutine,System.IntPtr,Alphaleonis.Win32.Filesystem.MoveOptions,System.Runtime.InteropServices.SafeHandle)">
  7264. <summary>
  7265. Moves an existing file or a directory, including its children, as a transacted operation.
  7266. <para>You can provide a callback function that receives progress notifications.</para>
  7267. </summary>
  7268. <remarks>
  7269. <para>Minimum supported client: Windows Vista [desktop apps only]</para>
  7270. <para>Minimum supported server: Windows Server 2008 [desktop apps only]</para>
  7271. </remarks>
  7272. <returns>
  7273. <para>If the function succeeds, the return value is nonzero.</para>
  7274. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7275. </returns>
  7276. </member>
  7277. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.NativeCopyMoveProgressRoutine">
  7278. <summary>An application-defined callback function used with the CopyFileEx, MoveFileTransacted, and MoveFileWithProgress functions.
  7279. <para>It is called when a portion of a copy or move operation is completed.</para>
  7280. <para>The LPPROGRESS_ROUTINE type defines a pointer to this callback function.</para>
  7281. <para>NativeCopyMoveProgressRoutine (NativeCopyMoveProgressRoutine) is a placeholder for the application-defined function name.</para>
  7282. </summary>
  7283. </member>
  7284. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.ReplaceFile(System.String,System.String,System.String,System.Security.AccessControl.FileSystemRights,System.IntPtr,System.IntPtr)">
  7285. <summary>Replaces one file with another file, with the option of creating a backup copy of the original file. The replacement file assumes the name of the replaced file and its identity.</summary>
  7286. <returns>
  7287. If the function succeeds, the return value is nonzero.
  7288. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7289. </returns>
  7290. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  7291. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  7292. </member>
  7293. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetFileAttributes(System.String,System.IO.FileAttributes)">
  7294. <summary>Sets the attributes for a file or directory.</summary>
  7295. <returns>
  7296. If the function succeeds, the return value is nonzero.
  7297. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7298. </returns>
  7299. <remarks>Minimum supported client: Windows XP</remarks>
  7300. <remarks>Minimum supported server: Windows Server 2003</remarks>
  7301. </member>
  7302. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetFileAttributesTransacted(System.String,System.IO.FileAttributes,System.Runtime.InteropServices.SafeHandle)">
  7303. <summary>Sets the attributes for a file or directory as a transacted operation.</summary>
  7304. <returns>
  7305. If the function succeeds, the return value is nonzero.
  7306. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7307. </returns>
  7308. <remarks>Minimum supported client: Windows Vista [desktop apps only]</remarks>
  7309. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
  7310. </member>
  7311. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetFileTime(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle)">
  7312. <summary>Sets the date and time that the specified file or directory was created, last accessed, or last modified.</summary>
  7313. <returns>
  7314. If the function succeeds, the return value is nonzero.
  7315. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7316. </returns>
  7317. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  7318. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  7319. </member>
  7320. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.UnlockFile(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
  7321. <summary>Unlocks a region in an open file. Unlocking a region enables other processes to access the region.</summary>
  7322. <returns>
  7323. If the function succeeds, the return value is nonzero.
  7324. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7325. </returns>
  7326. <remarks>Minimum supported client: Windows XP</remarks>
  7327. <remarks>Minimum supported server: Windows Server 2003</remarks>
  7328. </member>
  7329. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.UnmapViewOfFile(Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle)">
  7330. <summary>Unmaps a mapped view of a file from the calling process's address space.</summary>
  7331. <remarks>Minimum supported client: Windows XP.</remarks>
  7332. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  7333. <param name="lpBaseAddress">The base address.</param>
  7334. <returns>
  7335. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  7336. information, call GetLastError.
  7337. </returns>
  7338. </member>
  7339. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetDiskFreeSpace(System.String,System.Int32@,System.Int32@,System.Int32@,System.UInt32@)">
  7340. <summary>
  7341. Retrieves information about the specified disk, including the amount of free space on the disk.
  7342. </summary>
  7343. <remarks>
  7344. <para>Symbolic link behavior: If the path points to a symbolic link, the operation is performed on the target.</para>
  7345. <para>If this parameter is a UNC name, it must include a trailing backslash (for example, "\\MyServer\MyShare\").</para>
  7346. <para>Furthermore, a drive specification must have a trailing backslash (for example, "C:\").</para>
  7347. <para>The calling application must have FILE_LIST_DIRECTORY access rights for this directory.</para>
  7348. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7349. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7350. </remarks>
  7351. <param name="lpRootPathName">Full pathname of the root file.</param>
  7352. <param name="lpSectorsPerCluster">[out] The sectors per cluster.</param>
  7353. <param name="lpBytesPerSector">[out] The bytes per sector.</param>
  7354. <param name="lpNumberOfFreeClusters">[out] Number of free clusters.</param>
  7355. <param name="lpTotalNumberOfClusters">[out] The total number of clusters.</param>
  7356. <returns>
  7357. <para>If the function succeeds, the return value is nonzero.</para>
  7358. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7359. </returns>
  7360. </member>
  7361. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetDiskFreeSpaceEx(System.String,System.Int64@,System.Int64@,System.Int64@)">
  7362. <summary>
  7363. Retrieves information about the amount of space that is available on a disk volume, which is the total amount of space,
  7364. <para>the total amount of free space, and the total amount of free space available to the user that is associated with the calling
  7365. thread.</para>
  7366. </summary>
  7367. <remarks>
  7368. <para>Symbolic link behavior: If the path points to a symbolic link, the operation is performed on the target.</para>
  7369. <para>The GetDiskFreeSpaceEx function returns zero (0) for lpTotalNumberOfFreeBytes and lpFreeBytesAvailable
  7370. for all CD requests unless the disk is an unwritten CD in a CD-RW drive.</para>
  7371. <para>If this parameter is a UNC name, it must include a trailing backslash, for example, "\\MyServer\MyShare\".</para>
  7372. <para>This parameter does not have to specify the root directory on a disk.</para>
  7373. <para>The function accepts any directory on a disk.</para>
  7374. <para>The calling application must have FILE_LIST_DIRECTORY access rights for this directory.</para>
  7375. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  7376. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  7377. </remarks>
  7378. <param name="lpDirectoryName">Pathname of the directory.</param>
  7379. <param name="lpFreeBytesAvailable">[out] The free bytes available.</param>
  7380. <param name="lpTotalNumberOfBytes">[out] The total number of in bytes.</param>
  7381. <param name="lpTotalNumberOfFreeBytes">[out] The total number of free in bytes.</param>
  7382. <returns>
  7383. <para>If the function succeeds, the return value is nonzero.</para>
  7384. <para>If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</para>
  7385. </returns>
  7386. </member>
  7387. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateDirectory(System.String,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes)">
  7388. <summary>
  7389. Creates a new directory.
  7390. <para>If the underlying file system supports security on files and directories,</para>
  7391. <para>the function applies a specified security descriptor to the new directory.</para>
  7392. </summary>
  7393. <remarks>
  7394. <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
  7395. directories.</para>
  7396. <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
  7397. directory.</para>
  7398. <para>An application can obtain a handle to a directory by calling <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFile(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr)"/> with the FILE_FLAG_BACKUP_SEMANTICS
  7399. flag set.</para>
  7400. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  7401. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  7402. </remarks>
  7403. <param name="lpPathName">Full pathname of the file.</param>
  7404. <param name="lpSecurityAttributes">The security attributes.</param>
  7405. <returns>
  7406. <para>If the function succeeds, the return value is nonzero.</para>
  7407. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7408. </returns>
  7409. </member>
  7410. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateDirectoryEx(System.String,System.String,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes)">
  7411. <summary>
  7412. Creates a new directory with the attributes of a specified template directory.
  7413. <para>If the underlying file system supports security on files and directories,</para>
  7414. <para>the function applies a specified security descriptor to the new directory.</para>
  7415. <para>The new directory retains the other attributes of the specified template directory.</para>
  7416. </summary>
  7417. <remarks>
  7418. <para>The CreateDirectoryEx function allows you to create directories that inherit stream information from other directories.</para>
  7419. <para>This function is useful, for example, when you are using Macintosh directories, which have a resource stream</para>
  7420. <para>that is needed to properly identify directory contents as an attribute.</para>
  7421. <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
  7422. directories.</para>
  7423. <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
  7424. directory.</para>
  7425. <para>You can obtain a handle to a directory by calling the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFile(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr)"/> function with the FILE_FLAG_BACKUP_SEMANTICS
  7426. flag set.</para>
  7427. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7428. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7429. </remarks>
  7430. <param name="lpTemplateDirectory">Pathname of the template directory.</param>
  7431. <param name="lpPathName">Full pathname of the file.</param>
  7432. <param name="lpSecurityAttributes">The security attributes.</param>
  7433. <returns>
  7434. <para>If the function succeeds, the return value is nonzero.</para>
  7435. <para>If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</para>
  7436. </returns>
  7437. </member>
  7438. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateDirectoryTransacted(System.String,System.String,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.Runtime.InteropServices.SafeHandle)">
  7439. <summary>
  7440. Creates a new directory as a transacted operation, with the attributes of a specified template directory.
  7441. <para>If the underlying file system supports security on files and directories,</para>
  7442. <para>the function applies a specified security descriptor to the new directory.</para>
  7443. <para>The new directory retains the other attributes of the specified template directory.</para>
  7444. </summary>
  7445. <remarks>
  7446. <para>The CreateDirectoryTransacted function allows you to create directories that inherit stream information from other
  7447. directories.</para>
  7448. <para>This function is useful, for example, when you are using Macintosh directories, which have a resource stream</para>
  7449. <para>that is needed to properly identify directory contents as an attribute.</para>
  7450. <para>Some file systems, such as the NTFS file system, support compression or encryption for individual files and
  7451. directories.</para>
  7452. <para>On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent
  7453. directory.</para>
  7454. <para>You can obtain a handle to a directory by calling the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFileTransacted(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr,System.Runtime.InteropServices.SafeHandle,System.IntPtr,System.IntPtr)"/> function with the
  7455. FILE_FLAG_BACKUP_SEMANTICS flag set.</para>
  7456. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7457. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7458. </remarks>
  7459. <param name="lpTemplateDirectory">Pathname of the template directory.</param>
  7460. <param name="lpNewDirectory">Pathname of the new directory.</param>
  7461. <param name="lpSecurityAttributes">The security attributes.</param>
  7462. <param name="hTransaction">The transaction.</param>
  7463. <returns>
  7464. <para>If the function succeeds, the return value is nonzero.</para>
  7465. <para>If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</para>
  7466. <para>This function fails with ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION if you try to create a</para>
  7467. <para>child directory with a parent directory that has encryption disabled.</para>
  7468. </returns>
  7469. </member>
  7470. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetCurrentDirectory(System.UInt32,System.Text.StringBuilder)">
  7471. <summary>
  7472. Retrieves the current directory for the current process.
  7473. </summary>
  7474. <remarks>
  7475. <para>The RemoveDirectory function marks a directory for deletion on close.</para>
  7476. <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
  7477. <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
  7478. <para>the function removes directory junctions regardless of the state of the target object.</para>
  7479. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  7480. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  7481. </remarks>
  7482. <param name="nBufferLength">The length of the buffer for the current directory string, in TCHARs. The buffer length must include room for a terminating null character.</param>
  7483. <param name="lpBuffer">
  7484. <para>A pointer to the buffer that receives the current directory string. This null-terminated string specifies the absolute path to the current directory.</para>
  7485. <para>To determine the required buffer size, set this parameter to NULL and the nBufferLength parameter to 0.</para>
  7486. </param>
  7487. <returns>
  7488. <para>If the function succeeds, the return value specifies the number of characters that are written to the buffer, not including the terminating null character.</para>
  7489. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7490. </returns>
  7491. </member>
  7492. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.RemoveDirectory(System.String)">
  7493. <summary>
  7494. Deletes an existing empty directory.
  7495. </summary>
  7496. <remarks>
  7497. <para>The RemoveDirectory function marks a directory for deletion on close.</para>
  7498. <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
  7499. <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
  7500. <para>the function removes directory junctions regardless of the state of the target object.</para>
  7501. <para>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</para>
  7502. <para>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</para>
  7503. </remarks>
  7504. <param name="lpPathName">Full pathname of the file.</param>
  7505. <returns>
  7506. <para>If the function succeeds, the return value is nonzero.</para>
  7507. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7508. </returns>
  7509. </member>
  7510. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.RemoveDirectoryTransacted(System.String,System.Runtime.InteropServices.SafeHandle)">
  7511. <summary>
  7512. Deletes an existing empty directory as a transacted operation.
  7513. </summary>
  7514. <remarks>
  7515. <para>The RemoveDirectoryTransacted function marks a directory for deletion on close.</para>
  7516. <para>Therefore, the directory is not removed until the last handle to the directory is closed.</para>
  7517. <para>RemoveDirectory removes a directory junction, even if the contents of the target are not empty;</para>
  7518. <para>the function removes directory junctions regardless of the state of the target object.</para>
  7519. <para>Minimum supported client: Windows Vista [desktop apps only]</para>
  7520. <para>Minimum supported server: Windows Server 2008 [desktop apps only]</para>
  7521. </remarks>
  7522. <param name="lpPathName">Full pathname of the file.</param>
  7523. <param name="hTransaction">The transaction.</param>
  7524. <returns>
  7525. <para>If the function succeeds, the return value is nonzero.</para>
  7526. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7527. </returns>
  7528. </member>
  7529. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetCurrentDirectory(System.String)">
  7530. <summary>
  7531. Changes the current directory for the current process.
  7532. </summary>
  7533. <param name="lpPathName">
  7534. <para>The path to the new current directory. This parameter may specify a relative path or a full path. In either case, the full path of the specified directory is calculated and stored as the current directory.</para>
  7535. </param>
  7536. <returns>
  7537. <para>If the function succeeds, the return value is nonzero.</para>
  7538. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  7539. </returns>
  7540. </member>
  7541. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CM_Connect_Machine(System.String,Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle@)">
  7542. <summary>The CM_Connect_Machine function creates a connection to a remote machine.</summary>
  7543. <remarks>
  7544. <para>Beginning in Windows 8 and Windows Server 2012 functionality to access remote machines has been removed.</para>
  7545. <para>You cannot access remote machines when running on these versions of Windows.</para>
  7546. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7547. </remarks>
  7548. <param name="uncServerName">Name of the unc server.</param>
  7549. <param name="phMachine">[out] The ph machine.</param>
  7550. <returns>
  7551. <para>If the operation succeeds, the function returns CR_SUCCESS.</para>
  7552. <para>Otherwise, it returns one of the CR_-prefixed error codes defined in Cfgmgr32.h.</para>
  7553. </returns>
  7554. </member>
  7555. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CM_Get_Device_ID_Ex(System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32,Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle)">
  7556. <summary>
  7557. The CM_Get_Device_ID_Ex function retrieves the device instance ID for a specified device instance on a local or a remote machine.
  7558. </summary>
  7559. <remarks>
  7560. <para>Beginning in Windows 8 and Windows Server 2012 functionality to access remote machines has been removed.</para>
  7561. <para>You cannot access remote machines when running on these versions of Windows.</para>
  7562. <para>&#160;</para>
  7563. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7564. </remarks>
  7565. <param name="dnDevInst">The dn development instance.</param>
  7566. <param name="buffer">The buffer.</param>
  7567. <param name="bufferLen">Length of the buffer.</param>
  7568. <param name="ulFlags">The ul flags.</param>
  7569. <param name="hMachine">The machine.</param>
  7570. <returns>
  7571. <para>If the operation succeeds, the function returns CR_SUCCESS.</para>
  7572. <para>Otherwise, it returns one of the CR_-prefixed error codes defined in Cfgmgr32.h.</para>
  7573. </returns>
  7574. </member>
  7575. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CM_Disconnect_Machine(System.IntPtr)">
  7576. <summary>
  7577. The CM_Disconnect_Machine function removes a connection to a remote machine.
  7578. </summary>
  7579. <remarks>
  7580. <para>Beginning in Windows 8 and Windows Server 2012 functionality to access remote machines has been removed.</para>
  7581. <para>You cannot access remote machines when running on these versions of Windows.</para>
  7582. <para>SetLastError is set to <see langword="false"/>.</para>
  7583. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7584. </remarks>
  7585. <param name="hMachine">The machine.</param>
  7586. <returns>
  7587. <para>If the operation succeeds, the function returns CR_SUCCESS.</para>
  7588. <para>Otherwise, it returns one of the CR_-prefixed error codes defined in Cfgmgr32.h.</para>
  7589. </returns>
  7590. </member>
  7591. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.CM_Get_Parent_Ex(System.UInt32@,System.UInt32,System.UInt32,Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle)">
  7592. <summary>
  7593. The CM_Get_Parent_Ex function obtains a device instance handle to the parent node of a specified device node (devnode) in a local
  7594. or a remote machine's device tree.
  7595. </summary>
  7596. <remarks>
  7597. <para>Beginning in Windows 8 and Windows Server 2012 functionality to access remote machines has been removed.</para>
  7598. <para>You cannot access remote machines when running on these versions of Windows.</para>
  7599. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7600. </remarks>
  7601. <param name="pdnDevInst">[out] The pdn development instance.</param>
  7602. <param name="dnDevInst">The dn development instance.</param>
  7603. <param name="ulFlags">The ul flags.</param>
  7604. <param name="hMachine">The machine.</param>
  7605. <returns>
  7606. <para>If the operation succeeds, the function returns CR_SUCCESS.</para>
  7607. <para>Otherwise, it returns one of the CR_-prefixed error codes defined in Cfgmgr32.h.</para>
  7608. </returns>
  7609. </member>
  7610. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DeviceIoControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.IntPtr,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.IntPtr)">
  7611. <summary>Sends a control code directly to a specified device driver, causing the corresponding device to perform the corresponding operation.</summary>
  7612. <returns>
  7613. <para>If the operation completes successfully, the return value is nonzero.</para>
  7614. <para>If the operation fails or is pending, the return value is zero. To get extended error information, call GetLastError.</para>
  7615. </returns>
  7616. <remarks>
  7617. <para>To retrieve a handle to the device, you must call the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFile(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr)"/> function with either the name of a device or
  7618. the name of the driver associated with a device.</para>
  7619. <para>To specify a device name, use the following format: <c>\\.\DeviceName</c></para>
  7620. <para>Minimum supported client: Windows XP</para>
  7621. <para>Minimum supported server: Windows Server 2003</para>
  7622. </remarks>
  7623. <param name="hDevice">The device.</param>
  7624. <param name="dwIoControlCode">The i/o control code.</param>
  7625. <param name="lpInBuffer">Buffer for in data.</param>
  7626. <param name="nInBufferSize">Size of the in buffer.</param>
  7627. <param name="lpOutBuffer">Buffer for out data.</param>
  7628. <param name="nOutBufferSize">Size of the out buffer.</param>
  7629. <param name="lpBytesReturned">[out] The bytes returned.</param>
  7630. <param name="lpOverlapped">The overlapped.</param>
  7631. </member>
  7632. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DeviceIoControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.Object,System.UInt32,System.Object,System.UInt32,System.UInt32@,System.IntPtr)">
  7633. <summary>Sends a control code directly to a specified device driver, causing the corresponding device to perform the corresponding operation.</summary>
  7634. <returns>
  7635. <para>If the operation completes successfully, the return value is nonzero.</para>
  7636. <para>If the operation fails or is pending, the return value is zero. To get extended error information, call GetLastError.</para>
  7637. </returns>
  7638. <remarks>
  7639. <para>To retrieve a handle to the device, you must call the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.CreateFile(System.String,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes,System.IO.FileMode,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.IntPtr)"/> function with either the name of a device or
  7640. the name of the driver associated with a device.</para>
  7641. <para>To specify a device name, use the following format: <c>\\.\DeviceName</c></para>
  7642. <para>Minimum supported client: Windows XP</para>
  7643. <para>Minimum supported server: Windows Server 2003</para>
  7644. </remarks>
  7645. <param name="hDevice">The device.</param>
  7646. <param name="dwIoControlCode">The i/o control code.</param>
  7647. <param name="lpInBuffer">Buffer for in data.</param>
  7648. <param name="nInBufferSize">Size of the in buffer.</param>
  7649. <param name="lpOutBuffer">Buffer for out data.</param>
  7650. <param name="nOutBufferSize">Size of the out buffer.</param>
  7651. <param name="lpBytesReturned">[out] The bytes returned.</param>
  7652. <param name="lpOverlapped">The overlapped.</param>
  7653. </member>
  7654. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiDestroyDeviceInfoList(System.IntPtr)">
  7655. <summary>
  7656. The SetupDiDestroyDeviceInfoList function deletes a device information set and frees all associated memory.
  7657. </summary>
  7658. <remarks>
  7659. <para>SetLastError is set to <see langword="false"/>.</para>
  7660. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7661. </remarks>
  7662. <param name="hDevInfo">Information describing the development.</param>
  7663. <returns>
  7664. <para>The function returns TRUE if it is successful.</para>
  7665. <para>Otherwise, it returns FALSE and the logged error can be retrieved with a call to GetLastError.</para>
  7666. </returns>
  7667. </member>
  7668. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiEnumDeviceInterfaces(System.Runtime.InteropServices.SafeHandle,System.IntPtr,System.Guid@,System.UInt32,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA@)">
  7669. <summary>
  7670. The SetupDiEnumDeviceInterfaces function enumerates the device interfaces that are contained in a device information set.
  7671. </summary>
  7672. <remarks>
  7673. <para>Repeated calls to this function return an <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA"/> structure for a different device
  7674. interface.</para>
  7675. <para>This function can be called repeatedly to get information about interfaces in a device information set that are
  7676. associated</para>
  7677. <para>with a particular device information element or that are associated with all device information elements.</para>
  7678. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7679. </remarks>
  7680. <param name="hDevInfo">Information describing the development.</param>
  7681. <param name="devInfo">Information describing the development.</param>
  7682. <param name="interfaceClassGuid">[in,out] Unique identifier for the interface class.</param>
  7683. <param name="memberIndex">Zero-based index of the member.</param>
  7684. <param name="deviceInterfaceData">[in,out] Information describing the device interface.</param>
  7685. <returns>
  7686. <para>SetupDiEnumDeviceInterfaces returns TRUE if the function completed without error.</para>
  7687. <para>If the function completed with an error, FALSE is returned and the error code for the failure can be retrieved by calling
  7688. GetLastError.</para>
  7689. </returns>
  7690. </member>
  7691. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsEx(System.Guid@,System.IntPtr,System.IntPtr,Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetClassDevsExFlags,System.IntPtr,System.String,System.IntPtr)">
  7692. <summary>
  7693. The SetupDiGetClassDevsEx function returns a handle to a device information set that contains requested device information elements
  7694. for a local or a remote computer.
  7695. </summary>
  7696. <remarks>
  7697. <para>The caller of SetupDiGetClassDevsEx must delete the returned device information set when it is no longer needed by calling
  7698. <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiDestroyDeviceInfoList(System.IntPtr)"/>.</para>
  7699. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7700. </remarks>
  7701. <param name="classGuid">[in,out] Unique identifier for the class.</param>
  7702. <param name="enumerator">The enumerator.</param>
  7703. <param name="hwndParent">The parent.</param>
  7704. <param name="devsExFlags">The devs ex flags.</param>
  7705. <param name="deviceInfoSet">Set the device information belongs to.</param>
  7706. <param name="machineName">Name of the machine.</param>
  7707. <param name="reserved">The reserved.</param>
  7708. <returns>
  7709. <para>If the operation succeeds, SetupDiGetClassDevsEx returns a handle to a device information set that contains all installed
  7710. devices that matched the supplied parameters.</para>
  7711. <para>If the operation fails, the function returns INVALID_HANDLE_VALUE. To get extended error information, call
  7712. GetLastError.</para>
  7713. </returns>
  7714. </member>
  7715. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceInterfaceDetail(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA@,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DETAIL_DATA@,System.UInt32,System.IntPtr,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA@)">
  7716. <summary>
  7717. The SetupDiGetDeviceInterfaceDetail function returns details about a device interface.
  7718. </summary>
  7719. <remarks>
  7720. <para>The interface detail returned by this function consists of a device path that can be passed to Win32 functions such as
  7721. CreateFile.</para>
  7722. <para>Do not attempt to parse the device path symbolic name. The device path can be reused across system starts.</para>
  7723. <para>Available in Microsoft Windows 2000 and later versions of Windows.</para>
  7724. </remarks>
  7725. <param name="hDevInfo">Information describing the development.</param>
  7726. <param name="deviceInterfaceData">[in,out] Information describing the device interface.</param>
  7727. <param name="deviceInterfaceDetailData">[in,out] Information describing the device interface detail.</param>
  7728. <param name="deviceInterfaceDetailDataSize">Size of the device interface detail data.</param>
  7729. <param name="requiredSize">Size of the required.</param>
  7730. <param name="deviceInfoData">[in,out] Information describing the device information.</param>
  7731. <returns>
  7732. <para>SetupDiGetDeviceInterfaceDetail returns TRUE if the function completed without error.</para>
  7733. <para>If the function completed with an error, FALSE is returned and the error code for the failure can be retrieved by calling
  7734. GetLastError.</para>
  7735. </returns>
  7736. </member>
  7737. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryProperty(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA@,Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum,System.UInt32@,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.IntPtr)">
  7738. <summary>
  7739. The SetupDiGetDeviceRegistryProperty function retrieves a specified Plug and Play device property.
  7740. </summary>
  7741. <remarks><para>Available in Microsoft Windows 2000 and later versions of Windows.</para></remarks>
  7742. <param name="deviceInfoSet">Set the device information belongs to.</param>
  7743. <param name="deviceInfoData">[in,out] Information describing the device information.</param>
  7744. <param name="property">The property.</param>
  7745. <param name="propertyRegDataType">[out] Type of the property register data.</param>
  7746. <param name="propertyBuffer">Buffer for property data.</param>
  7747. <param name="propertyBufferSize">Size of the property buffer.</param>
  7748. <param name="requiredSize">Size of the required.</param>
  7749. <returns>
  7750. <para>SetupDiGetDeviceRegistryProperty returns TRUE if the call was successful.</para>
  7751. <para>Otherwise, it returns FALSE and the logged error can be retrieved by making a call to GetLastError.</para>
  7752. <para>SetupDiGetDeviceRegistryProperty returns the ERROR_INVALID_DATA error code if the requested property does not exist for a
  7753. device or if the property data is not valid.</para>
  7754. </returns>
  7755. </member>
  7756. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FindexInfoLevels">
  7757. <summary>The FindFirstFileEx function does not query the short file name, improving overall enumeration speed.
  7758. <para>&#160;</para>
  7759. <remarks>
  7760. <para>The data is returned in a <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA"/> structure,</para>
  7761. <para>and cAlternateFileName member is always a NULL string.</para>
  7762. <para>This value is not supported until Windows Server 2008 R2 and Windows 7.</para>
  7763. </remarks>
  7764. </summary>
  7765. </member>
  7766. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.LargeCache">
  7767. <summary>Uses a larger buffer for directory queries, which can increase performance of the find operation.</summary>
  7768. <remarks>This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  7769. </member>
  7770. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.DefaultFileBufferSize">
  7771. <summary>DefaultFileBufferSize = 4096; Default type buffer size used for reading and writing files.</summary>
  7772. </member>
  7773. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.DefaultFileEncoding">
  7774. <summary>DefaultFileEncoding = Encoding.UTF8; Default type of Encoding used for reading and writing files.</summary>
  7775. </member>
  7776. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.MaxDirectoryLength">
  7777. <summary>MaxDirectoryLength = 255</summary>
  7778. </member>
  7779. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.MaxPath">
  7780. <summary>MaxPath = 260
  7781. The specified path, file name, or both exceed the system-defined maximum length.
  7782. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters.
  7783. </summary>
  7784. </member>
  7785. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.MaxPathUnicode">
  7786. <summary>MaxPathUnicode = 32000</summary>
  7787. </member>
  7788. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.OverflowExceptionBitShift">
  7789. <summary>When an exception is raised, bit shifting is needed to prevent: "System.OverflowException: Arithmetic operation resulted in an overflow."</summary>
  7790. </member>
  7791. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupRead(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.Boolean,System.Boolean,System.IntPtr@)">
  7792. <summary>The BackupRead function can be used to back up a file or directory, including the security information.
  7793. <para>The function reads data associated with a specified file or directory into a buffer,</para>
  7794. <para>which can then be written to the backup medium using the WriteFile function.</para>
  7795. </summary>
  7796. <remarks>
  7797. <para>This function is not intended for use in backing up files encrypted under the Encrypted File System.</para>
  7798. <para>Use ReadEncryptedFileRaw for that purpose.</para>
  7799. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7800. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7801. </remarks>
  7802. <param name="hFile">The file.</param>
  7803. <param name="lpBuffer">The buffer.</param>
  7804. <param name="nNumberOfBytesToRead">Number of bytes to reads.</param>
  7805. <param name="lpNumberOfBytesRead">[out] Number of bytes reads.</param>
  7806. <param name="bAbort">true to abort.</param>
  7807. <param name="bProcessSecurity">true to process security.</param>
  7808. <param name="lpContext">[out] The context.</param>
  7809. <returns>
  7810. <para>If the function succeeds, the return value is nonzero.</para>
  7811. <para>If the function fails, the return value is zero, indicating that an I/O error occurred. To get extended error information,
  7812. call GetLastError.</para>
  7813. </returns>
  7814. </member>
  7815. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupSeek(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,System.UInt32,System.UInt32@,System.UInt32@,System.IntPtr@)">
  7816. <summary>The BackupSeek function seeks forward in a data stream initially accessed by using the <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupRead(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.Boolean,System.Boolean,System.IntPtr@)"/> or
  7817. <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupWrite(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.Boolean,System.Boolean,System.IntPtr@)"/> function.
  7818. <para>The function reads data associated with a specified file or directory into a buffer, which can then be written to the backup
  7819. medium using the WriteFile function.</para>
  7820. </summary>
  7821. <remarks>
  7822. <para>Applications use the BackupSeek function to skip portions of a data stream that cause errors.</para>
  7823. <para>This function does not seek across stream headers. For example, this function cannot be used to skip the stream name.</para>
  7824. <para>If an application attempts to seek past the end of a substream, the function fails, the lpdwLowByteSeeked and
  7825. lpdwHighByteSeeked parameters</para>
  7826. <para>indicate the actual number of bytes the function seeks, and the file position is placed at the start of the next stream
  7827. header.</para>
  7828. <para>&#160;</para>
  7829. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7830. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7831. </remarks>
  7832. <param name="hFile">The file.</param>
  7833. <param name="dwLowBytesToSeek">The low bytes to seek.</param>
  7834. <param name="dwHighBytesToSeek">The high bytes to seek.</param>
  7835. <param name="lpdwLowBytesSeeked">[out] The lpdw low bytes seeked.</param>
  7836. <param name="lpdwHighBytesSeeked">[out] The lpdw high bytes seeked.</param>
  7837. <param name="lpContext">[out] The context.</param>
  7838. <returns>
  7839. <para>If the function could seek the requested amount, the function returns a nonzero value.</para>
  7840. <para>If the function could not seek the requested amount, the function returns zero. To get extended error information, call
  7841. GetLastError.</para>
  7842. </returns>
  7843. </member>
  7844. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupWrite(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.Boolean,System.Boolean,System.IntPtr@)">
  7845. <summary>The BackupWrite function can be used to restore a file or directory that was backed up using <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.BackupRead(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.UInt32@,System.Boolean,System.Boolean,System.IntPtr@)"/>.
  7846. <para>Use the ReadFile function to get a stream of data from the backup medium, then use BackupWrite to write the data to the
  7847. specified file or directory.</para>
  7848. <para>&#160;</para>
  7849. </summary>
  7850. <remarks>
  7851. <para>This function is not intended for use in restoring files encrypted under the Encrypted File System. Use WriteEncryptedFileRaw
  7852. for that purpose.</para>
  7853. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  7854. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  7855. </remarks>
  7856. <param name="hFile">The file.</param>
  7857. <param name="lpBuffer">The buffer.</param>
  7858. <param name="nNumberOfBytesToWrite">Number of bytes to writes.</param>
  7859. <param name="lpNumberOfBytesWritten">[out] Number of bytes writtens.</param>
  7860. <param name="bAbort">true to abort.</param>
  7861. <param name="bProcessSecurity">true to process security.</param>
  7862. <param name="lpContext">[out] The context.</param>
  7863. <returns>
  7864. <para>If the function succeeds, the return value is nonzero.</para>
  7865. <para>If the function fails, the return value is zero, indicating that an I/O error occurred. To get extended error information,
  7866. call GetLastError.</para>
  7867. </returns>
  7868. </member>
  7869. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.IsValidHandle(System.Runtime.InteropServices.SafeHandle,System.Boolean)">
  7870. <summary>Check is the current handle is not null, not closed and not invalid.</summary>
  7871. <param name="handle">The current handle to check.</param>
  7872. <param name="throwException"><see langword="true"/> will throw an <exception cref="P:Alphaleonis.Win32.Resources.Handle_Is_Invalid"/>, <see langword="false"/> will not raise this exception..</param>
  7873. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  7874. <exception cref="T:System.ArgumentException"/>
  7875. </member>
  7876. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.IsValidHandle(System.Runtime.InteropServices.SafeHandle,System.Int32,System.Boolean)">
  7877. <summary>Check is the current handle is not null, not closed and not invalid.</summary>
  7878. <param name="handle">The current handle to check.</param>
  7879. <param name="lastError">The result of Marshal.GetLastWin32Error()</param>
  7880. <param name="throwException"><see langword="true"/> will throw an <exception cref="P:Alphaleonis.Win32.Resources.Handle_Is_Invalid_Win32Error"/>, <see langword="false"/> will not raise this exception..</param>
  7881. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  7882. <exception cref="T:System.ArgumentException"/>
  7883. </member>
  7884. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetErrorMode(Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode)">
  7885. <summary>
  7886. Controls whether the system will handle the specified types of serious errors or whether the process will handle them.
  7887. </summary>
  7888. <remarks>
  7889. Because the error mode is set for the entire process, you must ensure that multi-threaded applications do not set different error-
  7890. mode attributes. Doing so can lead to inconsistent error handling.
  7891. </remarks>
  7892. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  7893. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  7894. <param name="uMode">The mode.</param>
  7895. <returns>The return value is the previous state of the error-mode bit attributes.</returns>
  7896. </member>
  7897. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetThreadErrorMode(Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode,Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode@)">
  7898. <summary>
  7899. Controls whether the system will handle the specified types of serious errors or whether the calling thread will handle them.
  7900. </summary>
  7901. <remarks>
  7902. Because the error mode is set for the entire process, you must ensure that multi-threaded applications do not set different error-
  7903. mode attributes. Doing so can lead to inconsistent error handling.
  7904. </remarks>
  7905. <remarks>Minimum supported client: Windows 7 [desktop apps only].</remarks>
  7906. <remarks>Minimum supported server: Windows Server 2008 R2 [desktop apps only].</remarks>
  7907. <param name="dwNewMode">The new mode.</param>
  7908. <param name="lpOldMode">[out] The old mode.</param>
  7909. <returns>The return value is the previous state of the error-mode bit attributes.</returns>
  7910. </member>
  7911. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFullPathName(System.String,System.UInt32,System.Text.StringBuilder,System.IntPtr)">
  7912. <summary>Retrieves the full path and file name of the specified file or directory.</summary>
  7913. <returns>If the function fails for any other reason, the return value is zero. To get extended error information, call GetLastError.</returns>
  7914. <remarks>The GetFullPathName function is not recommended for multithreaded applications or shared library code.</remarks>
  7915. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  7916. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  7917. </member>
  7918. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetFullPathNameTransacted(System.String,System.UInt32,System.Text.StringBuilder,System.IntPtr,System.Runtime.InteropServices.SafeHandle)">
  7919. <summary>Retrieves the full path and file name of the specified file or directory as a transacted operation.</summary>
  7920. <returns>If the function fails for any other reason, the return value is zero. To get extended error information, call GetLastError.</returns>
  7921. <remarks>Minimum supported client: Windows Vista [desktop apps only]</remarks>
  7922. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
  7923. </member>
  7924. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetLongPathName(System.String,System.Text.StringBuilder,System.UInt32)">
  7925. <summary>Converts the specified path to its long form.</summary>
  7926. <returns>
  7927. If the function succeeds, the return value is nonzero.
  7928. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7929. </returns>
  7930. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  7931. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  7932. </member>
  7933. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetLongPathNameTransacted(System.String,System.Text.StringBuilder,System.UInt32,System.Runtime.InteropServices.SafeHandle)">
  7934. <summary>Converts the specified path to its long form as a transacted operation.</summary>
  7935. <returns>
  7936. If the function succeeds, the return value is nonzero.
  7937. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7938. </returns>
  7939. <remarks>Minimum supported client: Windows Vista [desktop apps only]</remarks>
  7940. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
  7941. </member>
  7942. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetShortPathName(System.String,System.Text.StringBuilder,System.UInt32)">
  7943. <summary>Retrieves the short path form of the specified path.</summary>
  7944. <returns>
  7945. If the function succeeds, the return value is nonzero.
  7946. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  7947. </returns>
  7948. <remarks>Minimum supported client: Windows XP</remarks>
  7949. <remarks>Minimum supported server: Windows Server 2003</remarks>
  7950. </member>
  7951. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SafeSetupDiClassDevsExHandle">
  7952. <summary>Represents a wrapper class for a handle used by the SetupDiGetClassDevs/SetupDiDestroyDeviceInfoList Win32 API functions.</summary>
  7953. </member>
  7954. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SafeSetupDiClassDevsExHandle.#ctor">
  7955. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.SafeSetupDiClassDevsExHandle"/> class.</summary>
  7956. </member>
  7957. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO">
  7958. <summary>Contains the basic information for a file. Used for file handles.</summary>
  7959. <remarks>
  7960. <para>Specifying -1 for <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastAccessTime"/>, <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.ChangeTime"/>, or <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastWriteTime"/></para>
  7961. <para>indicates that operations on the current handle should not affect the given field.</para>
  7962. <para>(I.e, specifying -1 for <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastWriteTime"/> will leave the <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastWriteTime"/> unaffected by writes performed
  7963. on the current handle.)</para>
  7964. </remarks>
  7965. </member>
  7966. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.CreationTime">
  7967. <summary>The time the file was created in <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> format,
  7968. <para>which is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).</para>
  7969. </summary>
  7970. </member>
  7971. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastAccessTime">
  7972. <summary>The time the file was last accessed in <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> format.</summary>
  7973. </member>
  7974. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.LastWriteTime">
  7975. <summary>The time the file was last written to in <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> format.</summary>
  7976. </member>
  7977. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.ChangeTime">
  7978. <summary>The time the file was changed in <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> format.</summary>
  7979. </member>
  7980. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO.FileAttributes">
  7981. <summary>The file attributes.</summary>
  7982. <remarks>If this is set to 0 in a <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_BASIC_INFO"/> structure passed to SetFileInformationByHandle then none of the attributes are changed.</remarks>
  7983. </member>
  7984. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION">
  7985. <summary>Contains information that the GetFileInformationByHandle function retrieves.</summary>
  7986. </member>
  7987. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.dwFileAttributes">
  7988. <summary>The file attributes.</summary>
  7989. </member>
  7990. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.ftCreationTime">
  7991. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure that specifies when a file or directory is created.</summary>
  7992. </member>
  7993. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.ftLastAccessTime">
  7994. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure. For a file, the structure specifies the last time that a file is read from or written to.
  7995. For a directory, the structure specifies when the directory is created.
  7996. For both files and directories, the specified date is correct, but the time of day is always set to midnight.
  7997. </summary>
  7998. </member>
  7999. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.ftLastWriteTime">
  8000. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure. For a file, the structure specifies the last time that a file is written to.
  8001. For a directory, the structure specifies when the directory is created.</summary>
  8002. </member>
  8003. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.dwVolumeSerialNumber">
  8004. <summary>The serial number of the volume that contains a file.</summary>
  8005. </member>
  8006. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.nFileSizeHigh">
  8007. <summary>The high-order part of the file size.</summary>
  8008. </member>
  8009. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.nFileSizeLow">
  8010. <summary>The low-order part of the file size.</summary>
  8011. </member>
  8012. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.nNumberOfLinks">
  8013. <summary>The number of links to this file. For the FAT file system this member is always 1. For the NTFS file system, it can be more than 1.</summary>
  8014. </member>
  8015. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.nFileIndexHigh">
  8016. <summary>The high-order part of a unique identifier that is associated with a file.</summary>
  8017. </member>
  8018. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.BY_HANDLE_FILE_INFORMATION.nFileIndexLow">
  8019. <summary>The low-order part of a unique identifier that is associated with a file.</summary>
  8020. </member>
  8021. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.ChangeErrorMode">
  8022. <summary>Controls whether the system will handle the specified types of serious errors or whether the process will handle them.</summary>
  8023. <remarks>Minimum supported client: Windows 2000 Professional</remarks>
  8024. <remarks>Minimum supported server: Windows 2000 Server</remarks>
  8025. </member>
  8026. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.ChangeErrorMode.#ctor(Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode)">
  8027. <summary>ChangeErrorMode is for the Win32 SetThreadErrorMode() method, used to suppress possible pop-ups.</summary>
  8028. <param name="mode">One of the <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.ErrorMode"/> values.</param>
  8029. </member>
  8030. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO">
  8031. <summary>Contains information about files in the specified directory. Used for directory handles. Use only when calling GetFileInformationByHandleEx.</summary>
  8032. <remarks>
  8033. The number of files that are returned for each call to GetFileInformationByHandleEx depends on the size of the buffer that is passed to the function.
  8034. Any subsequent calls to GetFileInformationByHandleEx on the same handle will resume the enumeration operation after the last file is returned.
  8035. </remarks>
  8036. </member>
  8037. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.NextEntryOffset">
  8038. <summary>The offset for the next FILE_ID_BOTH_DIR_INFO structure that is returned. Contains zero (0) if no other entries follow this one.</summary>
  8039. </member>
  8040. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.FileIndex">
  8041. <summary>The byte offset of the file within the parent directory. This member is undefined for file systems, such as NTFS,
  8042. in which the position of a file within the parent directory is not fixed and can be changed at any time to maintain sort order.
  8043. </summary>
  8044. </member>
  8045. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.CreationTime">
  8046. <summary>The time that the file was created.</summary>
  8047. </member>
  8048. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.LastAccessTime">
  8049. <summary>The time that the file was last accessed.</summary>
  8050. </member>
  8051. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.LastWriteTime">
  8052. <summary>The time that the file was last written to.</summary>
  8053. </member>
  8054. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.ChangeTime">
  8055. <summary>The time that the file was last changed.</summary>
  8056. </member>
  8057. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.EndOfFile">
  8058. <summary>The absolute new end-of-file position as a byte offset from the start of the file to the end of the file.
  8059. Because this value is zero-based, it actually refers to the first free byte in the file.
  8060. In other words, EndOfFile is the offset to the byte that immediately follows the last valid byte in the file.
  8061. </summary>
  8062. </member>
  8063. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.AllocationSize">
  8064. <summary>The number of bytes that are allocated for the file. This value is usually a multiple of the sector or cluster size of the underlying physical device.</summary>
  8065. </member>
  8066. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.FileAttributes">
  8067. <summary>The file attributes.</summary>
  8068. </member>
  8069. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.FileNameLength">
  8070. <summary>The length of the file name.</summary>
  8071. </member>
  8072. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.EaSize">
  8073. <summary>The size of the extended attributes for the file.</summary>
  8074. </member>
  8075. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.ShortNameLength">
  8076. <summary>The length of ShortName.</summary>
  8077. </member>
  8078. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.ShortName">
  8079. <summary>The short 8.3 file naming convention (for example, "FILENAME.TXT") name of the file.</summary>
  8080. </member>
  8081. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.FileId">
  8082. <summary>The file ID.</summary>
  8083. </member>
  8084. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.FILE_ID_BOTH_DIR_INFO.FileName">
  8085. <summary>The first character of the file name string. This is followed in memory by the remainder of the string.</summary>
  8086. </member>
  8087. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME">
  8088. <summary>Represents the number of 100-nanosecond intervals since January 1, 1601. This structure is a 64-bit value.</summary>
  8089. </member>
  8090. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.op_Implicit(Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME)~System.Int64">
  8091. <summary>Converts a value to long.</summary>
  8092. </member>
  8093. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.ToLong">
  8094. <summary>Converts a value to long.</summary>
  8095. </member>
  8096. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.Equals(System.Object)">
  8097. <summary>Determines whether the specified Object is equal to the current Object.</summary>
  8098. <param name="obj">Another object to compare to.</param>
  8099. <returns><see langword="true"/> if the specified Object is equal to the current Object; otherwise, <see langword="false"/>.</returns>
  8100. </member>
  8101. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.GetHashCode">
  8102. <summary>Serves as a hash function for a particular type.</summary>
  8103. <returns>A hash code for the current Object.</returns>
  8104. </member>
  8105. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.op_Equality(Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME,Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME)">
  8106. <summary>Implements the operator ==</summary>
  8107. <param name="left">A.</param>
  8108. <param name="right">B.</param>
  8109. <returns>The result of the operator.</returns>
  8110. </member>
  8111. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME.op_Inequality(Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME,Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME)">
  8112. <summary>Implements the operator !=</summary>
  8113. <param name="left">A.</param>
  8114. <param name="right">B.</param>
  8115. <returns>The result of the operator.</returns>
  8116. </member>
  8117. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA">
  8118. <summary>An SP_DEVINFO_DATA structure defines a device instance that is a member of a device information set.</summary>
  8119. </member>
  8120. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA.cbSize">
  8121. <summary>The size, in bytes, of the SP_DEVINFO_DATA structure.</summary>
  8122. </member>
  8123. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA.ClassGuid">
  8124. <summary>The GUID of the device's setup class.</summary>
  8125. </member>
  8126. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA.DevInst">
  8127. <summary>An opaque handle to the device instance (also known as a handle to the devnode).</summary>
  8128. </member>
  8129. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA.Reserved">
  8130. <summary>Reserved. For internal use only.</summary>
  8131. </member>
  8132. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA">
  8133. <summary>An SP_DEVICE_INTERFACE_DATA structure defines a device interface in a device information set.</summary>
  8134. </member>
  8135. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA.cbSize">
  8136. <summary>The size, in bytes, of the SP_DEVICE_INTERFACE_DATA structure.</summary>
  8137. </member>
  8138. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA.InterfaceClassGuid">
  8139. <summary>The GUID for the class to which the device interface belongs.</summary>
  8140. </member>
  8141. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA.Flags">
  8142. <summary>Can be one or more of the following: SPINT_ACTIVE (1), SPINT_DEFAULT (2), SPINT_REMOVED (3).</summary>
  8143. </member>
  8144. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA.Reserved">
  8145. <summary>Reserved. Do not use.</summary>
  8146. </member>
  8147. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DETAIL_DATA">
  8148. <summary>An SP_DEVICE_INTERFACE_DETAIL_DATA structure contains the path for a device interface.</summary>
  8149. </member>
  8150. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DETAIL_DATA.cbSize">
  8151. <summary>The size, in bytes, of the SP_DEVICE_INTERFACE_DETAIL_DATA structure.</summary>
  8152. </member>
  8153. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DETAIL_DATA.DevicePath">
  8154. <summary>The device interface path. This path can be passed to Win32 functions such as CreateFile.</summary>
  8155. </member>
  8156. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA">
  8157. <summary>WIN32_FILE_ATTRIBUTE_DATA structure contains attribute information for a file or directory. The GetFileAttributesEx function uses this structure.</summary>
  8158. <remarks>
  8159. Not all file systems can record creation and last access time, and not all file systems record them in the same manner.
  8160. For example, on the FAT file system, create time has a resolution of 10 milliseconds, write time has a resolution of 2 seconds,
  8161. and access time has a resolution of 1 day. On the NTFS file system, access time has a resolution of 1 hour.
  8162. For more information, see File Times.
  8163. </remarks>
  8164. </member>
  8165. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.dwFileAttributes">
  8166. <summary>The file attributes of a file.</summary>
  8167. </member>
  8168. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.ftCreationTime">
  8169. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure that specifies when a file or directory was created.
  8170. If the underlying file system does not support creation time, this member is zero.</summary>
  8171. </member>
  8172. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.ftLastAccessTime">
  8173. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure.
  8174. For a file, the structure specifies when the file was last read from, written to, or for executable files, run.
  8175. For a directory, the structure specifies when the directory is created. If the underlying file system does not support last access time, this member is zero.
  8176. On the FAT file system, the specified date for both files and directories is correct, but the time of day is always set to midnight.
  8177. </summary>
  8178. </member>
  8179. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.ftLastWriteTime">
  8180. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure.
  8181. For a file, the structure specifies when the file was last written to, truncated, or overwritten, for example, when WriteFile or SetEndOfFile are used.
  8182. The date and time are not updated when file attributes or security descriptors are changed.
  8183. For a directory, the structure specifies when the directory is created. If the underlying file system does not support last write time, this member is zero.
  8184. </summary>
  8185. </member>
  8186. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.nFileSizeHigh">
  8187. <summary>The high-order DWORD of the file size. This member does not have a meaning for directories.
  8188. This value is zero unless the file size is greater than MAXDWORD.
  8189. The size of the file is equal to (nFileSizeHigh * (MAXDWORD+1)) + nFileSizeLow.
  8190. </summary>
  8191. </member>
  8192. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.nFileSizeLow">
  8193. <summary>The low-order DWORD of the file size. This member does not have a meaning for directories.</summary>
  8194. </member>
  8195. <member name="P:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA.FileSize">
  8196. <summary>The file size.</summary>
  8197. </member>
  8198. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA">
  8199. <summary>Contains information about the file that is found by the FindFirstFile, FindFirstFileEx, or FindNextFile function.</summary>
  8200. <remarks>
  8201. If a file has a long file name, the complete name appears in the cFileName member, and the 8.3 format truncated version of the name appears
  8202. in the cAlternateFileName member. Otherwise, cAlternateFileName is empty. If the FindFirstFileEx function was called with a value of FindExInfoBasic
  8203. in the fInfoLevelId parameter, the cAlternateFileName member will always contain a <see langword="null"/> string value. This remains true for all subsequent calls to the
  8204. FindNextFile function. As an alternative method of retrieving the 8.3 format version of a file name, you can use the GetShortPathName function.
  8205. For more information about file names, see File Names, Paths, and Namespaces.
  8206. </remarks>
  8207. <remarks>
  8208. Not all file systems can record creation and last access times, and not all file systems record them in the same manner.
  8209. For example, on the FAT file system, create time has a resolution of 10 milliseconds, write time has a resolution of 2 seconds,
  8210. and access time has a resolution of 1 day. The NTFS file system delays updates to the last access time for a file by up to 1 hour
  8211. after the last access. For more information, see File Times.
  8212. </remarks>
  8213. </member>
  8214. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.dwFileAttributes">
  8215. <summary>The file attributes of a file.</summary>
  8216. </member>
  8217. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.ftCreationTime">
  8218. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure that specifies when a file or directory was created.
  8219. If the underlying file system does not support creation time, this member is zero.</summary>
  8220. </member>
  8221. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.ftLastAccessTime">
  8222. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure.
  8223. For a file, the structure specifies when the file was last read from, written to, or for executable files, run.
  8224. For a directory, the structure specifies when the directory is created. If the underlying file system does not support last access time, this member is zero.
  8225. On the FAT file system, the specified date for both files and directories is correct, but the time of day is always set to midnight.
  8226. </summary>
  8227. </member>
  8228. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.ftLastWriteTime">
  8229. <summary>A <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FILETIME"/> structure.
  8230. For a file, the structure specifies when the file was last written to, truncated, or overwritten, for example, when WriteFile or SetEndOfFile are used.
  8231. The date and time are not updated when file attributes or security descriptors are changed.
  8232. For a directory, the structure specifies when the directory is created. If the underlying file system does not support last write time, this member is zero.
  8233. </summary>
  8234. </member>
  8235. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.nFileSizeHigh">
  8236. <summary>The high-order DWORD of the file size. This member does not have a meaning for directories.
  8237. This value is zero unless the file size is greater than MAXDWORD.
  8238. The size of the file is equal to (nFileSizeHigh * (MAXDWORD+1)) + nFileSizeLow.
  8239. </summary>
  8240. </member>
  8241. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.nFileSizeLow">
  8242. <summary>The low-order DWORD of the file size. This member does not have a meaning for directories.</summary>
  8243. </member>
  8244. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.dwReserved0">
  8245. <summary>If the dwFileAttributes member includes the FILE_ATTRIBUTE_REPARSE_POINT attribute, this member specifies the reparse point tag.
  8246. Otherwise, this value is undefined and should not be used.
  8247. </summary>
  8248. </member>
  8249. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.dwReserved1">
  8250. <summary>Reserved for future use.</summary>
  8251. </member>
  8252. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.cFileName">
  8253. <summary>The name of the file.</summary>
  8254. </member>
  8255. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA.cAlternateFileName">
  8256. <summary>An alternative name for the file. This name is in the classic 8.3 file name format.</summary>
  8257. </member>
  8258. <member name="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID">
  8259. <summary>Contains stream data.</summary>
  8260. </member>
  8261. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID.dwStreamId">
  8262. <summary>Type of stream data.</summary>
  8263. </member>
  8264. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID.dwStreamAttributes">
  8265. <summary>Attributes of data to facilitate cross-operating system transfer.</summary>
  8266. </member>
  8267. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID.Size">
  8268. <summary>Size of data, in bytes.</summary>
  8269. </member>
  8270. <member name="F:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_STREAM_ID.dwStreamNameSize">
  8271. <summary>Length of the name of the alternative data stream, in bytes.</summary>
  8272. </member>
  8273. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DefineDosDevice(Alphaleonis.Win32.Filesystem.DosDeviceAttributes,System.String,System.String)">
  8274. <summary>Defines, redefines, or deletes MS-DOS device names.</summary>
  8275. <returns>
  8276. If the function succeeds, the return value is nonzero.
  8277. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  8278. </returns>
  8279. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8280. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8281. </member>
  8282. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.DeleteVolumeMountPoint(System.String)">
  8283. <summary>Deletes a drive letter or mounted folder.</summary>
  8284. <returns>
  8285. If the function succeeds, the return value is nonzero.
  8286. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  8287. </returns>
  8288. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8289. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8290. </member>
  8291. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstVolume(System.Text.StringBuilder,System.UInt32)">
  8292. <summary>Retrieves the name of a volume on a computer. FindFirstVolume is used to begin scanning the volumes of a computer.</summary>
  8293. <returns>
  8294. If the function succeeds, the return value is a search handle used in a subsequent call to the FindNextVolume and FindVolumeClose functions.
  8295. If the function fails to find any volumes, the return value is the INVALID_HANDLE_VALUE error code. To get extended error information, call GetLastError.
  8296. </returns>
  8297. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8298. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8299. </member>
  8300. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindFirstVolumeMountPoint(System.String,System.Text.StringBuilder,System.UInt32)">
  8301. <summary>Retrieves the name of a mounted folder on the specified volume. FindFirstVolumeMountPoint is used to begin scanning the mounted folders on a volume.</summary>
  8302. <returns>
  8303. If the function succeeds, the return value is a search handle used in a subsequent call to the FindNextVolumeMountPoint and FindVolumeMountPointClose functions.
  8304. If the function fails to find a mounted folder on the volume, the return value is the INVALID_HANDLE_VALUE error code.
  8305. </returns>
  8306. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8307. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8308. </member>
  8309. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindNextVolume(Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle,System.Text.StringBuilder,System.UInt32)">
  8310. <summary>Continues a volume search started by a call to the FindFirstVolume function. FindNextVolume finds one volume per call.</summary>
  8311. <returns>
  8312. If the function succeeds, the return value is nonzero.
  8313. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  8314. </returns>
  8315. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8316. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8317. </member>
  8318. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindNextVolumeMountPoint(Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle,System.Text.StringBuilder,System.UInt32)">
  8319. <summary>Continues a mounted folder search started by a call to the FindFirstVolumeMountPoint function. FindNextVolumeMountPoint finds one mounted folder per call.</summary>
  8320. <returns>
  8321. If the function succeeds, the return value is nonzero.
  8322. If the function fails, the return value is zero. To get extended error information, call GetLastError. If no more mounted folders can be found, the GetLastError function returns the ERROR_NO_MORE_FILES error code.
  8323. In that case, close the search with the FindVolumeMountPointClose function.
  8324. </returns>
  8325. <remarks>Minimum supported client: Windows XP</remarks>
  8326. <remarks>Minimum supported server: Windows Server 2003</remarks>
  8327. </member>
  8328. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindVolumeClose(System.IntPtr)">
  8329. <summary>Closes the specified volume search handle.</summary>
  8330. <remarks>
  8331. <para>SetLastError is set to <see langword="false"/>.</para>
  8332. Minimum supported client: Windows XP [desktop apps only]. Minimum supported server: Windows Server 2003 [desktop apps only].
  8333. </remarks>
  8334. <returns>
  8335. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  8336. information, call GetLastError.
  8337. </returns>
  8338. </member>
  8339. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.FindVolumeMountPointClose(System.IntPtr)">
  8340. <summary>Closes the specified mounted folder search handle.</summary>
  8341. <remarks>
  8342. <para>SetLastError is set to <see langword="false"/>.</para>
  8343. <para>Minimum supported client: Windows XP</para>
  8344. <para>Minimum supported server: Windows Server 2003</para>
  8345. </remarks>
  8346. <returns>
  8347. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  8348. information, call GetLastError.
  8349. </returns>
  8350. </member>
  8351. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetDriveType(System.String)">
  8352. <summary>
  8353. Determines whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network drive.
  8354. <para>To determine whether a drive is a USB-type drive, call <see cref="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryProperty(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA@,Alphaleonis.Win32.Filesystem.NativeMethods.SetupDiGetDeviceRegistryPropertyEnum,System.UInt32@,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32,System.IntPtr)"/> and specify the
  8355. SPDRP_REMOVAL_POLICY property.</para>
  8356. </summary>
  8357. <remarks>
  8358. <para>SMB does not support volume management functions.</para>
  8359. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  8360. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  8361. </remarks>
  8362. <param name="lpRootPathName">Full pathname of the root file.</param>
  8363. <returns>
  8364. <para>The return value specifies the type of drive, see <see cref="T:System.IO.DriveType"/>.</para>
  8365. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  8366. </returns>
  8367. </member>
  8368. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetLogicalDrives">
  8369. <summary>
  8370. Retrieves a bitmask representing the currently available disk drives.
  8371. </summary>
  8372. <remarks>
  8373. <para>SMB does not support volume management functions.</para>
  8374. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  8375. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  8376. </remarks>
  8377. <returns>
  8378. <para>If the function succeeds, the return value is a bitmask representing the currently available disk drives.</para>
  8379. <para>Bit position 0 (the least-significant bit) is drive A, bit position 1 is drive B, bit position 2 is drive C, and so on.</para>
  8380. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  8381. </returns>
  8382. </member>
  8383. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetVolumeInformation(System.String,System.Text.StringBuilder,System.UInt32,System.UInt32@,System.Int32@,Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes@,System.Text.StringBuilder,System.UInt32)">
  8384. <summary>Retrieves information about the file system and volume associated with the specified root directory.</summary>
  8385. <returns>
  8386. If all the requested information is retrieved, the return value is nonzero.
  8387. If not all the requested information is retrieved, the return value is zero.
  8388. </returns>
  8389. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8390. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8391. <remarks>"lpRootPathName" must end with a trailing backslash.</remarks>
  8392. </member>
  8393. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetVolumeInformationByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Text.StringBuilder,System.UInt32,System.UInt32@,System.Int32@,Alphaleonis.Win32.Filesystem.NativeMethods.VolumeInfoAttributes@,System.Text.StringBuilder,System.UInt32)">
  8394. <summary>Retrieves information about the file system and volume associated with the specified file.</summary>
  8395. <returns>
  8396. If all the requested information is retrieved, the return value is nonzero.
  8397. If not all the requested information is retrieved, the return value is zero. To get extended error information, call GetLastError.
  8398. </returns>
  8399. <remarks>To retrieve the current compression state of a file or directory, use FSCTL_GET_COMPRESSION.</remarks>
  8400. <remarks>SMB does not support volume management functions.</remarks>
  8401. <remarks>Minimum supported client: Windows Vista [desktop apps only]</remarks>
  8402. <remarks>Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
  8403. </member>
  8404. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetVolumeNameForVolumeMountPoint(System.String,System.Text.StringBuilder,System.UInt32)">
  8405. <summary>Retrieves a volume GUID path for the volume that is associated with the specified volume mount point (drive letter, volume GUID path, or mounted folder).</summary>
  8406. <returns>
  8407. If the function succeeds, the return value is nonzero.
  8408. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  8409. </returns>
  8410. <remarks>Use GetVolumeNameForVolumeMountPoint to obtain a volume GUID path for use with functions such as SetVolumeMountPoint and FindFirstVolumeMountPoint that require a volume GUID path as an input parameter.</remarks>
  8411. <remarks>SMB does not support volume management functions.</remarks>
  8412. <remarks>Mount points aren't supported by ReFS volumes.</remarks>
  8413. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  8414. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  8415. </member>
  8416. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetVolumePathName(System.String,System.Text.StringBuilder,System.UInt32)">
  8417. <summary>Retrieves the volume mount point where the specified path is mounted.</summary>
  8418. <remarks>
  8419. <para>If a specified path is passed, GetVolumePathName returns the path to the volume mount point, which means that it returns the
  8420. root of the volume where the end point of the specified path is located.</para>
  8421. <para>For example, assume that you have volume D mounted at C:\Mnt\Ddrive and volume E mounted at "C:\Mnt\Ddrive\Mnt\Edrive". Also
  8422. assume that you have a file with the path "E:\Dir\Subdir\MyFile".</para>
  8423. <para>If you pass "C:\Mnt\Ddrive\Mnt\Edrive\Dir\Subdir\MyFile" to GetVolumePathName, it returns the path "C:\Mnt\Ddrive\Mnt\Edrive\".</para>
  8424. <para>If a network share is specified, GetVolumePathName returns the shortest path for which GetDriveType returns DRIVE_REMOTE,
  8425. which means that the path is validated as a remote drive that exists, which the current user can access.</para>
  8426. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  8427. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  8428. </remarks>
  8429. <returns>
  8430. <para>If the function succeeds, the return value is nonzero.</para>
  8431. <para>If the function fails, the return value is zero. To get extended error information, call GetLastError.</para>
  8432. </returns>
  8433. </member>
  8434. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.GetVolumePathNamesForVolumeName(System.String,System.Char[],System.UInt32,System.UInt32@)">
  8435. <summary>Retrieves a list of drive letters and mounted folder paths for the specified volume.</summary>
  8436. <remarks>Minimum supported client: Windows XP.</remarks>
  8437. <remarks>Minimum supported server: Windows Server 2003.</remarks>
  8438. <returns>
  8439. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  8440. information, call GetLastError.
  8441. </returns>
  8442. </member>
  8443. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetVolumeLabel(System.String,System.String)">
  8444. <summary>Sets the label of a file system volume.</summary>
  8445. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  8446. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  8447. <remarks>"lpRootPathName" must end with a trailing backslash.</remarks>
  8448. <returns>
  8449. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  8450. information, call GetLastError.
  8451. </returns>
  8452. </member>
  8453. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.SetVolumeMountPoint(System.String,System.String)">
  8454. <summary>Associates a volume with a drive letter or a directory on another volume.</summary>
  8455. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  8456. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  8457. <returns>
  8458. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  8459. information, call GetLastError.
  8460. </returns>
  8461. </member>
  8462. <member name="M:Alphaleonis.Win32.Filesystem.NativeMethods.QueryDosDevice(System.String,System.Char[],System.UInt32)">
  8463. <summary>Retrieves information about MS-DOS device names.</summary>
  8464. <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
  8465. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
  8466. <returns>
  8467. If the function succeeds, the return value is the number of TCHARs stored into the buffer pointed to by lpTargetPath. If the
  8468. function fails, the return value is zero. To get extended error information, call GetLastError. If the buffer is too small, the
  8469. function fails and the last error code is ERROR_INSUFFICIENT_BUFFER.
  8470. </returns>
  8471. </member>
  8472. <member name="T:Alphaleonis.Win32.Filesystem.PathFormat">
  8473. <summary>Indicates the format of a path passed to a method.</summary>
  8474. <remarks>
  8475. At some point in code you know the full path of file system objects, e.g.: "C:\Windows".
  8476. For example, Directory.EnumerateFileSystemEntries() will return all files and directories from a given path.
  8477. Most likely, some processing will happen on the results of the enum. The file or directory may be passed
  8478. on to another function. Whenever a file path is required, some performance can be gained.
  8479. <para>&#160;</para>
  8480. A path like: "C:\Windows" or "\\server\share" is considered a full path for a directory because it is rooted and has a drive/unc path.
  8481. If the method supports it, <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.FullPath"/> and <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.LongFullPath"/> will skip GetFullPath()
  8482. calls for path resolving of the object, while also avoiding path validation and checks.
  8483. Using <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.RelativePath"/> (default) will always call GetFullPath() and perform path validation and checks.
  8484. <para>&#160;</para>
  8485. When working in a loop with thousands of files, <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.LongFullPath"/> will give the best performance.
  8486. </remarks>
  8487. </member>
  8488. <member name="F:Alphaleonis.Win32.Filesystem.PathFormat.RelativePath">
  8489. <summary>The format of the path is automatically detected by the method and internally converted to an extended length path.
  8490. It can be either a standard (short) full path, an extended length (unicode) full path or a relative path.
  8491. <para>Example relative path: "Windows".</para>
  8492. </summary>
  8493. </member>
  8494. <member name="F:Alphaleonis.Win32.Filesystem.PathFormat.FullPath">
  8495. <summary>The path is a full path in either normal or extended length (UNICODE) format.
  8496. Internally it will be converted to an extended length (UNICODE) path.
  8497. Using this option has a very slight performance advantage compared to using <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.RelativePath"/>.
  8498. <para>Example full path: "C:\Windows" or "\\server\share".</para>
  8499. </summary>
  8500. </member>
  8501. <member name="F:Alphaleonis.Win32.Filesystem.PathFormat.LongFullPath">
  8502. <summary>The path is an extended length path. No additional processing will be done on the path, and it will be used as is.
  8503. Using this option has a slight performance advantage compared to using <see cref="F:Alphaleonis.Win32.Filesystem.PathFormat.RelativePath"/>.
  8504. <para>Example long full path: "\\?\C:\Windows" or "\\?\UNC\server\share".</para>
  8505. </summary>
  8506. </member>
  8507. <member name="T:Alphaleonis.Win32.Filesystem.AlreadyExistsException">
  8508. <summary>The exception that is thrown when an attempt to create a directory or file that already exists was made.</summary>
  8509. </member>
  8510. <member name="M:Alphaleonis.Win32.Filesystem.AlreadyExistsException.#ctor">
  8511. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.AlreadyExistsException"/> class.</summary>
  8512. </member>
  8513. <member name="M:Alphaleonis.Win32.Filesystem.AlreadyExistsException.#ctor(System.String)">
  8514. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.AlreadyExistsException"/> class.</summary>
  8515. <param name="message">The message.</param>
  8516. </member>
  8517. <member name="M:Alphaleonis.Win32.Filesystem.AlreadyExistsException.#ctor(System.String,System.Exception)">
  8518. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.AlreadyExistsException"/> class.</summary>
  8519. <param name="message">The message.</param>
  8520. <param name="innerException">The inner exception.</param>
  8521. </member>
  8522. <member name="M:Alphaleonis.Win32.Filesystem.AlreadyExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8523. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.AlreadyExistsException"/> class.</summary>
  8524. <param name="info">The data for serializing or deserializing the object.</param>
  8525. <param name="context">The source and destination for the object.</param>
  8526. </member>
  8527. <member name="T:Alphaleonis.Win32.Filesystem.DeviceNotReadyException">
  8528. <summary>The requested operation could not be completed because the device was not ready.</summary>
  8529. </member>
  8530. <member name="M:Alphaleonis.Win32.Filesystem.DeviceNotReadyException.#ctor">
  8531. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceNotReadyException"/> class.</summary>
  8532. </member>
  8533. <member name="M:Alphaleonis.Win32.Filesystem.DeviceNotReadyException.#ctor(System.String)">
  8534. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceNotReadyException"/> class.</summary>
  8535. <param name="message">The message.</param>
  8536. </member>
  8537. <member name="M:Alphaleonis.Win32.Filesystem.DeviceNotReadyException.#ctor(System.String,System.Exception)">
  8538. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceNotReadyException"/> class.</summary>
  8539. <param name="message">The message.</param>
  8540. <param name="innerException">The inner exception.</param>
  8541. </member>
  8542. <member name="M:Alphaleonis.Win32.Filesystem.DeviceNotReadyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8543. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceNotReadyException"/> class.</summary>
  8544. <param name="info">The data for serializing or deserializing the object.</param>
  8545. <param name="context">The source and destination for the object.</param>
  8546. </member>
  8547. <member name="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException">
  8548. <summary>The operation could not be completed because the directory is read-only.</summary>
  8549. </member>
  8550. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException.#ctor">
  8551. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/> class.</summary>
  8552. </member>
  8553. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException.#ctor(System.String)">
  8554. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/> class.</summary>
  8555. <param name="message">The message.</param>
  8556. </member>
  8557. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException.#ctor(System.String,System.Exception)">
  8558. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/> class.</summary>
  8559. <param name="message">The message.</param>
  8560. <param name="innerException">The inner exception.</param>
  8561. </member>
  8562. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8563. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryReadOnlyException"/> class.</summary>
  8564. <param name="info">The data for serializing or deserializing the object.</param>
  8565. <param name="context">The source and destination for the object.</param>
  8566. </member>
  8567. <member name="T:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException">
  8568. <summary>The operation could not be completed because the directory was not empty.</summary>
  8569. </member>
  8570. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException.#ctor">
  8571. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException"/> class.</summary>
  8572. </member>
  8573. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException.#ctor(System.String)">
  8574. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException"/> class.</summary>
  8575. <param name="message">The message.</param>
  8576. </member>
  8577. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException.#ctor(System.String,System.Exception)">
  8578. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException"/> class.</summary>
  8579. <param name="message">The message.</param>
  8580. <param name="innerException">The inner exception.</param>
  8581. </member>
  8582. <member name="M:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8583. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryNotEmptyException"/> class.</summary>
  8584. <param name="info">The data for serializing or deserializing the object.</param>
  8585. <param name="context">The source and destination for the object.</param>
  8586. </member>
  8587. <member name="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException">
  8588. <summary>The operation could not be completed because the file is read-only.</summary>
  8589. </member>
  8590. <member name="M:Alphaleonis.Win32.Filesystem.FileReadOnlyException.#ctor">
  8591. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/> class.</summary>
  8592. </member>
  8593. <member name="M:Alphaleonis.Win32.Filesystem.FileReadOnlyException.#ctor(System.String)">
  8594. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/> class.</summary>
  8595. <param name="message">The message.</param>
  8596. </member>
  8597. <member name="M:Alphaleonis.Win32.Filesystem.FileReadOnlyException.#ctor(System.String,System.Exception)">
  8598. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/> class.</summary>
  8599. <param name="message">The message.</param>
  8600. <param name="innerException">The inner exception.</param>
  8601. </member>
  8602. <member name="M:Alphaleonis.Win32.Filesystem.FileReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  8603. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/> class.</summary>
  8604. <param name="info">The data for serializing or deserializing the object.</param>
  8605. <param name="context">The source and destination for the object.</param>
  8606. </member>
  8607. <member name="T:Alphaleonis.Win32.Filesystem.File">
  8608. <summary>Provides static methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of <see cref="T:System.IO.FileStream"/> objects.
  8609. <para>This class cannot be inherited.</para>
  8610. </summary>
  8611. </member>
  8612. <member name="M:Alphaleonis.Win32.Filesystem.File.GetHash(System.String,Alphaleonis.Win32.Security.HashType)">
  8613. <summary>[AlphaFS] Calculates the hash/checksum for the given <paramref name="fileFullPath"/>.</summary>
  8614. <param name="fileFullPath">The name of the file.</param>
  8615. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  8616. </member>
  8617. <member name="M:Alphaleonis.Win32.Filesystem.File.GetHash(System.String,Alphaleonis.Win32.Security.HashType,Alphaleonis.Win32.Filesystem.PathFormat)">
  8618. <summary>[AlphaFS] Calculates the hash/checksum for the given <paramref name="fileFullPath"/>.</summary>
  8619. <param name="fileFullPath">The name of the file.</param>
  8620. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  8621. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8622. </member>
  8623. <member name="M:Alphaleonis.Win32.Filesystem.File.GetHash(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Security.HashType)">
  8624. <summary>[AlphaFS] Calculates the hash/checksum for the given <paramref name="fileFullPath"/>.</summary>
  8625. <param name="transaction">The transaction.</param>
  8626. <param name="fileFullPath">The name of the file.</param>
  8627. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  8628. </member>
  8629. <member name="M:Alphaleonis.Win32.Filesystem.File.GetHash(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Security.HashType,Alphaleonis.Win32.Filesystem.PathFormat)">
  8630. <summary>[AlphaFS] Calculates the hash/checksum for the given <paramref name="fileFullPath"/>.</summary>
  8631. <param name="transaction">The transaction.</param>
  8632. <param name="fileFullPath">The name of the file.</param>
  8633. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  8634. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8635. </member>
  8636. <member name="M:Alphaleonis.Win32.Filesystem.File.GetHashCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Security.HashType,Alphaleonis.Win32.Filesystem.PathFormat)">
  8637. <summary>[AlphaFS] Calculates the hash/checksum for the given <paramref name="fileFullPath"/>.</summary>
  8638. <param name="transaction">The transaction.</param>
  8639. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  8640. <param name="fileFullPath">The name of the file.</param>
  8641. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8642. </member>
  8643. <member name="M:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw(System.String,System.IO.Stream)">
  8644. <summary>[AlphaFS] Backs up (export) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8645. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8646. <remarks>
  8647. <para>
  8648. The file being backed up is not decrypted; it is backed up in its encrypted state.
  8649. </para>
  8650. <para>
  8651. If the caller does not have access to the key for the file, the caller needs
  8652. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to export encrypted files. See
  8653. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8654. </para>
  8655. <para>
  8656. To backup an encrypted file call one of the
  8657. <see cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/> overloads and specify the file to backup
  8658. along with the destination stream of the backup data.
  8659. </para>
  8660. <para>
  8661. This function is intended for the backup of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup
  8662. of unencrypted files.
  8663. </para>
  8664. </remarks>
  8665. <param name="fileName">The name of the file to be backed up.</param>
  8666. <param name="outputStream">The destination stream to which the backup data will be written.</param>
  8667. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  8668. </member>
  8669. <member name="M:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw(System.String,System.IO.Stream,Alphaleonis.Win32.Filesystem.PathFormat)">
  8670. <summary>[AlphaFS] Backs up (export) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8671. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8672. <remarks>
  8673. <para>
  8674. The file being backed up is not decrypted; it is backed up in its encrypted state.
  8675. </para>
  8676. <para>
  8677. If the caller does not have access to the key for the file, the caller needs
  8678. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to export encrypted files. See
  8679. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8680. </para>
  8681. <para>
  8682. To backup an encrypted file call one of the
  8683. <see cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/> overloads and specify the file to backup
  8684. along with the destination stream of the backup data.
  8685. </para>
  8686. <para>
  8687. This function is intended for the backup of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for backup
  8688. of unencrypted files.
  8689. </para>
  8690. </remarks>
  8691. <param name="fileName">The name of the file to be backed up.</param>
  8692. <param name="outputStream">The destination stream to which the backup data will be written.</param>
  8693. <param name="pathFormat">The path format of the <paramref name="fileName"/> parameter.</param>
  8694. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/>
  8695. </member>
  8696. <member name="M:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw(System.IO.Stream,System.String)">
  8697. <summary>[AlphaFS] Restores (import) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8698. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8699. <remarks>
  8700. <para>
  8701. If the caller does not have access to the key for the file, the caller needs
  8702. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted files. See
  8703. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8704. </para>
  8705. <para>
  8706. To restore an encrypted file call one of the
  8707. <see cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/> overloads and specify the file to restore
  8708. along with the destination stream of the restored data.
  8709. </para>
  8710. <para>
  8711. This function is intended for the restoration of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for
  8712. backup of unencrypted files.
  8713. </para>
  8714. </remarks>
  8715. <param name="inputStream">The stream to read previously backed up data from.</param>
  8716. <param name="destinationFilePath">The path of the destination file to restore to.</param>
  8717. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  8718. </member>
  8719. <member name="M:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw(System.IO.Stream,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8720. <summary>[AlphaFS] Restores (import) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8721. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8722. <remarks>
  8723. <para>
  8724. If the caller does not have access to the key for the file, the caller needs
  8725. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted files. See
  8726. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8727. </para>
  8728. <para>
  8729. To restore an encrypted file call one of the
  8730. <see cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/> overloads and specify the file to restore
  8731. along with the destination stream of the restored data.
  8732. </para>
  8733. <para>
  8734. This function is intended for the restoration of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for
  8735. backup of unencrypted files.
  8736. </para>
  8737. </remarks>
  8738. <param name="inputStream">The stream to read previously backed up data from.</param>
  8739. <param name="destinationFilePath">The path of the destination file to restore to.</param>
  8740. <param name="pathFormat">The path format of the <paramref name="destinationFilePath"/> parameter.</param>
  8741. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  8742. </member>
  8743. <member name="M:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw(System.IO.Stream,System.String,System.Boolean)">
  8744. <summary>[AlphaFS] Restores (import) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8745. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8746. <remarks>
  8747. <para>
  8748. If the caller does not have access to the key for the file, the caller needs
  8749. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted files. See
  8750. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8751. </para>
  8752. <para>
  8753. To restore an encrypted file call one of the
  8754. <see cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/> overloads and specify the file to restore
  8755. along with the destination stream of the restored data.
  8756. </para>
  8757. <para>
  8758. This function is intended for the restoration of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for
  8759. backup of unencrypted files.
  8760. </para>
  8761. </remarks>
  8762. <param name="inputStream">The stream to read previously backed up data from.</param>
  8763. <param name="destinationFilePath">The path of the destination file to restore to.</param>
  8764. <param name="overwriteHidden">If set to <see langword="true"/> a hidden file will be overwritten on import.</param>
  8765. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  8766. </member>
  8767. <member name="M:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw(System.IO.Stream,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  8768. <summary>[AlphaFS] Restores (import) encrypted files. This is one of a group of Encrypted File System (EFS) functions that is
  8769. intended to implement backup and restore functionality, while maintaining files in their encrypted state.</summary>
  8770. <remarks>
  8771. <para>
  8772. If the caller does not have access to the key for the file, the caller needs
  8773. <see cref="F:Alphaleonis.Win32.Security.Privilege.Backup"/> to restore encrypted files. See
  8774. <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>.
  8775. </para>
  8776. <para>
  8777. To restore an encrypted file call one of the
  8778. <see cref="O:Alphaleonis.Win32.Filesystem.File.ImportEncryptedFileRaw"/> overloads and specify the file to restore
  8779. along with the destination stream of the restored data.
  8780. </para>
  8781. <para>
  8782. This function is intended for the restoration of only encrypted files; see <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> for
  8783. backup of unencrypted files.
  8784. </para>
  8785. </remarks>
  8786. <param name="inputStream">The stream to read previously backed up data from.</param>
  8787. <param name="destinationFilePath">The path of the destination file to restore to.</param>
  8788. <param name="overwriteHidden">If set to <see langword="true"/> a hidden file will be overwritten on import.</param>
  8789. <param name="pathFormat">The path format of the <paramref name="destinationFilePath"/> parameter.</param>
  8790. <seealso cref="O:Alphaleonis.Win32.Filesystem.File.ExportEncryptedFileRaw"/>
  8791. </member>
  8792. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreams(System.String)">
  8793. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified file.</summary>
  8794. <param name="path">The path to the file to enumerate streams of.</param>
  8795. <returns>The streams of type :$DATA in the specified file.</returns>
  8796. </member>
  8797. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreams(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8798. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified file.</summary>
  8799. <param name="path">The path to the file to enumerate streams of.</param>
  8800. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8801. <returns>The streams of type :$DATA in the specified file.</returns>
  8802. </member>
  8803. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreamsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  8804. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified file.</summary>
  8805. <param name="transaction">The transaction.</param>
  8806. <param name="path">The path to the file to enumerate streams of.</param>
  8807. <returns>The streams of type :$DATA in the specified file.</returns>
  8808. </member>
  8809. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreamsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8810. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified file.</summary>
  8811. <param name="transaction">The transaction.</param>
  8812. <param name="path">The path to the file to enumerate streams of.</param>
  8813. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8814. <returns>The streams of type :$DATA in the specified file.</returns>
  8815. </member>
  8816. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateAlternateDataStreamsCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8817. <summary>[AlphaFS] Enumerates the streams of type :$DATA from the specified file or directory.</summary>
  8818. <param name="transaction">The transaction.</param>
  8819. <param name="path">The path to the file or directory to enumerate streams of.</param>
  8820. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8821. <returns>The streams of type :$DATA in the specified file or directory.</returns>
  8822. </member>
  8823. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateHardlinks(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8824. <summary>[AlphaFS] Creates an enumeration of all the hard links to the specified <paramref name="path"/>.</summary>
  8825. <param name="path">The name of the file.</param>
  8826. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8827. <returns>An enumerable collection of <see cref="T:System.String"/> of all the hard links to the specified <paramref name="path"/></returns>
  8828. </member>
  8829. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateHardlinks(System.String)">
  8830. <summary>[AlphaFS] Creates an enumeration of all the hard links to the specified <paramref name="path"/>.</summary>
  8831. <param name="path">The name of the file.</param>
  8832. <returns>An enumerable collection of <see cref="T:System.String"/> of all the hard links to the specified <paramref name="path"/></returns>
  8833. </member>
  8834. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateHardlinksTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8835. <summary>[AlphaFS] Creates an enumeration of all the hard links to the specified <paramref name="path"/>.</summary>
  8836. <param name="transaction">The transaction.</param>
  8837. <param name="path">The name of the file.</param>
  8838. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8839. <returns>An enumerable collection of <see cref="T:System.String"/> of all the hard links to the specified <paramref name="path"/></returns>
  8840. </member>
  8841. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateHardlinksTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  8842. <summary>[AlphaFS] Creates an enumeration of all the hard links to the specified <paramref name="path"/>.</summary>
  8843. <param name="transaction">The transaction.</param>
  8844. <param name="path">The name of the file.</param>
  8845. <returns>An enumerable collection of <see cref="T:System.String"/> of all the hard links to the specified <paramref name="path"/></returns>
  8846. </member>
  8847. <member name="M:Alphaleonis.Win32.Filesystem.File.EnumerateHardlinksCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8848. <summary>[AlphaFS] Creates an enumeration of all the hard links to the specified <paramref name="path"/>.</summary>
  8849. <exception cref="T:System.PlatformNotSupportedException"/>
  8850. <param name="transaction">The transaction.</param>
  8851. <param name="path">The name of the file.</param>
  8852. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8853. <returns>An enumerable collection of <see cref="T:System.String"/> of all the hard links to the specified <paramref name="path"/></returns>
  8854. </member>
  8855. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateSymbolicLink(System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget,Alphaleonis.Win32.Filesystem.PathFormat)">
  8856. <summary>[AlphaFS] Creates a symbolic link.</summary>
  8857. <remarks>See <see cref="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
  8858. <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
  8859. <param name="targetFileName">The symbolic link to be created.</param>
  8860. <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
  8861. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8862. <exception cref="T:System.PlatformNotSupportedException"/>
  8863. <exception>Several Exceptions possible.</exception>
  8864. </member>
  8865. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateSymbolicLink(System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget)">
  8866. <summary>[AlphaFS] Creates a symbolic link.</summary>
  8867. <remarks>See <see cref="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
  8868. <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
  8869. <param name="targetFileName">The symbolic link to be created.</param>
  8870. <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
  8871. <exception cref="T:System.PlatformNotSupportedException"/>
  8872. <exception>Several Exceptions possible.</exception>
  8873. </member>
  8874. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateSymbolicLinkTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget,Alphaleonis.Win32.Filesystem.PathFormat)">
  8875. <summary>[AlphaFS] Creates a symbolic link.</summary>
  8876. <remarks>See <see cref="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
  8877. <param name="transaction">The transaction.</param>
  8878. <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
  8879. <param name="targetFileName">The symbolic link to be created.</param>
  8880. <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
  8881. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8882. <exception cref="T:System.PlatformNotSupportedException"/>
  8883. <exception>Several Exceptions possible.</exception>
  8884. </member>
  8885. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateSymbolicLinkTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget)">
  8886. <summary>[AlphaFS] Creates a symbolic link.</summary>
  8887. <remarks>See <see cref="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
  8888. <param name="transaction">The transaction.</param>
  8889. <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
  8890. <param name="targetFileName">The symbolic link to be created.</param>
  8891. <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
  8892. <exception cref="T:System.PlatformNotSupportedException"/>
  8893. <exception>Several Exceptions possible.</exception>
  8894. </member>
  8895. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateSymbolicLinkCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.SymbolicLinkTarget,Alphaleonis.Win32.Filesystem.PathFormat)">
  8896. <summary>Creates a symbolic link.</summary>
  8897. <remarks>See <see cref="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink"/> to run this method in an elevated state.</remarks>
  8898. <param name="transaction">The transaction.</param>
  8899. <param name="symlinkFileName">The name of the target for the symbolic link to be created.</param>
  8900. <param name="targetFileName">The symbolic link to be created.</param>
  8901. <param name="targetType">Indicates whether the link target, <paramref name="targetFileName"/>, is a file or directory.</param>
  8902. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8903. <exception cref="T:System.PlatformNotSupportedException"/>
  8904. <exception>Several Exceptions possible.</exception>
  8905. </member>
  8906. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateHardlink(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8907. <summary>[AlphaFS] Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system, and only for files, not directories.</summary>
  8908. <param name="fileName">The name of the new file. This parameter cannot specify the name of a directory.</param>
  8909. <param name="existingFileName">The name of the existing file. This parameter cannot specify the name of a directory.</param>
  8910. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8911. </member>
  8912. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateHardlink(System.String,System.String)">
  8913. <summary>[AlphaFS] Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system, and only for files, not directories.</summary>
  8914. <param name="fileName">The name of the new file. This parameter cannot specify the name of a directory.</param>
  8915. <param name="existingFileName">The name of the existing file. This parameter cannot specify the name of a directory.</param>
  8916. </member>
  8917. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateHardlinkTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8918. <summary>
  8919. [AlphaFS] Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system,
  8920. and only for files, not directories.
  8921. </summary>
  8922. <param name="transaction">The transaction.</param>
  8923. <param name="fileName">The name of the new file. This parameter cannot specify the name of a directory.</param>
  8924. <param name="existingFileName">The name of the existing file. This parameter cannot specify the name of a directory.</param>
  8925. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8926. </member>
  8927. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateHardlinkTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  8928. <summary>
  8929. [AlphaFS] Establishes a hard link between an existing file and a new file. This function is only supported on the NTFS file system,
  8930. and only for files, not directories.
  8931. </summary>
  8932. <param name="transaction">The transaction.</param>
  8933. <param name="fileName">The name of the new file. This parameter cannot specify the name of a directory.</param>
  8934. <param name="existingFileName">The name of the existing file. This parameter cannot specify the name of a directory.</param>
  8935. </member>
  8936. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateHardlinkCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8937. <summary>Establish a hard link between an existing file and a new file. This function
  8938. is only supported on the NTFS file system, and only for files, not directories.
  8939. </summary>
  8940. <exception cref="T:System.NotSupportedException"/>
  8941. <param name="transaction">The transaction.</param>
  8942. <param name="fileName">The name of the new file. This parameter cannot specify the name of a directory.</param>
  8943. <param name="existingFileName">The name of the existing file. This parameter cannot specify the name of a directory.</param>
  8944. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8945. </member>
  8946. <member name="M:Alphaleonis.Win32.Filesystem.File.Compress(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8947. <summary>[AlphaFS] Compresses a file using NTFS compression.</summary>
  8948. <param name="path">A path that describes a file to compress.</param>
  8949. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8950. </member>
  8951. <member name="M:Alphaleonis.Win32.Filesystem.File.Compress(System.String)">
  8952. <summary>[AlphaFS] Compresses a file using NTFS compression.</summary>
  8953. <param name="path">A path that describes a file to compress.</param>
  8954. </member>
  8955. <member name="M:Alphaleonis.Win32.Filesystem.File.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8956. <summary>[AlphaFS] Compresses a file using NTFS compression.</summary>
  8957. <param name="transaction">The transaction.</param>
  8958. <param name="path">A path that describes a file to compress.</param>
  8959. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8960. </member>
  8961. <member name="M:Alphaleonis.Win32.Filesystem.File.CompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  8962. <summary>[AlphaFS] Compresses a file using NTFS compression.</summary>
  8963. <param name="transaction">The transaction.</param>
  8964. <param name="path">A path that describes a file to compress.</param>
  8965. </member>
  8966. <member name="M:Alphaleonis.Win32.Filesystem.File.Decompress(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8967. <summary>[AlphaFS] Decompresses an NTFS compressed file.</summary>
  8968. <param name="path">A path that describes a file to decompress.</param>
  8969. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8970. </member>
  8971. <member name="M:Alphaleonis.Win32.Filesystem.File.Decompress(System.String)">
  8972. <summary>[AlphaFS] Decompresses an NTFS compressed file.</summary>
  8973. <param name="path">A path that describes a file to decompress.</param>
  8974. </member>
  8975. <member name="M:Alphaleonis.Win32.Filesystem.File.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  8976. <summary>[AlphaFS] Decompresses an NTFS compressed file.</summary>
  8977. <param name="transaction">The transaction.</param>
  8978. <param name="path">A path that describes a file to decompress.</param>
  8979. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  8980. </member>
  8981. <member name="M:Alphaleonis.Win32.Filesystem.File.DecompressTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  8982. <summary>[AlphaFS] Decompresses an NTFS compressed file.</summary>
  8983. <param name="transaction">The transaction.</param>
  8984. <param name="path">A path that describes a file to decompress.</param>
  8985. </member>
  8986. <member name="M:Alphaleonis.Win32.Filesystem.File.Delete(System.String)">
  8987. <summary>Deletes the specified file.</summary>
  8988. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  8989. <param name="path">
  8990. The name of the file to be deleted. Wildcard characters are not supported.
  8991. </param>
  8992. <exception cref="T:System.ArgumentException"/>
  8993. <exception cref="T:System.NotSupportedException"/>
  8994. <exception cref="T:System.UnauthorizedAccessException"/>
  8995. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  8996. </member>
  8997. <member name="M:Alphaleonis.Win32.Filesystem.File.Delete(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  8998. <summary>[AlphaFS] Deletes the specified file.</summary>
  8999. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9000. <param name="path">
  9001. The name of the file to be deleted. Wildcard characters are not supported.
  9002. </param>
  9003. <param name="ignoreReadOnly">
  9004. <see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.
  9005. </param>
  9006. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9007. <exception cref="T:System.ArgumentException"/>
  9008. <exception cref="T:System.NotSupportedException"/>
  9009. <exception cref="T:System.UnauthorizedAccessException"/>
  9010. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9011. </member>
  9012. <member name="M:Alphaleonis.Win32.Filesystem.File.Delete(System.String,System.Boolean)">
  9013. <summary>[AlphaFS] Deletes the specified file.</summary>
  9014. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9015. <param name="path">
  9016. The name of the file to be deleted. Wildcard characters are not supported.
  9017. </param>
  9018. <param name="ignoreReadOnly">
  9019. <see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.
  9020. </param>
  9021. <exception cref="T:System.ArgumentException"/>
  9022. <exception cref="T:System.NotSupportedException"/>
  9023. <exception cref="T:System.UnauthorizedAccessException"/>
  9024. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9025. </member>
  9026. <member name="M:Alphaleonis.Win32.Filesystem.File.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  9027. <summary>[AlphaFS] Deletes the specified file.</summary>
  9028. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9029. <param name="transaction">The transaction.</param>
  9030. <param name="path">
  9031. The name of the file to be deleted. Wildcard characters are not supported.
  9032. </param>
  9033. <exception cref="T:System.ArgumentException"/>
  9034. <exception cref="T:System.NotSupportedException"/>
  9035. <exception cref="T:System.UnauthorizedAccessException"/>
  9036. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9037. </member>
  9038. <member name="M:Alphaleonis.Win32.Filesystem.File.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9039. <summary>[AlphaFS] Deletes the specified file.</summary>
  9040. <param name="transaction">The transaction.</param>
  9041. <param name="path">The name of the file to be deleted. Wildcard characters are not supported.</param>
  9042. <param name="ignoreReadOnly"><see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.</param>
  9043. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9044. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9045. <exception cref="T:System.ArgumentException"/>
  9046. <exception cref="T:System.NotSupportedException"/>
  9047. <exception cref="T:System.UnauthorizedAccessException"/>
  9048. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9049. </member>
  9050. <member name="M:Alphaleonis.Win32.Filesystem.File.DeleteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean)">
  9051. <summary>[AlphaFS] Deletes the specified file.</summary>
  9052. <param name="transaction">The transaction.</param>
  9053. <param name="path">The name of the file to be deleted. Wildcard characters are not supported.</param>
  9054. <param name="ignoreReadOnly"><see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.</param>
  9055. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9056. <exception cref="T:System.ArgumentException"/>
  9057. <exception cref="T:System.NotSupportedException"/>
  9058. <exception cref="T:System.UnauthorizedAccessException"/>
  9059. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9060. </member>
  9061. <member name="M:Alphaleonis.Win32.Filesystem.File.DeleteFileCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9062. <summary>Deletes a Non-/Transacted file.</summary>
  9063. <remarks>If the file to be deleted does not exist, no exception is thrown.</remarks>
  9064. <exception cref="T:System.ArgumentException"/>
  9065. <exception cref="T:System.NotSupportedException"/>
  9066. <exception cref="T:System.UnauthorizedAccessException"/>
  9067. <exception cref="T:Alphaleonis.Win32.Filesystem.FileReadOnlyException"/>
  9068. <param name="transaction">The transaction.</param>
  9069. <param name="path">The name of the file to be deleted.</param>
  9070. <param name="ignoreReadOnly"><see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.</param>
  9071. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9072. </member>
  9073. <member name="M:Alphaleonis.Win32.Filesystem.File.Decrypt(System.String)">
  9074. <summary>Decrypts a file that was encrypted by the current account using the Encrypt method.</summary>
  9075. <param name="path">A path that describes a file to decrypt.</param>
  9076. </member>
  9077. <member name="M:Alphaleonis.Win32.Filesystem.File.Decrypt(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9078. <summary>[AlphaFS] Decrypts a file that was encrypted by the current account using the Encrypt method.</summary>
  9079. <param name="path">A path that describes a file to decrypt.</param>
  9080. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9081. </member>
  9082. <member name="M:Alphaleonis.Win32.Filesystem.File.Encrypt(System.String)">
  9083. <summary>Encrypts a file so that only the account used to encrypt the file can decrypt it.</summary>
  9084. <param name="path">A path that describes a file to encrypt.</param>
  9085. </member>
  9086. <member name="M:Alphaleonis.Win32.Filesystem.File.Encrypt(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9087. <summary>[AlphaFS] Encrypts a file so that only the account used to encrypt the file can decrypt it.</summary>
  9088. <param name="path">A path that describes a file to encrypt.</param>
  9089. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9090. </member>
  9091. <member name="M:Alphaleonis.Win32.Filesystem.File.EncryptDecryptFileCore(System.Boolean,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9092. <summary>Decrypts/encrypts a file or directory so that only the account used to encrypt the file can decrypt it.</summary>
  9093. <exception cref="T:System.NotSupportedException"/>
  9094. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  9095. <param name="path">A path that describes a file to encrypt.</param>
  9096. <param name="encrypt"><see langword="true"/> encrypt, <see langword="false"/> decrypt.</param>
  9097. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9098. </member>
  9099. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateText(System.String)">
  9100. <summary>Creates or opens a file for writing UTF-8 encoded text.</summary>
  9101. <param name="path">The file to be opened for writing.</param>
  9102. <returns>A StreamWriter that writes to the specified file using UTF-8 encoding.</returns>
  9103. </member>
  9104. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateText(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9105. <summary>[AlphaFS] Creates or opens a file for writing UTF-8 encoded text.</summary>
  9106. <param name="path">The file to be opened for writing.</param>
  9107. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9108. <returns>A StreamWriter that writes to the specified file using UTF-8 encoding.</returns>
  9109. </member>
  9110. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateText(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  9111. <summary>[AlphaFS] Creates or opens a file for writing <see cref="T:System.Text.Encoding"/> encoded text.</summary>
  9112. <param name="path">The file to be opened for writing.</param>
  9113. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  9114. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9115. <returns>A StreamWriter that writes to the specified file using UTF-8 encoding.</returns>
  9116. </member>
  9117. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  9118. <summary>[AlphaFS] Creates or opens a file for writing UTF-8 encoded text.</summary>
  9119. <param name="transaction">The transaction.</param>
  9120. <param name="path">The file to be opened for writing.</param>
  9121. <returns>A StreamWriter that writes to the specified file using UTF-8 encoding.</returns>
  9122. </member>
  9123. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  9124. <summary>[AlphaFS] Creates or opens a file for writing <see cref="T:System.Text.Encoding"/> encoded text.</summary>
  9125. <param name="transaction">The transaction.</param>
  9126. <param name="path">The file to be opened for writing.</param>
  9127. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  9128. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9129. <returns>A StreamWriter that writes to the specified file using UTF-8 encoding.</returns>
  9130. </member>
  9131. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTextCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  9132. <summary>Creates or opens a file for writing <see cref="T:System.Text.Encoding"/> encoded text.</summary>
  9133. <param name="transaction">The transaction.</param>
  9134. <param name="path">The file to be opened for writing.</param>
  9135. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  9136. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9137. <returns>A <see cref="T:System.IO.StreamWriter"/> that writes to the specified file using NativeMethods.DefaultFileBufferSize encoding.</returns>
  9138. </member>
  9139. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String)">
  9140. <summary>Copies an existing file to a new file. Overwriting a file of the same name is not allowed.</summary>
  9141. <remarks>
  9142. <para>The attributes of the original file are retained in the copied file.</para>
  9143. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9144. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9145. </remarks>
  9146. <exception cref="T:System.ArgumentException"/>
  9147. <exception cref="T:System.ArgumentNullException"/>
  9148. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9149. <exception cref="T:System.IO.FileNotFoundException"/>
  9150. <exception cref="T:System.IO.IOException"/>
  9151. <exception cref="T:System.NotSupportedException"/>
  9152. <exception cref="T:System.UnauthorizedAccessException"/>
  9153. <param name="sourceFileName">The file to copy.</param>
  9154. <param name="destinationFileName">The name of the destination file. This cannot be a directory or an existing file.</param>
  9155. </member>
  9156. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,System.Boolean)">
  9157. <summary>Copies an existing file to a new file. Overwriting a file of the same name is allowed.</summary>
  9158. <remarks>
  9159. <para>The attributes of the original file are retained in the copied file.</para>
  9160. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9161. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9162. </remarks>
  9163. <exception cref="T:System.ArgumentException"/>
  9164. <exception cref="T:System.ArgumentNullException"/>
  9165. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9166. <exception cref="T:System.IO.FileNotFoundException"/>
  9167. <exception cref="T:System.IO.IOException"/>
  9168. <exception cref="T:System.NotSupportedException"/>
  9169. <exception cref="T:System.UnauthorizedAccessException"/>
  9170. <param name="sourceFileName">The file to copy. </param>
  9171. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9172. <param name="overwrite"><see langword="true"/> if the destination file should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  9173. </member>
  9174. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9175. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is not allowed.</summary>
  9176. <remarks>
  9177. <para>The attributes of the original file are retained in the copied file.</para>
  9178. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9179. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9180. </remarks>
  9181. <exception cref="T:System.ArgumentException"/>
  9182. <exception cref="T:System.ArgumentNullException"/>
  9183. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9184. <exception cref="T:System.IO.FileNotFoundException"/>
  9185. <exception cref="T:System.IO.IOException"/>
  9186. <exception cref="T:System.NotSupportedException"/>
  9187. <exception cref="T:System.UnauthorizedAccessException"/>
  9188. <param name="sourceFileName">The file to copy. </param>
  9189. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9190. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9191. </member>
  9192. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9193. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed.</summary>
  9194. <remarks>
  9195. <para>The attributes of the original file are retained in the copied file.</para>
  9196. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9197. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9198. </remarks>
  9199. <exception cref="T:System.ArgumentException"/>
  9200. <exception cref="T:System.ArgumentNullException"/>
  9201. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9202. <exception cref="T:System.IO.FileNotFoundException"/>
  9203. <exception cref="T:System.IO.IOException"/>
  9204. <exception cref="T:System.NotSupportedException"/>
  9205. <exception cref="T:System.UnauthorizedAccessException"/>
  9206. <param name="sourceFileName">The file to copy. </param>
  9207. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9208. <param name="overwrite"><see langword="true"/> if the destination file should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  9209. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9210. </member>
  9211. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  9212. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is not allowed.</summary>
  9213. <remarks>
  9214. <para>The attributes of the original file are retained in the copied file.</para>
  9215. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9216. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9217. </remarks>
  9218. <exception cref="T:System.ArgumentException"/>
  9219. <exception cref="T:System.ArgumentNullException"/>
  9220. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9221. <exception cref="T:System.IO.FileNotFoundException"/>
  9222. <exception cref="T:System.IO.IOException"/>
  9223. <exception cref="T:System.NotSupportedException"/>
  9224. <exception cref="T:System.UnauthorizedAccessException"/>
  9225. <param name="transaction">The transaction.</param>
  9226. <param name="sourceFileName">The file to copy.</param>
  9227. <param name="destinationFileName">The name of the destination file. This cannot be a directory or an existing file.</param>
  9228. </member>
  9229. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9230. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is not allowed.</summary>
  9231. <remarks>
  9232. <para>The attributes of the original file are retained in the copied file.</para>
  9233. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9234. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9235. </remarks>
  9236. <exception cref="T:System.ArgumentException"/>
  9237. <exception cref="T:System.ArgumentNullException"/>
  9238. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9239. <exception cref="T:System.IO.FileNotFoundException"/>
  9240. <exception cref="T:System.IO.IOException"/>
  9241. <exception cref="T:System.NotSupportedException"/>
  9242. <exception cref="T:System.UnauthorizedAccessException"/>
  9243. <param name="transaction">The transaction.</param>
  9244. <param name="sourceFileName">The file to copy. </param>
  9245. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9246. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9247. </member>
  9248. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean)">
  9249. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed.</summary>
  9250. <remarks>
  9251. <para>The attributes of the original file are retained in the copied file.</para>
  9252. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9253. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9254. </remarks>
  9255. <exception cref="T:System.ArgumentException"/>
  9256. <exception cref="T:System.ArgumentNullException"/>
  9257. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9258. <exception cref="T:System.IO.FileNotFoundException"/>
  9259. <exception cref="T:System.IO.IOException"/>
  9260. <exception cref="T:System.NotSupportedException"/>
  9261. <exception cref="T:System.UnauthorizedAccessException"/>
  9262. <param name="transaction">The transaction.</param>
  9263. <param name="sourceFileName">The file to copy. </param>
  9264. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9265. <param name="overwrite"><see langword="true"/> if the destination file should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  9266. </member>
  9267. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9268. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed.</summary>
  9269. <remarks>
  9270. <para>The attributes of the original file are retained in the copied file.</para>
  9271. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9272. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9273. </remarks>
  9274. <exception cref="T:System.ArgumentException"/>
  9275. <exception cref="T:System.ArgumentNullException"/>
  9276. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9277. <exception cref="T:System.IO.FileNotFoundException"/>
  9278. <exception cref="T:System.IO.IOException"/>
  9279. <exception cref="T:System.NotSupportedException"/>
  9280. <exception cref="T:System.UnauthorizedAccessException"/>
  9281. <param name="transaction">The transaction.</param>
  9282. <param name="sourceFileName">The file to copy. </param>
  9283. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9284. <param name="overwrite"><see langword="true"/> if the destination file should ignoring the read-only and hidden attributes and overwrite; otherwise, <see langword="false"/>.</param>
  9285. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9286. </member>
  9287. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  9288. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9289. <remarks>
  9290. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9291. <para>The attributes of the original file are retained in the copied file.</para>
  9292. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9293. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9294. </remarks>
  9295. <exception cref="T:System.ArgumentException"/>
  9296. <exception cref="T:System.ArgumentNullException"/>
  9297. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9298. <exception cref="T:System.IO.FileNotFoundException"/>
  9299. <exception cref="T:System.IO.IOException"/>
  9300. <exception cref="T:System.NotSupportedException"/>
  9301. <exception cref="T:System.UnauthorizedAccessException"/>
  9302. <param name="sourceFileName">The file to copy.</param>
  9303. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9304. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9305. </member>
  9306. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  9307. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9308. <remarks>
  9309. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9310. <para>The attributes of the original file are retained in the copied file.</para>
  9311. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9312. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9313. </remarks>
  9314. <exception cref="T:System.ArgumentException"/>
  9315. <exception cref="T:System.ArgumentNullException"/>
  9316. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9317. <exception cref="T:System.IO.FileNotFoundException"/>
  9318. <exception cref="T:System.IO.IOException"/>
  9319. <exception cref="T:System.NotSupportedException"/>
  9320. <exception cref="T:System.UnauthorizedAccessException"/>
  9321. <param name="sourceFileName">The file to copy.</param>
  9322. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9323. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9324. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9325. </member>
  9326. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean)">
  9327. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9328. <remarks>
  9329. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9330. <para>The attributes of the original file are retained in the copied file.</para>
  9331. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9332. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9333. </remarks>
  9334. <exception cref="T:System.ArgumentException"/>
  9335. <exception cref="T:System.ArgumentNullException"/>
  9336. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9337. <exception cref="T:System.IO.FileNotFoundException"/>
  9338. <exception cref="T:System.IO.IOException"/>
  9339. <exception cref="T:System.NotSupportedException"/>
  9340. <exception cref="T:System.UnauthorizedAccessException"/>
  9341. <param name="sourceFileName">The file to copy.</param>
  9342. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9343. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9344. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9345. </member>
  9346. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9347. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9348. <remarks>
  9349. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9350. <para>The attributes of the original file are retained in the copied file.</para>
  9351. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9352. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9353. </remarks>
  9354. <exception cref="T:System.ArgumentException"/>
  9355. <exception cref="T:System.ArgumentNullException"/>
  9356. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9357. <exception cref="T:System.IO.FileNotFoundException"/>
  9358. <exception cref="T:System.IO.IOException"/>
  9359. <exception cref="T:System.NotSupportedException"/>
  9360. <exception cref="T:System.UnauthorizedAccessException"/>
  9361. <param name="sourceFileName">The file to copy.</param>
  9362. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9363. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9364. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9365. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9366. </member>
  9367. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9368. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9369. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9370. </summary>
  9371. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9372. <remarks>
  9373. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9374. <para>The attributes of the original file are retained in the copied file.</para>
  9375. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9376. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9377. </remarks>
  9378. <exception cref="T:System.ArgumentException"/>
  9379. <exception cref="T:System.ArgumentNullException"/>
  9380. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9381. <exception cref="T:System.IO.FileNotFoundException"/>
  9382. <exception cref="T:System.IO.IOException"/>
  9383. <exception cref="T:System.NotSupportedException"/>
  9384. <exception cref="T:System.UnauthorizedAccessException"/>
  9385. <param name="sourceFileName">The file to copy.</param>
  9386. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9387. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9388. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9389. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9390. </member>
  9391. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9392. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9393. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9394. </summary>
  9395. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9396. <remarks>
  9397. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9398. <para>The attributes of the original file are retained in the copied file.</para>
  9399. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9400. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9401. </remarks>
  9402. <exception cref="T:System.ArgumentException"/>
  9403. <exception cref="T:System.ArgumentNullException"/>
  9404. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9405. <exception cref="T:System.IO.FileNotFoundException"/>
  9406. <exception cref="T:System.IO.IOException"/>
  9407. <exception cref="T:System.NotSupportedException"/>
  9408. <exception cref="T:System.UnauthorizedAccessException"/>
  9409. <param name="sourceFileName">The file to copy.</param>
  9410. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9411. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9412. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9413. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9414. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9415. </member>
  9416. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9417. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9418. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9419. </summary>
  9420. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9421. <remarks>
  9422. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9423. <para>The attributes of the original file are retained in the copied file.</para>
  9424. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9425. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9426. </remarks>
  9427. <exception cref="T:System.ArgumentException"/>
  9428. <exception cref="T:System.ArgumentNullException"/>
  9429. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9430. <exception cref="T:System.IO.FileNotFoundException"/>
  9431. <exception cref="T:System.IO.IOException"/>
  9432. <exception cref="T:System.NotSupportedException"/>
  9433. <exception cref="T:System.UnauthorizedAccessException"/>
  9434. <param name="sourceFileName">The file to copy.</param>
  9435. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9436. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9437. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9438. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9439. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9440. </member>
  9441. <member name="M:Alphaleonis.Win32.Filesystem.File.Copy(System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9442. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9443. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9444. </summary>
  9445. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9446. <remarks>
  9447. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9448. <para>The attributes of the original file are retained in the copied file.</para>
  9449. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9450. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9451. </remarks>
  9452. <exception cref="T:System.ArgumentException"/>
  9453. <exception cref="T:System.ArgumentNullException"/>
  9454. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9455. <exception cref="T:System.IO.FileNotFoundException"/>
  9456. <exception cref="T:System.IO.IOException"/>
  9457. <exception cref="T:System.NotSupportedException"/>
  9458. <exception cref="T:System.UnauthorizedAccessException"/>
  9459. <param name="sourceFileName">The file to copy.</param>
  9460. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9461. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9462. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9463. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9464. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9465. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9466. </member>
  9467. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  9468. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9469. <remarks>
  9470. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9471. <para>The attributes of the original file are retained in the copied file.</para>
  9472. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9473. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9474. </remarks>
  9475. <exception cref="T:System.ArgumentException"/>
  9476. <exception cref="T:System.ArgumentNullException"/>
  9477. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9478. <exception cref="T:System.IO.FileNotFoundException"/>
  9479. <exception cref="T:System.IO.IOException"/>
  9480. <exception cref="T:System.NotSupportedException"/>
  9481. <exception cref="T:System.UnauthorizedAccessException"/>
  9482. <param name="transaction">The transaction.</param>
  9483. <param name="sourceFileName">The file to copy.</param>
  9484. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9485. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9486. </member>
  9487. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  9488. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9489. <remarks>
  9490. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9491. <para>The attributes of the original file are retained in the copied file.</para>
  9492. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9493. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9494. </remarks>
  9495. <exception cref="T:System.ArgumentException"/>
  9496. <exception cref="T:System.ArgumentNullException"/>
  9497. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9498. <exception cref="T:System.IO.FileNotFoundException"/>
  9499. <exception cref="T:System.IO.IOException"/>
  9500. <exception cref="T:System.NotSupportedException"/>
  9501. <exception cref="T:System.UnauthorizedAccessException"/>
  9502. <param name="transaction">The transaction.</param>
  9503. <param name="sourceFileName">The file to copy.</param>
  9504. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9505. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9506. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9507. </member>
  9508. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean)">
  9509. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9510. <remarks>
  9511. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9512. <para>The attributes of the original file are retained in the copied file.</para>
  9513. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9514. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9515. </remarks>
  9516. <exception cref="T:System.ArgumentException"/>
  9517. <exception cref="T:System.ArgumentNullException"/>
  9518. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9519. <exception cref="T:System.IO.FileNotFoundException"/>
  9520. <exception cref="T:System.IO.IOException"/>
  9521. <exception cref="T:System.NotSupportedException"/>
  9522. <exception cref="T:System.UnauthorizedAccessException"/>
  9523. <param name="transaction">The transaction.</param>
  9524. <param name="sourceFileName">The file to copy.</param>
  9525. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9526. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9527. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9528. </member>
  9529. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  9530. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.</summary>
  9531. <remarks>
  9532. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9533. <para>The attributes of the original file are retained in the copied file.</para>
  9534. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9535. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9536. </remarks>
  9537. <exception cref="T:System.ArgumentException"/>
  9538. <exception cref="T:System.ArgumentNullException"/>
  9539. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9540. <exception cref="T:System.IO.FileNotFoundException"/>
  9541. <exception cref="T:System.IO.IOException"/>
  9542. <exception cref="T:System.NotSupportedException"/>
  9543. <exception cref="T:System.UnauthorizedAccessException"/>
  9544. <param name="transaction">The transaction.</param>
  9545. <param name="sourceFileName">The file to copy.</param>
  9546. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9547. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9548. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9549. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9550. </member>
  9551. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9552. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9553. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9554. </summary>
  9555. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9556. <remarks>
  9557. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9558. <para>The attributes of the original file are retained in the copied file.</para>
  9559. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9560. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9561. </remarks>
  9562. <exception cref="T:System.ArgumentException"/>
  9563. <exception cref="T:System.ArgumentNullException"/>
  9564. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9565. <exception cref="T:System.IO.FileNotFoundException"/>
  9566. <exception cref="T:System.IO.IOException"/>
  9567. <exception cref="T:System.NotSupportedException"/>
  9568. <exception cref="T:System.UnauthorizedAccessException"/>
  9569. <param name="transaction">The transaction.</param>
  9570. <param name="sourceFileName">The file to copy.</param>
  9571. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9572. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9573. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9574. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9575. </member>
  9576. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9577. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9578. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9579. </summary>
  9580. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9581. <remarks>
  9582. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9583. <para>The attributes of the original file are retained in the copied file.</para>
  9584. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9585. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9586. </remarks>
  9587. <exception cref="T:System.ArgumentException"/>
  9588. <exception cref="T:System.ArgumentNullException"/>
  9589. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9590. <exception cref="T:System.IO.FileNotFoundException"/>
  9591. <exception cref="T:System.IO.IOException"/>
  9592. <exception cref="T:System.NotSupportedException"/>
  9593. <exception cref="T:System.UnauthorizedAccessException"/>
  9594. <param name="transaction">The transaction.</param>
  9595. <param name="sourceFileName">The file to copy.</param>
  9596. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9597. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9598. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9599. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9600. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9601. </member>
  9602. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9603. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9604. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9605. </summary>
  9606. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9607. <remarks>
  9608. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9609. <para>The attributes of the original file are retained in the copied file.</para>
  9610. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9611. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9612. </remarks>
  9613. <exception cref="T:System.ArgumentException"/>
  9614. <exception cref="T:System.ArgumentNullException"/>
  9615. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9616. <exception cref="T:System.IO.FileNotFoundException"/>
  9617. <exception cref="T:System.IO.IOException"/>
  9618. <exception cref="T:System.NotSupportedException"/>
  9619. <exception cref="T:System.UnauthorizedAccessException"/>
  9620. <param name="transaction">The transaction.</param>
  9621. <param name="sourceFileName">The file to copy.</param>
  9622. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9623. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9624. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9625. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9626. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9627. </member>
  9628. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9629. <summary>[AlphaFS] Copies an existing file to a new file. Overwriting a file of the same name is allowed. <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified,
  9630. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  9631. </summary>
  9632. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  9633. <remarks>
  9634. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9635. <para>The attributes of the original file are retained in the copied file.</para>
  9636. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9637. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9638. </remarks>
  9639. <param name="transaction">The transaction.</param>
  9640. <param name="sourceFileName">The file to copy.</param>
  9641. <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
  9642. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9643. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  9644. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  9645. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9646. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9647. <exception cref="T:System.ArgumentException"/>
  9648. <exception cref="T:System.ArgumentNullException"/>
  9649. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9650. <exception cref="T:System.IO.FileNotFoundException"/>
  9651. <exception cref="T:System.IO.IOException"/>
  9652. <exception cref="T:System.NotSupportedException"/>
  9653. <exception cref="T:System.UnauthorizedAccessException"/>
  9654. </member>
  9655. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String)">
  9656. <summary>Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9657. <remarks>
  9658. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9659. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9660. <para>You cannot use the Move method to overwrite an existing file.</para>
  9661. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9662. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9663. </remarks>
  9664. <exception cref="T:System.ArgumentException"/>
  9665. <exception cref="T:System.ArgumentNullException"/>
  9666. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9667. <exception cref="T:System.IO.FileNotFoundException"/>
  9668. <exception cref="T:System.IO.IOException"/>
  9669. <exception cref="T:System.NotSupportedException"/>
  9670. <exception cref="T:System.UnauthorizedAccessException"/>
  9671. <param name="sourceFileName">The name of the file to move.</param>
  9672. <param name="destinationFileName">The new path for the file.</param>
  9673. </member>
  9674. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9675. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9676. <remarks>
  9677. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9678. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9679. <para>You cannot use the Move method to overwrite an existing file.</para>
  9680. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9681. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9682. </remarks>
  9683. <exception cref="T:System.ArgumentException"/>
  9684. <exception cref="T:System.ArgumentNullException"/>
  9685. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9686. <exception cref="T:System.IO.FileNotFoundException"/>
  9687. <exception cref="T:System.IO.IOException"/>
  9688. <exception cref="T:System.NotSupportedException"/>
  9689. <exception cref="T:System.UnauthorizedAccessException"/>
  9690. <param name="sourceFileName">The name of the file to move.</param>
  9691. <param name="destinationFileName">The new path for the file.</param>
  9692. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9693. </member>
  9694. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  9695. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9696. <remarks>
  9697. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9698. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9699. <para>You cannot use the Move method to overwrite an existing file.</para>
  9700. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9701. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9702. </remarks>
  9703. <exception cref="T:System.ArgumentException"/>
  9704. <exception cref="T:System.ArgumentNullException"/>
  9705. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9706. <exception cref="T:System.IO.FileNotFoundException"/>
  9707. <exception cref="T:System.IO.IOException"/>
  9708. <exception cref="T:System.NotSupportedException"/>
  9709. <exception cref="T:System.UnauthorizedAccessException"/>
  9710. <param name="transaction">The transaction.</param>
  9711. <param name="sourceFileName">The name of the file to move.</param>
  9712. <param name="destinationFileName">The new path for the file.</param>
  9713. </member>
  9714. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9715. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9716. <remarks>
  9717. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9718. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9719. <para>You cannot use the Move method to overwrite an existing file.</para>
  9720. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9721. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9722. </remarks>
  9723. <exception cref="T:System.ArgumentException"/>
  9724. <exception cref="T:System.ArgumentNullException"/>
  9725. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9726. <exception cref="T:System.IO.FileNotFoundException"/>
  9727. <exception cref="T:System.IO.IOException"/>
  9728. <exception cref="T:System.NotSupportedException"/>
  9729. <exception cref="T:System.UnauthorizedAccessException"/>
  9730. <param name="transaction">The transaction.</param>
  9731. <param name="sourceFileName">The name of the file to move.</param>
  9732. <param name="destinationFileName">The new path for the file.</param>
  9733. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9734. </member>
  9735. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  9736. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9737. <remarks>
  9738. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9739. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9740. <para>You cannot use the Move method to overwrite an existing file.</para>
  9741. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9742. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9743. </remarks>
  9744. <exception cref="T:System.ArgumentException"/>
  9745. <exception cref="T:System.ArgumentNullException"/>
  9746. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9747. <exception cref="T:System.IO.FileNotFoundException"/>
  9748. <exception cref="T:System.IO.IOException"/>
  9749. <exception cref="T:System.NotSupportedException"/>
  9750. <exception cref="T:System.UnauthorizedAccessException"/>
  9751. <param name="sourceFileName">The name of the file to move.</param>
  9752. <param name="destinationFileName">The new path for the file.</param>
  9753. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9754. </member>
  9755. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  9756. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9757. <remarks>
  9758. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9759. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9760. <para>You cannot use the Move method to overwrite an existing file.</para>
  9761. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9762. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9763. </remarks>
  9764. <exception cref="T:System.ArgumentException"/>
  9765. <exception cref="T:System.ArgumentNullException"/>
  9766. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9767. <exception cref="T:System.IO.FileNotFoundException"/>
  9768. <exception cref="T:System.IO.IOException"/>
  9769. <exception cref="T:System.NotSupportedException"/>
  9770. <exception cref="T:System.UnauthorizedAccessException"/>
  9771. <param name="sourceFileName">The name of the file to move.</param>
  9772. <param name="destinationFileName">The new path for the file.</param>
  9773. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9774. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9775. </member>
  9776. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9777. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9778. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  9779. <remarks>
  9780. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9781. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9782. <para>You cannot use the Move method to overwrite an existing file.</para>
  9783. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9784. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9785. </remarks>
  9786. <exception cref="T:System.ArgumentException"/>
  9787. <exception cref="T:System.ArgumentNullException"/>
  9788. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9789. <exception cref="T:System.IO.FileNotFoundException"/>
  9790. <exception cref="T:System.IO.IOException"/>
  9791. <exception cref="T:System.NotSupportedException"/>
  9792. <exception cref="T:System.UnauthorizedAccessException"/>
  9793. <param name="sourceFileName">The name of the file to move.</param>
  9794. <param name="destinationFileName">The new path for the file.</param>
  9795. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9796. <param name="progressHandler">A callback function that is called each time another portion of the file has been moved. This parameter can be <see langword="null"/>.</param>
  9797. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9798. </member>
  9799. <member name="M:Alphaleonis.Win32.Filesystem.File.Move(System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9800. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9801. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  9802. <remarks>
  9803. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9804. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9805. <para>You cannot use the Move method to overwrite an existing file.</para>
  9806. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9807. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9808. </remarks>
  9809. <exception cref="T:System.ArgumentException"/>
  9810. <exception cref="T:System.ArgumentNullException"/>
  9811. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9812. <exception cref="T:System.IO.FileNotFoundException"/>
  9813. <exception cref="T:System.IO.IOException"/>
  9814. <exception cref="T:System.NotSupportedException"/>
  9815. <exception cref="T:System.UnauthorizedAccessException"/>
  9816. <param name="sourceFileName">The name of the file to move.</param>
  9817. <param name="destinationFileName">The new path for the file.</param>
  9818. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9819. <param name="progressHandler">A callback function that is called each time another portion of the file has been moved. This parameter can be <see langword="null"/>.</param>
  9820. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9821. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9822. </member>
  9823. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  9824. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9825. <remarks>
  9826. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9827. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9828. <para>You cannot use the Move method to overwrite an existing file.</para>
  9829. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9830. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9831. </remarks>
  9832. <exception cref="T:System.ArgumentException"/>
  9833. <exception cref="T:System.ArgumentNullException"/>
  9834. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9835. <exception cref="T:System.IO.FileNotFoundException"/>
  9836. <exception cref="T:System.IO.IOException"/>
  9837. <exception cref="T:System.NotSupportedException"/>
  9838. <exception cref="T:System.UnauthorizedAccessException"/>
  9839. <param name="transaction">The transaction.</param>
  9840. <param name="sourceFileName">The name of the file to move.</param>
  9841. <param name="destinationFileName">The new path for the file.</param>
  9842. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9843. </member>
  9844. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  9845. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9846. <remarks>
  9847. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9848. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9849. <para>You cannot use the Move method to overwrite an existing file.</para>
  9850. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9851. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9852. </remarks>
  9853. <exception cref="T:System.ArgumentException"/>
  9854. <exception cref="T:System.ArgumentNullException"/>
  9855. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9856. <exception cref="T:System.IO.FileNotFoundException"/>
  9857. <exception cref="T:System.IO.IOException"/>
  9858. <exception cref="T:System.NotSupportedException"/>
  9859. <exception cref="T:System.UnauthorizedAccessException"/>
  9860. <param name="transaction">The transaction.</param>
  9861. <param name="sourceFileName">The name of the file to move.</param>
  9862. <param name="destinationFileName">The new path for the file.</param>
  9863. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9864. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9865. </member>
  9866. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  9867. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9868. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  9869. <remarks>
  9870. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9871. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9872. <para>You cannot use the Move method to overwrite an existing file.</para>
  9873. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9874. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9875. </remarks>
  9876. <exception cref="T:System.ArgumentException"/>
  9877. <exception cref="T:System.ArgumentNullException"/>
  9878. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9879. <exception cref="T:System.IO.FileNotFoundException"/>
  9880. <exception cref="T:System.IO.IOException"/>
  9881. <exception cref="T:System.NotSupportedException"/>
  9882. <exception cref="T:System.UnauthorizedAccessException"/>
  9883. <param name="transaction">The transaction.</param>
  9884. <param name="sourceFileName">The name of the file to move.</param>
  9885. <param name="destinationFileName">The new path for the file.</param>
  9886. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9887. <param name="progressHandler">A callback function that is called each time another portion of the file has been moved. This parameter can be <see langword="null"/>.</param>
  9888. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9889. </member>
  9890. <member name="M:Alphaleonis.Win32.Filesystem.File.MoveTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  9891. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.</summary>
  9892. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  9893. <remarks>
  9894. <para>This method works across disk volumes, and it does not throw an exception if the source and destination are the same.</para>
  9895. <para>Note that if you attempt to replace a file by moving a file of the same name into that directory, you get an <see cref="T:System.IO.IOException"/>.</para>
  9896. <para>You cannot use the Move method to overwrite an existing file.</para>
  9897. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  9898. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  9899. </remarks>
  9900. <exception cref="T:System.ArgumentException"/>
  9901. <exception cref="T:System.ArgumentNullException"/>
  9902. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9903. <exception cref="T:System.IO.FileNotFoundException"/>
  9904. <exception cref="T:System.IO.IOException"/>
  9905. <exception cref="T:System.NotSupportedException"/>
  9906. <exception cref="T:System.UnauthorizedAccessException"/>
  9907. <param name="transaction">The transaction.</param>
  9908. <param name="sourceFileName">The name of the file to move.</param>
  9909. <param name="destinationFileName">The new path for the file.</param>
  9910. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved. This parameter can be <see langword="null"/>.</param>
  9911. <param name="progressHandler">A callback function that is called each time another portion of the file has been moved. This parameter can be <see langword="null"/>.</param>
  9912. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9913. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9914. </member>
  9915. <member name="M:Alphaleonis.Win32.Filesystem.File.DetermineIsCopy(System.Nullable{Alphaleonis.Win32.Filesystem.CopyOptions},System.Nullable{Alphaleonis.Win32.Filesystem.MoveOptions})">
  9916. <summary>Determine the Copy or Move action.</summary>
  9917. </member>
  9918. <member name="M:Alphaleonis.Win32.Filesystem.File.CopyMoveCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Boolean,System.Nullable{Alphaleonis.Win32.Filesystem.CopyOptions},System.Nullable{Alphaleonis.Win32.Filesystem.MoveOptions},Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.CopyMoveResult,Alphaleonis.Win32.Filesystem.PathFormat)">
  9919. <summary>Copy/move a Non-/Transacted file or directory including its children to a new location, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> or <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  9920. and the possibility of notifying the application of its progress through a callback function.
  9921. </summary>
  9922. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Copy or Move action.</returns>
  9923. <remarks>
  9924. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  9925. <para>You cannot use the Move method to overwrite an existing file, unless
  9926. <paramref name="moveOptions"/> contains <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.ReplaceExisting"/>.</para>
  9927. <para>This Move method works across disk volumes, and it does not throw an exception if the
  9928. source and destination are the same. </para>
  9929. <para>Note that if you attempt to replace a file by moving a file of the same name into
  9930. that directory, you get an IOException.</para>
  9931. </remarks>
  9932. <exception cref="T:System.ArgumentException"/>
  9933. <exception cref="T:System.ArgumentNullException"/>
  9934. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  9935. <exception cref="T:System.IO.FileNotFoundException"/>
  9936. <exception cref="T:System.IO.IOException"/>
  9937. <exception cref="T:System.NotSupportedException"/>
  9938. <exception cref="T:System.UnauthorizedAccessException"/>
  9939. <param name="isFolder">Specifies that <paramref name="sourceFileName"/> and <paramref name="destinationFileName"/> are a file or directory.</param>
  9940. <param name="transaction">The transaction.</param>
  9941. <param name="sourceFileName">The source directory path.</param>
  9942. <param name="destinationFileName">The destination directory path.</param>
  9943. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise. This parameter is ignored for move operations.</param>
  9944. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied. This parameter can be <see langword="null"/>.</param>
  9945. <param name="moveOptions">Flags that specify how the file or directory is to be moved. This parameter can be <see langword="null"/>.</param>
  9946. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied/moved. This parameter can be <see langword="null"/>.</param>
  9947. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  9948. <param name="copyMoveResult"></param>
  9949. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9950. </member>
  9951. <member name="M:Alphaleonis.Win32.Filesystem.File.IsLocked(System.String)">
  9952. <summary>[AlphaFS] Determines whether the specified file is in use (locked).</summary>
  9953. <returns>Returns <see langword="true"/> if the specified file is in use (locked); otherwise, <see langword="false"/></returns>
  9954. <exception cref="T:System.IO.IOException"/>
  9955. <exception cref="T:System.Exception"/>
  9956. <param name="path">The file to check.</param>
  9957. </member>
  9958. <member name="M:Alphaleonis.Win32.Filesystem.File.IsLocked(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9959. <summary>[AlphaFS] Determines whether the specified file is in use (locked).</summary>
  9960. <returns>Returns <see langword="true"/> if the specified file is in use (locked); otherwise, <see langword="false"/></returns>
  9961. <exception cref="T:System.IO.FileNotFoundException"></exception>
  9962. <exception cref="T:System.IO.IOException"/>
  9963. <exception cref="T:System.Exception"/>
  9964. <param name="path">The file to check.</param>
  9965. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9966. </member>
  9967. <member name="M:Alphaleonis.Win32.Filesystem.File.IsLockedTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  9968. <summary>[AlphaFS] Determines whether the specified file is in use (locked).</summary>
  9969. <returns>Returns <see langword="true"/> if the specified file is in use (locked); otherwise, <see langword="false"/></returns>
  9970. <exception cref="T:System.IO.FileNotFoundException"></exception>
  9971. <exception cref="T:System.IO.IOException"/>
  9972. <exception cref="T:System.Exception"/>
  9973. <param name="transaction">The transaction.</param>
  9974. <param name="path">The file to check.</param>
  9975. </member>
  9976. <member name="M:Alphaleonis.Win32.Filesystem.File.IsLockedTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9977. <summary>[AlphaFS] Determines whether the specified file is in use (locked).</summary>
  9978. <returns>Returns <see langword="true"/> if the specified file is in use (locked); otherwise, <see langword="false"/></returns>
  9979. <exception cref="T:System.IO.FileNotFoundException"></exception>
  9980. <exception cref="T:System.IO.IOException"/>
  9981. <exception cref="T:System.Exception"/>
  9982. <param name="transaction">The transaction.</param>
  9983. <param name="path">The file to check.</param>
  9984. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9985. </member>
  9986. <member name="M:Alphaleonis.Win32.Filesystem.File.IsLockedCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  9987. <summary>[AlphaFS] Determines whether the specified file is in use (locked).</summary>
  9988. <returns>Returns <see langword="true"/> if the specified file is in use (locked); otherwise, <see langword="false"/></returns>
  9989. <exception cref="T:System.IO.FileNotFoundException"></exception>
  9990. <exception cref="T:System.IO.IOException"/>
  9991. <exception cref="T:System.Exception"/>
  9992. <param name="transaction">The transaction.</param>
  9993. <param name="path">The file to check.</param>
  9994. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  9995. </member>
  9996. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
  9997. <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
  9998. specified lines to the file, and then closes the file.
  9999. </summary>
  10000. <remarks>
  10001. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10002. must contain existing directories.
  10003. </remarks>
  10004. <exception cref="T:System.ArgumentNullException"/>
  10005. <exception cref="T:System.ArgumentException"/>
  10006. <exception cref="T:System.NotSupportedException"/>
  10007. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10008. <exception cref="T:System.IO.FileNotFoundException"/>
  10009. <exception cref="T:System.IO.IOException"/>
  10010. <exception cref="T:System.Security.SecurityException"/>
  10011. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10012. <exception cref="T:System.UnauthorizedAccessException"/>
  10013. <exception cref="T:System.PlatformNotSupportedException"/>
  10014. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10015. <param name="contents">The lines to append to the file.</param>
  10016. </member>
  10017. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
  10018. <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
  10019. specified lines to the file, and then closes the file.
  10020. </summary>
  10021. <remarks>
  10022. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10023. must contain existing directories.
  10024. </remarks>
  10025. <exception cref="T:System.ArgumentNullException"/>
  10026. <exception cref="T:System.ArgumentException"/>
  10027. <exception cref="T:System.NotSupportedException"/>
  10028. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10029. <exception cref="T:System.IO.FileNotFoundException"/>
  10030. <exception cref="T:System.IO.IOException"/>
  10031. <exception cref="T:System.Security.SecurityException"/>
  10032. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10033. <exception cref="T:System.UnauthorizedAccessException"/>
  10034. <exception cref="T:System.PlatformNotSupportedException"/>
  10035. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10036. <param name="contents">The lines to append to the file.</param>
  10037. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10038. </member>
  10039. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},Alphaleonis.Win32.Filesystem.PathFormat)">
  10040. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file,
  10041. writes the specified lines to the file, and then closes the file.
  10042. </summary>
  10043. <remarks>
  10044. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10045. must contain existing directories.
  10046. </remarks>
  10047. <exception cref="T:System.ArgumentNullException"/>
  10048. <exception cref="T:System.ArgumentException"/>
  10049. <exception cref="T:System.NotSupportedException"/>
  10050. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10051. <exception cref="T:System.IO.FileNotFoundException"/>
  10052. <exception cref="T:System.IO.IOException"/>
  10053. <exception cref="T:System.Security.SecurityException"/>
  10054. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10055. <exception cref="T:System.UnauthorizedAccessException"/>
  10056. <exception cref="T:System.PlatformNotSupportedException"/>
  10057. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10058. <param name="contents">The lines to append to the file.</param>
  10059. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10060. </member>
  10061. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10062. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not
  10063. exist, this method creates a file, writes the specified lines to the file, and then closes
  10064. the file.
  10065. </summary>
  10066. <remarks>
  10067. The method creates the file if it doesn't exist, but it doesn't create new directories.
  10068. Therefore, the value of the path parameter must contain existing directories.
  10069. </remarks>
  10070. <exception cref="T:System.ArgumentNullException"/>
  10071. <exception cref="T:System.ArgumentException"/>
  10072. <exception cref="T:System.NotSupportedException"/>
  10073. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10074. <exception cref="T:System.IO.FileNotFoundException"/>
  10075. <exception cref="T:System.IO.IOException"/>
  10076. <exception cref="T:System.Security.SecurityException"/>
  10077. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10078. <exception cref="T:System.UnauthorizedAccessException"/>
  10079. <exception cref="T:System.PlatformNotSupportedException"/>
  10080. <param name="path">
  10081. The file to append the lines to. The file is created if it doesn't already exist.
  10082. </param>
  10083. <param name="contents">The lines to append to the file.</param>
  10084. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10085. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10086. </member>
  10087. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String})">
  10088. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file,
  10089. writes the specified lines to the file, and then closes the file.
  10090. </summary>
  10091. <remarks>
  10092. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10093. must contain existing directories.
  10094. </remarks>
  10095. <exception cref="T:System.ArgumentNullException"/>
  10096. <exception cref="T:System.ArgumentException"/>
  10097. <exception cref="T:System.NotSupportedException"/>
  10098. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10099. <exception cref="T:System.IO.FileNotFoundException"/>
  10100. <exception cref="T:System.IO.IOException"/>
  10101. <exception cref="T:System.Security.SecurityException"/>
  10102. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10103. <exception cref="T:System.UnauthorizedAccessException"/>
  10104. <exception cref="T:System.PlatformNotSupportedException"/>
  10105. <param name="transaction">The transaction.</param>
  10106. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10107. <param name="contents">The lines to append to the file.</param>
  10108. </member>
  10109. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
  10110. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file,
  10111. writes the specified lines to the file, and then closes the file.
  10112. </summary>
  10113. <remarks>
  10114. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10115. must contain existing directories.
  10116. </remarks>
  10117. <exception cref="T:System.ArgumentNullException"/>
  10118. <exception cref="T:System.ArgumentException"/>
  10119. <exception cref="T:System.NotSupportedException"/>
  10120. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10121. <exception cref="T:System.IO.FileNotFoundException"/>
  10122. <exception cref="T:System.IO.IOException"/>
  10123. <exception cref="T:System.Security.SecurityException"/>
  10124. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10125. <exception cref="T:System.UnauthorizedAccessException"/>
  10126. <exception cref="T:System.PlatformNotSupportedException"/>
  10127. <param name="transaction">The transaction.</param>
  10128. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10129. <param name="contents">The lines to append to the file.</param>
  10130. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10131. </member>
  10132. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},Alphaleonis.Win32.Filesystem.PathFormat)">
  10133. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file, writes the
  10134. specified lines to the file, and then closes the file.
  10135. </summary>
  10136. <remarks>
  10137. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10138. must contain existing directories.
  10139. </remarks>
  10140. <exception cref="T:System.ArgumentNullException"/>
  10141. <exception cref="T:System.ArgumentException"/>
  10142. <exception cref="T:System.NotSupportedException"/>
  10143. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10144. <exception cref="T:System.IO.FileNotFoundException"/>
  10145. <exception cref="T:System.IO.IOException"/>
  10146. <exception cref="T:System.Security.SecurityException"/>
  10147. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10148. <exception cref="T:System.UnauthorizedAccessException"/>
  10149. <exception cref="T:System.PlatformNotSupportedException"/>
  10150. <param name="transaction">The transaction.</param>
  10151. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10152. <param name="contents">The lines to append to the file.</param>
  10153. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10154. </member>
  10155. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10156. <summary>[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file,
  10157. writes the specified lines to the file, and then closes the file.
  10158. </summary>
  10159. <remarks>
  10160. The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
  10161. must contain existing directories.
  10162. </remarks>
  10163. <exception cref="T:System.ArgumentNullException"/>
  10164. <exception cref="T:System.ArgumentException"/>
  10165. <exception cref="T:System.NotSupportedException"/>
  10166. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10167. <exception cref="T:System.IO.FileNotFoundException"/>
  10168. <exception cref="T:System.IO.IOException"/>
  10169. <exception cref="T:System.Security.SecurityException"/>
  10170. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10171. <exception cref="T:System.UnauthorizedAccessException"/>
  10172. <exception cref="T:System.PlatformNotSupportedException"/>
  10173. <param name="transaction">The transaction.</param>
  10174. <param name="path">The file to append the lines to. The file is created if it doesn't already exist.</param>
  10175. <param name="contents">The lines to append to the file.</param>
  10176. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10177. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10178. </member>
  10179. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllText(System.String,System.String)">
  10180. <summary>Appends the specified stringto the file, creating the file if it does not already exist.</summary>
  10181. <exception cref="T:System.ArgumentNullException"/>
  10182. <exception cref="T:System.ArgumentException"/>
  10183. <exception cref="T:System.NotSupportedException"/>
  10184. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10185. <exception cref="T:System.IO.FileNotFoundException"/>
  10186. <exception cref="T:System.IO.IOException"/>
  10187. <exception cref="T:System.Security.SecurityException"/>
  10188. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10189. <exception cref="T:System.UnauthorizedAccessException"/>
  10190. <exception cref="T:System.PlatformNotSupportedException"/>
  10191. <param name="path">The file to append the specified string to.</param>
  10192. <param name="contents">The string to append to the file.</param>
  10193. </member>
  10194. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllText(System.String,System.String,System.Text.Encoding)">
  10195. <summary>Appends the specified string to the file, creating the file if it does not already exist.</summary>
  10196. <exception cref="T:System.ArgumentNullException"/>
  10197. <exception cref="T:System.ArgumentException"/>
  10198. <exception cref="T:System.NotSupportedException"/>
  10199. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10200. <exception cref="T:System.IO.FileNotFoundException"/>
  10201. <exception cref="T:System.IO.IOException"/>
  10202. <exception cref="T:System.Security.SecurityException"/>
  10203. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10204. <exception cref="T:System.UnauthorizedAccessException"/>
  10205. <exception cref="T:System.PlatformNotSupportedException"/>
  10206. <param name="path">The file to append the specified string to.</param>
  10207. <param name="contents">The string to append to the file.</param>
  10208. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10209. </member>
  10210. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllText(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10211. <summary>[AlphaFS] Appends the specified stringto the file, creating the file if it does not already exist.</summary>
  10212. <exception cref="T:System.ArgumentNullException"/>
  10213. <exception cref="T:System.ArgumentException"/>
  10214. <exception cref="T:System.NotSupportedException"/>
  10215. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10216. <exception cref="T:System.IO.FileNotFoundException"/>
  10217. <exception cref="T:System.IO.IOException"/>
  10218. <exception cref="T:System.Security.SecurityException"/>
  10219. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10220. <exception cref="T:System.UnauthorizedAccessException"/>
  10221. <exception cref="T:System.PlatformNotSupportedException"/>
  10222. <param name="path">The file to append the specified string to.</param>
  10223. <param name="contents">The string to append to the file.</param>
  10224. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10225. </member>
  10226. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllText(System.String,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10227. <summary>[AlphaFS] Appends the specified string to the file, creating the file if it does not already exist.</summary>
  10228. <exception cref="T:System.ArgumentNullException"/>
  10229. <exception cref="T:System.ArgumentException"/>
  10230. <exception cref="T:System.NotSupportedException"/>
  10231. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10232. <exception cref="T:System.IO.FileNotFoundException"/>
  10233. <exception cref="T:System.IO.IOException"/>
  10234. <exception cref="T:System.Security.SecurityException"/>
  10235. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10236. <exception cref="T:System.UnauthorizedAccessException"/>
  10237. <exception cref="T:System.PlatformNotSupportedException"/>
  10238. <param name="path">The file to append the specified string to.</param>
  10239. <param name="contents">The string to append to the file.</param>
  10240. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10241. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10242. </member>
  10243. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  10244. <summary>[AlphaFS] Appends the specified stringto the file, creating the file if it does not already exist.</summary>
  10245. <exception cref="T:System.ArgumentNullException"/>
  10246. <exception cref="T:System.ArgumentException"/>
  10247. <exception cref="T:System.NotSupportedException"/>
  10248. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10249. <exception cref="T:System.IO.FileNotFoundException"/>
  10250. <exception cref="T:System.IO.IOException"/>
  10251. <exception cref="T:System.Security.SecurityException"/>
  10252. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10253. <exception cref="T:System.UnauthorizedAccessException"/>
  10254. <exception cref="T:System.PlatformNotSupportedException"/>
  10255. <param name="transaction">The transaction.</param>
  10256. <param name="path">The file to append the specified string to.</param>
  10257. <param name="contents">The string to append to the file.</param>
  10258. </member>
  10259. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Text.Encoding)">
  10260. <summary>[AlphaFS] Appends the specified string to the file, creating the file if it does not already exist.</summary>
  10261. <exception cref="T:System.ArgumentNullException"/>
  10262. <exception cref="T:System.ArgumentException"/>
  10263. <exception cref="T:System.NotSupportedException"/>
  10264. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10265. <exception cref="T:System.IO.FileNotFoundException"/>
  10266. <exception cref="T:System.IO.IOException"/>
  10267. <exception cref="T:System.Security.SecurityException"/>
  10268. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10269. <exception cref="T:System.UnauthorizedAccessException"/>
  10270. <exception cref="T:System.PlatformNotSupportedException"/>
  10271. <param name="transaction">The transaction.</param>
  10272. <param name="path">The file to append the specified string to.</param>
  10273. <param name="contents">The string to append to the file.</param>
  10274. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10275. </member>
  10276. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10277. <summary>[AlphaFS] Appends the specified stringto the file, creating the file if it does not already exist.</summary>
  10278. <exception cref="T:System.ArgumentNullException"/>
  10279. <exception cref="T:System.ArgumentException"/>
  10280. <exception cref="T:System.NotSupportedException"/>
  10281. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10282. <exception cref="T:System.IO.FileNotFoundException"/>
  10283. <exception cref="T:System.IO.IOException"/>
  10284. <exception cref="T:System.Security.SecurityException"/>
  10285. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10286. <exception cref="T:System.UnauthorizedAccessException"/>
  10287. <exception cref="T:System.PlatformNotSupportedException"/>
  10288. <param name="transaction">The transaction.</param>
  10289. <param name="path">The file to append the specified string to.</param>
  10290. <param name="contents">The string to append to the file.</param>
  10291. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10292. </member>
  10293. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10294. <summary>[AlphaFS] Appends the specified string to the file, creating the file if it does not already exist.</summary>
  10295. <exception cref="T:System.ArgumentNullException"/>
  10296. <exception cref="T:System.ArgumentException"/>
  10297. <exception cref="T:System.NotSupportedException"/>
  10298. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10299. <exception cref="T:System.IO.FileNotFoundException"/>
  10300. <exception cref="T:System.IO.IOException"/>
  10301. <exception cref="T:System.Security.SecurityException"/>
  10302. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10303. <exception cref="T:System.UnauthorizedAccessException"/>
  10304. <exception cref="T:System.PlatformNotSupportedException"/>
  10305. <param name="transaction">The transaction.</param>
  10306. <param name="path">The file to append the specified string to.</param>
  10307. <param name="contents">The string to append to the file.</param>
  10308. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10309. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10310. </member>
  10311. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
  10312. <summary>Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
  10313. <remarks>The default behavior of the method is to write out data by using UTF-8 encoding without a byte order mark (BOM).</remarks>
  10314. <exception cref="T:System.ArgumentNullException"/>
  10315. <exception cref="T:System.ArgumentException"/>
  10316. <exception cref="T:System.NotSupportedException"/>
  10317. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10318. <exception cref="T:System.IO.FileNotFoundException"/>
  10319. <exception cref="T:System.IO.IOException"/>
  10320. <exception cref="T:System.Security.SecurityException"/>
  10321. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10322. <exception cref="T:System.UnauthorizedAccessException"/>
  10323. <exception cref="T:System.PlatformNotSupportedException"/>
  10324. <param name="path">The file to write to.</param>
  10325. <param name="contents">The lines to write to the file.</param>
  10326. </member>
  10327. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.String[])">
  10328. <summary>Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10329. <param name="path">The file to write to.</param>
  10330. <param name="contents">The string array to write to the file.</param>
  10331. </member>
  10332. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
  10333. <summary>Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10334. <exception cref="T:System.ArgumentNullException"/>
  10335. <exception cref="T:System.ArgumentException"/>
  10336. <exception cref="T:System.NotSupportedException"/>
  10337. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10338. <exception cref="T:System.IO.FileNotFoundException"/>
  10339. <exception cref="T:System.IO.IOException"/>
  10340. <exception cref="T:System.Security.SecurityException"/>
  10341. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10342. <exception cref="T:System.UnauthorizedAccessException"/>
  10343. <exception cref="T:System.PlatformNotSupportedException"/>
  10344. <param name="path">The file to write to.</param>
  10345. <param name="contents">The lines to write to the file.</param>
  10346. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10347. </member>
  10348. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.String[],System.Text.Encoding)">
  10349. <summary>Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10350. <exception cref="T:System.ArgumentNullException"/>
  10351. <exception cref="T:System.ArgumentException"/>
  10352. <exception cref="T:System.NotSupportedException"/>
  10353. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10354. <exception cref="T:System.IO.FileNotFoundException"/>
  10355. <exception cref="T:System.IO.IOException"/>
  10356. <exception cref="T:System.Security.SecurityException"/>
  10357. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10358. <exception cref="T:System.UnauthorizedAccessException"/>
  10359. <exception cref="T:System.PlatformNotSupportedException"/>
  10360. <param name="path">The file to write to.</param>
  10361. <param name="contents">The string array to write to the file.</param>
  10362. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10363. </member>
  10364. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},Alphaleonis.Win32.Filesystem.PathFormat)">
  10365. <summary>[AlphaFS] Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
  10366. <remarks>The default behavior of the method is to write out data by using UTF-8 encoding without a byte order mark (BOM).</remarks>
  10367. <exception cref="T:System.ArgumentNullException"/>
  10368. <exception cref="T:System.ArgumentException"/>
  10369. <exception cref="T:System.NotSupportedException"/>
  10370. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10371. <exception cref="T:System.IO.FileNotFoundException"/>
  10372. <exception cref="T:System.IO.IOException"/>
  10373. <exception cref="T:System.Security.SecurityException"/>
  10374. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10375. <exception cref="T:System.UnauthorizedAccessException"/>
  10376. <exception cref="T:System.PlatformNotSupportedException"/>
  10377. <param name="path">The file to write to.</param>
  10378. <param name="contents">The lines to write to the file.</param>
  10379. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10380. </member>
  10381. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.String[],Alphaleonis.Win32.Filesystem.PathFormat)">
  10382. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10383. <exception cref="T:System.ArgumentNullException"/>
  10384. <exception cref="T:System.ArgumentException"/>
  10385. <exception cref="T:System.NotSupportedException"/>
  10386. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10387. <exception cref="T:System.IO.FileNotFoundException"/>
  10388. <exception cref="T:System.IO.IOException"/>
  10389. <exception cref="T:System.Security.SecurityException"/>
  10390. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10391. <exception cref="T:System.UnauthorizedAccessException"/>
  10392. <exception cref="T:System.PlatformNotSupportedException"/>
  10393. <param name="path">The file to write to.</param>
  10394. <param name="contents">The string array to write to the file.</param>
  10395. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10396. </member>
  10397. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10398. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10399. <exception cref="T:System.ArgumentNullException"/>
  10400. <exception cref="T:System.ArgumentException"/>
  10401. <exception cref="T:System.NotSupportedException"/>
  10402. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10403. <exception cref="T:System.IO.FileNotFoundException"/>
  10404. <exception cref="T:System.IO.IOException"/>
  10405. <exception cref="T:System.Security.SecurityException"/>
  10406. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10407. <exception cref="T:System.UnauthorizedAccessException"/>
  10408. <exception cref="T:System.PlatformNotSupportedException"/>
  10409. <param name="path">The file to write to.</param>
  10410. <param name="contents">The lines to write to the file.</param>
  10411. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10412. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10413. </member>
  10414. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLines(System.String,System.String[],System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10415. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10416. <exception cref="T:System.ArgumentNullException"/>
  10417. <exception cref="T:System.ArgumentException"/>
  10418. <exception cref="T:System.NotSupportedException"/>
  10419. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10420. <exception cref="T:System.IO.FileNotFoundException"/>
  10421. <exception cref="T:System.IO.IOException"/>
  10422. <exception cref="T:System.Security.SecurityException"/>
  10423. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10424. <exception cref="T:System.UnauthorizedAccessException"/>
  10425. <exception cref="T:System.PlatformNotSupportedException"/>
  10426. <param name="path">The file to write to.</param>
  10427. <param name="contents">The string array to write to the file.</param>
  10428. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10429. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10430. </member>
  10431. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String})">
  10432. <summary>[AlphaFS] Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
  10433. <remarks>The default behavior of the method is to write out data by using UTF-8 encoding without a byte order mark (BOM).</remarks>
  10434. <exception cref="T:System.ArgumentNullException"/>
  10435. <exception cref="T:System.ArgumentException"/>
  10436. <exception cref="T:System.NotSupportedException"/>
  10437. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10438. <exception cref="T:System.IO.FileNotFoundException"/>
  10439. <exception cref="T:System.IO.IOException"/>
  10440. <exception cref="T:System.Security.SecurityException"/>
  10441. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10442. <exception cref="T:System.UnauthorizedAccessException"/>
  10443. <exception cref="T:System.PlatformNotSupportedException"/>
  10444. <param name="transaction">The transaction.</param>
  10445. <param name="path">The file to write to.</param>
  10446. <param name="contents">The lines to write to the file.</param>
  10447. </member>
  10448. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String[])">
  10449. <summary>[AlphaFS] Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
  10450. <remarks>The default behavior of the method is to write out data by using UTF-8 encoding without a byte order mark (BOM).</remarks>
  10451. <exception cref="T:System.ArgumentNullException"/>
  10452. <exception cref="T:System.ArgumentException"/>
  10453. <exception cref="T:System.NotSupportedException"/>
  10454. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10455. <exception cref="T:System.IO.FileNotFoundException"/>
  10456. <exception cref="T:System.IO.IOException"/>
  10457. <exception cref="T:System.Security.SecurityException"/>
  10458. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10459. <exception cref="T:System.UnauthorizedAccessException"/>
  10460. <exception cref="T:System.PlatformNotSupportedException"/>
  10461. <param name="transaction">The transaction.</param>
  10462. <param name="path">The file to write to.</param>
  10463. <param name="contents">The string array to write to the file.</param>
  10464. </member>
  10465. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
  10466. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10467. <exception cref="T:System.ArgumentNullException"/>
  10468. <exception cref="T:System.ArgumentException"/>
  10469. <exception cref="T:System.NotSupportedException"/>
  10470. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10471. <exception cref="T:System.IO.FileNotFoundException"/>
  10472. <exception cref="T:System.IO.IOException"/>
  10473. <exception cref="T:System.Security.SecurityException"/>
  10474. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10475. <exception cref="T:System.UnauthorizedAccessException"/>
  10476. <exception cref="T:System.PlatformNotSupportedException"/>
  10477. <param name="transaction">The transaction.</param>
  10478. <param name="path">The file to write to.</param>
  10479. <param name="contents">The lines to write to the file.</param>
  10480. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10481. </member>
  10482. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String[],System.Text.Encoding)">
  10483. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10484. <exception cref="T:System.ArgumentNullException"/>
  10485. <exception cref="T:System.ArgumentException"/>
  10486. <exception cref="T:System.NotSupportedException"/>
  10487. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10488. <exception cref="T:System.IO.FileNotFoundException"/>
  10489. <exception cref="T:System.IO.IOException"/>
  10490. <exception cref="T:System.Security.SecurityException"/>
  10491. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10492. <exception cref="T:System.UnauthorizedAccessException"/>
  10493. <exception cref="T:System.PlatformNotSupportedException"/>
  10494. <param name="transaction">The transaction.</param>
  10495. <param name="path">The file to write to.</param>
  10496. <param name="contents">The string array to write to the file.</param>
  10497. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10498. </member>
  10499. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},Alphaleonis.Win32.Filesystem.PathFormat)">
  10500. <summary>[AlphaFS] Creates a new file, writes a collection of strings to the file, and then closes the file.</summary>
  10501. <remarks>The default behavior of the method is to write out data by using UTF-8 encoding without a byte order mark (BOM).</remarks>
  10502. <exception cref="T:System.ArgumentNullException"/>
  10503. <exception cref="T:System.ArgumentException"/>
  10504. <exception cref="T:System.NotSupportedException"/>
  10505. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10506. <exception cref="T:System.IO.FileNotFoundException"/>
  10507. <exception cref="T:System.IO.IOException"/>
  10508. <exception cref="T:System.Security.SecurityException"/>
  10509. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10510. <exception cref="T:System.UnauthorizedAccessException"/>
  10511. <exception cref="T:System.PlatformNotSupportedException"/>
  10512. <param name="transaction">The transaction.</param>
  10513. <param name="path">The file to write to.</param>
  10514. <param name="contents">The lines to write to the file.</param>
  10515. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10516. </member>
  10517. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String[],Alphaleonis.Win32.Filesystem.PathFormat)">
  10518. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10519. <exception cref="T:System.ArgumentNullException"/>
  10520. <exception cref="T:System.ArgumentException"/>
  10521. <exception cref="T:System.NotSupportedException"/>
  10522. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10523. <exception cref="T:System.IO.FileNotFoundException"/>
  10524. <exception cref="T:System.IO.IOException"/>
  10525. <exception cref="T:System.Security.SecurityException"/>
  10526. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10527. <exception cref="T:System.UnauthorizedAccessException"/>
  10528. <exception cref="T:System.PlatformNotSupportedException"/>
  10529. <param name="transaction">The transaction.</param>
  10530. <param name="path">The file to write to.</param>
  10531. <param name="contents">The string array to write to the file.</param>
  10532. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10533. </member>
  10534. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10535. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10536. <exception cref="T:System.ArgumentNullException"/>
  10537. <exception cref="T:System.ArgumentException"/>
  10538. <exception cref="T:System.NotSupportedException"/>
  10539. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10540. <exception cref="T:System.IO.FileNotFoundException"/>
  10541. <exception cref="T:System.IO.IOException"/>
  10542. <exception cref="T:System.Security.SecurityException"/>
  10543. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10544. <exception cref="T:System.UnauthorizedAccessException"/>
  10545. <exception cref="T:System.PlatformNotSupportedException"/>
  10546. <param name="transaction">The transaction.</param>
  10547. <param name="path">The file to write to.</param>
  10548. <param name="contents">The lines to write to the file.</param>
  10549. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10550. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10551. </member>
  10552. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String[],System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10553. <summary>[AlphaFS] Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10554. <exception cref="T:System.ArgumentNullException"/>
  10555. <exception cref="T:System.ArgumentException"/>
  10556. <exception cref="T:System.NotSupportedException"/>
  10557. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10558. <exception cref="T:System.IO.FileNotFoundException"/>
  10559. <exception cref="T:System.IO.IOException"/>
  10560. <exception cref="T:System.Security.SecurityException"/>
  10561. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10562. <exception cref="T:System.UnauthorizedAccessException"/>
  10563. <exception cref="T:System.PlatformNotSupportedException"/>
  10564. <param name="transaction">The transaction.</param>
  10565. <param name="path">The file to write to.</param>
  10566. <param name="contents">The string array to write to the file.</param>
  10567. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10568. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10569. </member>
  10570. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllText(System.String,System.String)">
  10571. <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>
  10572. <remarks>This method uses UTF-8 encoding without a Byte-Order Mark (BOM)</remarks>
  10573. <exception cref="T:System.ArgumentNullException"/>
  10574. <exception cref="T:System.ArgumentException"/>
  10575. <exception cref="T:System.NotSupportedException"/>
  10576. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10577. <exception cref="T:System.IO.FileNotFoundException"/>
  10578. <exception cref="T:System.IO.IOException"/>
  10579. <exception cref="T:System.Security.SecurityException"/>
  10580. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10581. <exception cref="T:System.UnauthorizedAccessException"/>
  10582. <exception cref="T:System.PlatformNotSupportedException"/>
  10583. <param name="path">The file to write to.</param>
  10584. <param name="contents">The string to write to the file.</param>
  10585. </member>
  10586. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllText(System.String,System.String,System.Text.Encoding)">
  10587. <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>
  10588. <param name="path">The file to write to.</param>
  10589. <param name="contents">The string to write to the file.</param>
  10590. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  10591. </member>
  10592. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllText(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10593. <summary>[AlphaFS] 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>
  10594. <remarks>This method uses UTF-8 encoding without a Byte-Order Mark (BOM)</remarks>
  10595. <exception cref="T:System.ArgumentNullException"/>
  10596. <exception cref="T:System.ArgumentException"/>
  10597. <exception cref="T:System.NotSupportedException"/>
  10598. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10599. <exception cref="T:System.IO.FileNotFoundException"/>
  10600. <exception cref="T:System.IO.IOException"/>
  10601. <exception cref="T:System.Security.SecurityException"/>
  10602. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10603. <exception cref="T:System.UnauthorizedAccessException"/>
  10604. <exception cref="T:System.PlatformNotSupportedException"/>
  10605. <param name="path">The file to write to.</param>
  10606. <param name="contents">The string to write to the file.</param>
  10607. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10608. </member>
  10609. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllText(System.String,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10610. <summary>[AlphaFS] 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>
  10611. <exception cref="T:System.ArgumentNullException"/>
  10612. <exception cref="T:System.ArgumentException"/>
  10613. <exception cref="T:System.NotSupportedException"/>
  10614. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10615. <exception cref="T:System.IO.FileNotFoundException"/>
  10616. <exception cref="T:System.IO.IOException"/>
  10617. <exception cref="T:System.Security.SecurityException"/>
  10618. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10619. <exception cref="T:System.UnauthorizedAccessException"/>
  10620. <exception cref="T:System.PlatformNotSupportedException"/>
  10621. <param name="path">The file to write to.</param>
  10622. <param name="contents">The string to write to the file.</param>
  10623. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  10624. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10625. </member>
  10626. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  10627. <summary>[AlphaFS] Creates a new file as part of a transaction, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
  10628. <remarks>This method uses UTF-8 encoding without a Byte-Order Mark (BOM)</remarks>
  10629. <exception cref="T:System.ArgumentNullException"/>
  10630. <exception cref="T:System.ArgumentException"/>
  10631. <exception cref="T:System.NotSupportedException"/>
  10632. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10633. <exception cref="T:System.IO.FileNotFoundException"/>
  10634. <exception cref="T:System.IO.IOException"/>
  10635. <exception cref="T:System.Security.SecurityException"/>
  10636. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10637. <exception cref="T:System.UnauthorizedAccessException"/>
  10638. <exception cref="T:System.PlatformNotSupportedException"/>
  10639. <param name="transaction">The transaction.</param>
  10640. <param name="path">The file to write to.</param>
  10641. <param name="contents">The string to write to the file.</param>
  10642. </member>
  10643. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Text.Encoding)">
  10644. <summary>[AlphaFS] Creates a new file as part of a transaction, 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>
  10645. <exception cref="T:System.ArgumentNullException"/>
  10646. <exception cref="T:System.ArgumentException"/>
  10647. <exception cref="T:System.NotSupportedException"/>
  10648. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10649. <exception cref="T:System.IO.FileNotFoundException"/>
  10650. <exception cref="T:System.IO.IOException"/>
  10651. <exception cref="T:System.Security.SecurityException"/>
  10652. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10653. <exception cref="T:System.UnauthorizedAccessException"/>
  10654. <exception cref="T:System.PlatformNotSupportedException"/>
  10655. <param name="transaction">The transaction.</param>
  10656. <param name="path">The file to write to.</param>
  10657. <param name="contents">The string to write to the file.</param>
  10658. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  10659. </member>
  10660. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10661. <summary>[AlphaFS] Creates a new file as part of a transaction, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.</summary>
  10662. <remarks>This method uses UTF-8 encoding without a Byte-Order Mark (BOM)</remarks>
  10663. <exception cref="T:System.ArgumentNullException"/>
  10664. <exception cref="T:System.ArgumentException"/>
  10665. <exception cref="T:System.NotSupportedException"/>
  10666. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10667. <exception cref="T:System.IO.FileNotFoundException"/>
  10668. <exception cref="T:System.IO.IOException"/>
  10669. <exception cref="T:System.Security.SecurityException"/>
  10670. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10671. <exception cref="T:System.UnauthorizedAccessException"/>
  10672. <exception cref="T:System.PlatformNotSupportedException"/>
  10673. <param name="transaction">The transaction.</param>
  10674. <param name="path">The file to write to.</param>
  10675. <param name="contents">The string to write to the file.</param>
  10676. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10677. </member>
  10678. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10679. <summary>[AlphaFS] Creates a new file as part of a transaction, 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>
  10680. <exception cref="T:System.ArgumentNullException"/>
  10681. <exception cref="T:System.ArgumentException"/>
  10682. <exception cref="T:System.NotSupportedException"/>
  10683. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10684. <exception cref="T:System.IO.FileNotFoundException"/>
  10685. <exception cref="T:System.IO.IOException"/>
  10686. <exception cref="T:System.Security.SecurityException"/>
  10687. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10688. <exception cref="T:System.UnauthorizedAccessException"/>
  10689. <exception cref="T:System.PlatformNotSupportedException"/>
  10690. <param name="transaction">The transaction.</param>
  10691. <param name="path">The file to write to.</param>
  10692. <param name="contents">The string to write to the file.</param>
  10693. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  10694. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10695. </member>
  10696. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAppendAllLinesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding,System.Boolean,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  10697. <summary>Creates/appends a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file.</summary>
  10698. <exception cref="T:System.ArgumentNullException"/>
  10699. <exception cref="T:System.ArgumentException"/>
  10700. <exception cref="T:System.NotSupportedException"/>
  10701. <exception cref="T:System.ArgumentOutOfRangeException"/>
  10702. <exception cref="T:System.IO.FileNotFoundException"/>
  10703. <exception cref="T:System.IO.IOException"/>
  10704. <exception cref="T:System.Security.SecurityException"/>
  10705. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  10706. <exception cref="T:System.UnauthorizedAccessException"/>
  10707. <exception cref="T:System.PlatformNotSupportedException"/>
  10708. <param name="transaction">The transaction.</param>
  10709. <param name="path">The file to write to.</param>
  10710. <param name="contents">The lines to write to the file.</param>
  10711. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10712. <param name="isAppend"><see langword="true"/> for file Append, <see langword="false"/> for file Write.</param>
  10713. <param name="addNewLine"><see langword="true"/> to a line terminator, <see langword="false"/> to ommit the line terminator.</param>
  10714. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10715. </member>
  10716. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendText(System.String)">
  10717. <summary>
  10718. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or to a new
  10719. file if the specified file does not exist.
  10720. </summary>
  10721. <param name="path">The path to the file to append to.</param>
  10722. <returns>
  10723. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10724. </returns>
  10725. </member>
  10726. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendText(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10727. <summary>
  10728. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10729. to a new file if the specified file does not exist.
  10730. </summary>
  10731. <param name="path">The path to the file to append to.</param>
  10732. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10733. <returns>
  10734. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10735. </returns>
  10736. </member>
  10737. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendText(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10738. <summary>
  10739. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10740. to a new file if the specified file does not exist.
  10741. </summary>
  10742. <param name="path">The path to the file to append to.</param>
  10743. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10744. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10745. <returns>
  10746. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10747. </returns>
  10748. </member>
  10749. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendText(System.String,System.Text.Encoding)">
  10750. <summary>
  10751. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10752. to a new file if the specified file does not exist.
  10753. </summary>
  10754. <param name="path">The path to the file to append to.</param>
  10755. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10756. <returns>
  10757. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10758. </returns>
  10759. </member>
  10760. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  10761. <summary>
  10762. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10763. to a new file if the specified file does not exist.
  10764. </summary>
  10765. <param name="transaction">The transaction.</param>
  10766. <param name="path">The path to the file to append to.</param>
  10767. <returns>
  10768. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10769. </returns>
  10770. </member>
  10771. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10772. <summary>
  10773. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10774. to a new file if the specified file does not exist.
  10775. </summary>
  10776. <param name="transaction">The transaction.</param>
  10777. <param name="path">The path to the file to append to.</param>
  10778. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10779. <returns>
  10780. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10781. </returns>
  10782. </member>
  10783. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10784. <summary>
  10785. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10786. to a new file if the specified file does not exist.
  10787. </summary>
  10788. <param name="transaction">The transaction.</param>
  10789. <param name="path">The path to the file to append to.</param>
  10790. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10791. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10792. <returns>
  10793. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10794. </returns>
  10795. </member>
  10796. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding)">
  10797. <summary>
  10798. Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or
  10799. to a new file if the specified file does not exist.
  10800. </summary>
  10801. <param name="transaction">The transaction.</param>
  10802. <param name="path">The path to the file to append to.</param>
  10803. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10804. <returns>
  10805. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10806. </returns>
  10807. </member>
  10808. <member name="M:Alphaleonis.Win32.Filesystem.File.AppendTextCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  10809. <summary>Creates a <see cref="T:System.IO.StreamWriter"/> that appends NativeMethods.DefaultFileEncoding encoded text to an existing file, or to a new file if the specified file does not exist.</summary>
  10810. <exception cref="T:System.IO.IOException"/>
  10811. <param name="transaction">The transaction.</param>
  10812. <param name="path">The path to the file to append to.</param>
  10813. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  10814. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10815. <returns>
  10816. A stream writer that appends NativeMethods.DefaultFileEncoding encoded text to the specified file or to a new file.
  10817. </returns>
  10818. </member>
  10819. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String)">
  10820. <summary>Creates or overwrites a file in the specified path.</summary>
  10821. <param name="path">The path and name of the file to create.</param>
  10822. <returns>A <see cref="T:System.IO.FileStream"/> that provides read/write access to the file specified in <paramref name="path"/>.</returns>
  10823. </member>
  10824. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32)">
  10825. <summary>Creates or overwrites the specified file.</summary>
  10826. <param name="path">The name of the file.</param>
  10827. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10828. <returns>
  10829. A <see cref="T:System.IO.FileStream"/> with the specified buffer size that provides read/write access to the file specified in
  10830. <paramref name="path"/>.
  10831. </returns>
  10832. </member>
  10833. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32,System.IO.FileOptions)">
  10834. <summary>
  10835. Creates or overwrites the specified file, specifying a buffer size and a
  10836. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10837. </summary>
  10838. <param name="path">The name of the file.</param>
  10839. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10840. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  10841. <returns>A new file with the specified buffer size.</returns>
  10842. </member>
  10843. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)">
  10844. <summary>
  10845. Creates or overwrites the specified file, specifying a buffer size and a
  10846. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10847. </summary>
  10848. <param name="path">The name of the file.</param>
  10849. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10850. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  10851. <param name="fileSecurity">
  10852. One of the <see cref="T:System.Security.AccessControl.FileSecurity"/> values that determines the access control and audit security for the file.
  10853. </param>
  10854. <returns>A new file with the specified buffer size, file options, and file security.</returns>
  10855. </member>
  10856. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10857. <summary>Creates or overwrites a file in the specified path.</summary>
  10858. <param name="path">The path and name of the file to create.</param>
  10859. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10860. <returns>
  10861. A <see cref="T:System.IO.FileStream"/> that provides read/write access to the file specified in
  10862. <paramref name="path"/>.
  10863. </returns>
  10864. </member>
  10865. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32,Alphaleonis.Win32.Filesystem.PathFormat)">
  10866. <summary>Creates or overwrites the specified file.</summary>
  10867. <param name="path">The name of the file.</param>
  10868. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10869. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10870. <returns>
  10871. A <see cref="T:System.IO.FileStream"/> with the specified buffer size that provides read/write access to the file specified in
  10872. <paramref name="path"/>.
  10873. </returns>
  10874. </member>
  10875. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  10876. <summary>
  10877. Creates or overwrites the specified file, specifying a buffer size and a
  10878. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10879. </summary>
  10880. <param name="path">The name of the file.</param>
  10881. <param name="bufferSize">
  10882. The number of bytes buffered for reads and writes to the file.
  10883. </param>
  10884. <param name="options">
  10885. One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the
  10886. file.
  10887. </param>
  10888. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10889. <returns>A new file with the specified buffer size.</returns>
  10890. </member>
  10891. <member name="M:Alphaleonis.Win32.Filesystem.File.Create(System.String,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  10892. <summary>
  10893. Creates or overwrites the specified file, specifying a buffer size and a
  10894. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10895. </summary>
  10896. <param name="path">The name of the file.</param>
  10897. <param name="bufferSize">
  10898. The number of bytes buffered for reads and writes to the file.
  10899. </param>
  10900. <param name="options">
  10901. One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the
  10902. file.
  10903. </param>
  10904. <param name="fileSecurity">
  10905. One of the <see cref="T:System.Security.AccessControl.FileSecurity"/> values that determines the access control and audit
  10906. security for the file.
  10907. </param>
  10908. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10909. <returns>
  10910. A new file with the specified buffer size, file options, and file security.
  10911. </returns>
  10912. </member>
  10913. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  10914. <summary>Creates or overwrites a file in the specified path.</summary>
  10915. <param name="transaction">The transaction.</param>
  10916. <param name="path">The path and name of the file to create.</param>
  10917. <returns>
  10918. A <see cref="T:System.IO.FileStream"/> that provides read/write access to the file specified in
  10919. <paramref name="path"/>.
  10920. </returns>
  10921. </member>
  10922. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32)">
  10923. <summary>Creates or overwrites the specified file.</summary>
  10924. <param name="transaction">The transaction.</param>
  10925. <param name="path">The name of the file.</param>
  10926. <param name="bufferSize">
  10927. The number of bytes buffered for reads and writes to the file.
  10928. </param>
  10929. <returns>
  10930. A <see cref="T:System.IO.FileStream"/> with the specified buffer size that provides read/write access
  10931. to the file specified in <paramref name="path"/>.
  10932. </returns>
  10933. </member>
  10934. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32,System.IO.FileOptions)">
  10935. <summary>
  10936. Creates or overwrites the specified file, specifying a buffer size and a
  10937. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10938. </summary>
  10939. <param name="transaction">The transaction.</param>
  10940. <param name="path">The name of the file.</param>
  10941. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10942. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  10943. <returns>A new file with the specified buffer size.</returns>
  10944. </member>
  10945. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)">
  10946. <summary>
  10947. Creates or overwrites the specified file, specifying a buffer size and a
  10948. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10949. </summary>
  10950. <param name="transaction">The transaction.</param>
  10951. <param name="path">The name of the file.</param>
  10952. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10953. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  10954. <param name="fileSecurity">
  10955. One of the <see cref="T:System.Security.AccessControl.FileSecurity"/> values that determines the access control and audit security for the file.
  10956. </param>
  10957. <returns>A new file with the specified buffer size, file options, and file security.</returns>
  10958. </member>
  10959. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  10960. <summary>Creates or overwrites a file in the specified path.</summary>
  10961. <param name="transaction">The transaction.</param>
  10962. <param name="path">The path and name of the file to create.</param>
  10963. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10964. <returns>
  10965. A <see cref="T:System.IO.FileStream"/> that provides read/write access to the file specified in
  10966. <paramref name="path"/>.
  10967. </returns>
  10968. </member>
  10969. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32,Alphaleonis.Win32.Filesystem.PathFormat)">
  10970. <summary>Creates or overwrites the specified file.</summary>
  10971. <param name="transaction">The transaction.</param>
  10972. <param name="path">The name of the file.</param>
  10973. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10974. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10975. <returns>
  10976. A <see cref="T:System.IO.FileStream"/> with the specified buffer size that provides read/write access to the file specified in
  10977. <paramref name="path"/>.
  10978. </returns>
  10979. </member>
  10980. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  10981. <summary>
  10982. Creates or overwrites the specified file, specifying a buffer size and a
  10983. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10984. </summary>
  10985. <param name="transaction">The transaction.</param>
  10986. <param name="path">The name of the file.</param>
  10987. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  10988. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  10989. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  10990. <returns>A new file with the specified buffer size.</returns>
  10991. </member>
  10992. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  10993. <summary>
  10994. Creates or overwrites the specified file, specifying a buffer size and a
  10995. <see cref="T:System.IO.FileOptions"/> value that describes how to create or overwrite the file.
  10996. </summary>
  10997. <param name="transaction">The transaction.</param>
  10998. <param name="path">The name of the file.</param>
  10999. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  11000. <param name="options">One of the <see cref="T:System.IO.FileOptions"/> values that describes how to create or overwrite the file.</param>
  11001. <param name="fileSecurity">
  11002. One of the <see cref="T:System.Security.AccessControl.FileSecurity"/> values that determines the access control and audit security for the file.
  11003. </param>
  11004. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11005. <returns>A new file with the specified buffer size, file options, and file security.</returns>
  11006. </member>
  11007. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateFileStreamCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.PathFormat)">
  11008. <summary>Creates or overwrites a file in the specified path.</summary>
  11009. <param name="transaction">The transaction.</param>
  11010. <param name="path">The name of the file.</param>
  11011. <param name="attributes">The <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> additional advanced options to create a file.</param>
  11012. <param name="fileSecurity">
  11013. A <see cref="T:System.Security.AccessControl.FileSecurity"/> instance that determines the access control and audit security for the file.
  11014. </param>
  11015. <param name="mode">The <see cref="T:System.IO.FileMode"/> option gives you more precise control over how you want to create a file.</param>
  11016. <param name="access">
  11017. The <see cref="T:System.IO.FileAccess"/> allow you additionally specify to default read/write capability - just write, bypassing any cache.
  11018. </param>
  11019. <param name="share">
  11020. The <see cref="T:System.IO.FileShare"/> option controls how you would like to share created file with other requesters.
  11021. </param>
  11022. <param name="pathFormat">Indicates the format of the <paramref name="path"/> parameter.</param>
  11023. <param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
  11024. <returns>A <see cref="T:System.IO.FileStream"/> that provides read/write access to the file specified in path.</returns>
  11025. </member>
  11026. <member name="M:Alphaleonis.Win32.Filesystem.File.CreateFileCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  11027. <summary>Creates or opens a file, directory or I/O device.</summary>
  11028. <returns>A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> that provides read/write access to the file or directory specified by <paramref name="path"/>.</returns>
  11029. <remarks>
  11030. <para>To obtain a directory handle using CreateFile, specify the FILE_FLAG_BACKUP_SEMANTICS flag as part of dwFlagsAndAttributes.</para>
  11031. <para>The most commonly used I/O devices are as follows: file, file stream, directory, physical disk, volume, console buffer, tape drive, communications resource, mailslot, and pipe.</para>
  11032. </remarks>
  11033. <exception cref="T:System.ArgumentException"/>
  11034. <exception cref="T:System.ArgumentNullException"/>
  11035. <exception cref="T:System.NotSupportedException"/>
  11036. <param name="transaction">The transaction.</param>
  11037. <param name="path">The path and name of the file or directory to create.</param>
  11038. <param name="attributes">One of the <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> values that describes how to create or overwrite the file or directory.</param>
  11039. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> instance that determines the access control and audit security for the file or directory.</param>
  11040. <param name="fileMode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file or directory.</param>
  11041. <param name="fileSystemRights">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file or directory.</param>
  11042. <param name="fileShare">A <see cref="T:System.IO.FileShare"/> constant that determines how the file or directory will be shared by processes.</param>
  11043. <param name="checkPath">.</param>
  11044. <param name="pathFormat">Indicates the format of the <paramref name="path"/> parameter.</param>
  11045. </member>
  11046. <member name="M:Alphaleonis.Win32.Filesystem.File.Exists(System.String)">
  11047. <summary>Determines whether the specified file exists.</summary>
  11048. <remarks>
  11049. <para>MSDN: .NET 3.5+: Trailing spaces are removed from the end of the
  11050. <paramref name="path"/> parameter before checking whether the directory exists.</para>
  11051. <para>The Exists method returns <see langword="false"/> if any error occurs while trying to
  11052. determine if the specified file exists.</para>
  11053. <para>This can occur in situations that raise exceptions such as passing a file name with
  11054. invalid characters or too many characters, a failing or missing disk, or if the caller does not have permission to read the
  11055. file.</para>
  11056. <para>The Exists method should not be used for path validation,
  11057. this method merely checks if the file specified in path exists.</para>
  11058. <para>Passing an invalid path to Exists returns false.</para>
  11059. <para>Be aware that another process can potentially do something with the file in
  11060. between the time you call the Exists method and perform another operation on the file, such as Delete.</para>
  11061. </remarks>
  11062. <param name="path">The file to check.</param>
  11063. <returns>
  11064. Returns <see langword="true"/> if the caller has the required permissions and
  11065. <paramref name="path"/> contains the name of an existing file; otherwise,
  11066. <see langword="false"/>
  11067. </returns>
  11068. </member>
  11069. <member name="M:Alphaleonis.Win32.Filesystem.File.Exists(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11070. <summary>[AlphaFS] Determines whether the specified file exists.</summary>
  11071. <remarks>
  11072. <para>MSDN: .NET 3.5+: Trailing spaces are removed from the end of the
  11073. <paramref name="path"/> parameter before checking whether the directory exists.</para>
  11074. <para>The Exists method returns <see langword="false"/> if any error occurs while trying to
  11075. determine if the specified file exists.</para>
  11076. <para>This can occur in situations that raise exceptions such as passing a file name with
  11077. invalid characters or too many characters,</para>
  11078. <para>a failing or missing disk, or if the caller does not have permission to read the
  11079. file.</para>
  11080. <para>The Exists method should not be used for path validation, this method merely checks
  11081. if the file specified in path exists.</para>
  11082. <para>Passing an invalid path to Exists returns false.</para>
  11083. <para>Be aware that another process can potentially do something with the file in
  11084. between the time you call the Exists method and perform another operation on the file, such
  11085. as Delete.</para>
  11086. </remarks>
  11087. <param name="path">The file to check.</param>
  11088. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11089. <returns>
  11090. <para>Returns <see langword="true"/> if the caller has the required permissions and
  11091. <paramref name="path"/> contains the name of an existing file; otherwise,
  11092. <see langword="false"/></para>
  11093. </returns>
  11094. </member>
  11095. <member name="M:Alphaleonis.Win32.Filesystem.File.ExistsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11096. <summary>
  11097. [AlphaFS] Determines whether the specified file exists.
  11098. </summary>
  11099. <remarks>
  11100. <para>MSDN: .NET 3.5+: Trailing spaces are removed from the end of the
  11101. <paramref name="path"/> parameter before checking whether the directory exists.</para>
  11102. <para>The Exists method returns <see langword="false"/> if any error occurs while trying to
  11103. determine if the specified file exists.</para>
  11104. <para>This can occur in situations that raise exceptions such as passing a file name with
  11105. invalid characters or too many characters,</para>
  11106. <para>a failing or missing disk, or if the caller does not have permission to read the
  11107. file.</para>
  11108. <para>The Exists method should not be used for path validation,</para>
  11109. <para>this method merely checks if the file specified in path exists.</para>
  11110. <para>Passing an invalid path to Exists returns false.</para>
  11111. <para>Be aware that another process can potentially do something with the file in
  11112. between</para>
  11113. <para>the time you call the Exists method and perform another operation on the file, such
  11114. as Delete.</para>
  11115. </remarks>
  11116. <param name="transaction">The transaction.</param>
  11117. <param name="path">The file to check.</param>
  11118. <returns>
  11119. <para>Returns <see langword="true"/> if the caller has the required permissions</para>
  11120. <para>and <paramref name="path"/> contains the name of an existing file; otherwise,
  11121. <see langword="false"/></para>
  11122. </returns>
  11123. </member>
  11124. <member name="M:Alphaleonis.Win32.Filesystem.File.ExistsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11125. <summary>
  11126. [AlphaFS] Determines whether the specified file exists.
  11127. </summary>
  11128. <remarks>
  11129. <para>MSDN: .NET 3.5+: Trailing spaces are removed from the end of the
  11130. <paramref name="path"/> parameter before checking whether the directory exists.</para>
  11131. <para>The Exists method returns <see langword="false"/> if any error occurs while trying to
  11132. determine if the specified file exists.</para>
  11133. <para>This can occur in situations that raise exceptions such as passing a file name with
  11134. invalid characters or too many characters,</para>
  11135. <para>a failing or missing disk, or if the caller does not have permission to read the
  11136. file.</para>
  11137. <para>The Exists method should not be used for path validation,</para>
  11138. <para>this method merely checks if the file specified in path exists.</para>
  11139. <para>Passing an invalid path to Exists returns false.</para>
  11140. <para>Be aware that another process can potentially do something with the file in
  11141. between</para>
  11142. <para>the time you call the Exists method and perform another operation on the file, such
  11143. as Delete.</para>
  11144. </remarks>
  11145. <param name="transaction">The transaction.</param>
  11146. <param name="path">The file to check.</param>
  11147. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11148. <returns>
  11149. <para>Returns <see langword="true"/> if the caller has the required permissions</para>
  11150. <para>and <paramref name="path"/> contains the name of an existing file; otherwise,
  11151. <see langword="false"/></para>
  11152. </returns>
  11153. </member>
  11154. <member name="M:Alphaleonis.Win32.Filesystem.File.ExistsCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11155. <summary>Determines whether the specified file or directory exists.</summary>
  11156. <remarks>
  11157. <para>MSDN: .NET 3.5+: Trailing spaces are removed from the end of the <paramref name="path"/> parameter before checking whether
  11158. the directory exists.</para>
  11159. <para>The Exists method returns <see langword="false"/> if any error occurs while trying to determine if the specified file
  11160. exists.</para>
  11161. <para>This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,
  11162. </para>
  11163. <para>a failing or missing disk, or if the caller does not have permission to read the file.</para>
  11164. <para>The Exists method should not be used for path validation,
  11165. this method merely checks if the file specified in path exists.</para>
  11166. <para>Passing an invalid path to Exists returns false.</para>
  11167. <para>Be aware that another process can potentially do something with the file in between
  11168. the time you call the Exists method and perform another operation on the file, such as Delete.</para>
  11169. </remarks>
  11170. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  11171. <param name="transaction">The transaction.</param>
  11172. <param name="path">The file to check.</param>
  11173. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11174. <returns>
  11175. <para>Returns <see langword="true"/> if the caller has the required permissions</para>
  11176. <para>and <paramref name="path"/> contains the name of an existing file or directory; otherwise, <see langword="false"/></para>
  11177. </returns>
  11178. </member>
  11179. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(System.String)">
  11180. <summary>Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file.</summary>
  11181. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  11182. <exception cref="T:System.IO.IOException"/>
  11183. <exception cref="T:System.ArgumentException"/>
  11184. <exception cref="T:System.ArgumentNullException"/>
  11185. <param name="path">The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11186. </member>
  11187. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections)">
  11188. <summary>Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file.</summary>
  11189. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  11190. <exception cref="T:System.IO.IOException"/>
  11191. <exception cref="T:System.ArgumentException"/>
  11192. <exception cref="T:System.ArgumentNullException"/>
  11193. <param name="path">The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11194. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  11195. </member>
  11196. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11197. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file.</summary>
  11198. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  11199. <exception cref="T:System.IO.IOException"/>
  11200. <exception cref="T:System.ArgumentException"/>
  11201. <exception cref="T:System.ArgumentNullException"/>
  11202. <param name="path">The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11203. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11204. </member>
  11205. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(System.String,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  11206. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file.</summary>
  11207. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="path"/> parameter.</returns>
  11208. <exception cref="T:System.IO.IOException"/>
  11209. <exception cref="T:System.ArgumentException"/>
  11210. <exception cref="T:System.ArgumentNullException"/>
  11211. <param name="path">The path to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11212. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  11213. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11214. </member>
  11215. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  11216. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file handle.</summary>
  11217. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="handle"/> parameter.</returns>
  11218. <exception cref="T:System.IO.IOException"/>
  11219. <exception cref="T:System.ArgumentException"/>
  11220. <exception cref="T:System.ArgumentNullException"/>
  11221. <param name="handle">A <see cref="T:System.Runtime.InteropServices.SafeHandle"/> to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11222. </member>
  11223. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.AccessControlSections)">
  11224. <summary>[AlphaFS] Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for a specified file handle.</summary>
  11225. <returns>A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control rules for the file described by the <paramref name="handle"/> parameter.</returns>
  11226. <exception cref="T:System.IO.IOException"/>
  11227. <exception cref="T:System.ArgumentException"/>
  11228. <exception cref="T:System.ArgumentNullException"/>
  11229. <param name="handle">A <see cref="T:System.Runtime.InteropServices.SafeHandle"/> to a file containing a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes the file's access control list (ACL) information.</param>
  11230. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  11231. </member>
  11232. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAccessControlCore``1(System.Boolean,System.String,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  11233. <summary>[AlphaFS] Gets an <see cref="T:System.Security.AccessControl.ObjectSecurity"/> object for a particular file or directory.</summary>
  11234. <returns>An <see cref="T:System.Security.AccessControl.ObjectSecurity"/> object that encapsulates the access control rules for the file or directory described by the <paramref name="path"/> parameter.</returns>
  11235. <exception cref="T:System.IO.IOException"/>
  11236. <exception cref="T:System.ArgumentException"/>
  11237. <exception cref="T:System.ArgumentNullException"/>
  11238. <typeparam name="T">Generic type parameter.</typeparam>
  11239. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  11240. <param name="path">The path to a file/directory containing a <see cref="T:System.Security.AccessControl.FileSecurity"/>/<see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes the file's/directory's access control list (ACL) information.</param>
  11241. <param name="includeSections">One (or more) of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to receive.</param>
  11242. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11243. </member>
  11244. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAttributes(System.String)">
  11245. <summary>Gets the <see cref="T:System.IO.FileAttributes"/> of the file on the path.</summary>
  11246. <param name="path">The path to the file.</param>
  11247. <returns>The <see cref="T:System.IO.FileAttributes"/> of the file on the path.</returns>
  11248. </member>
  11249. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAttributes(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11250. <summary>[AlphaFS] Gets the <see cref="T:System.IO.FileAttributes"/> of the file on the path.</summary>
  11251. <param name="path">The path to the file.</param>
  11252. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11253. <returns>The <see cref="T:System.IO.FileAttributes"/> of the file on the path.</returns>
  11254. </member>
  11255. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAttributesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11256. <summary>[AlphaFS] Gets the <see cref="T:System.IO.FileAttributes"/> of the file on the path.</summary>
  11257. <param name="transaction">The transaction.</param>
  11258. <param name="path">The path to the file.</param>
  11259. <returns>The <see cref="T:System.IO.FileAttributes"/> of the file on the path.</returns>
  11260. </member>
  11261. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAttributesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11262. <summary>[AlphaFS] Gets the <see cref="T:System.IO.FileAttributes"/> of the file on the path.</summary>
  11263. <param name="transaction">The transaction.</param>
  11264. <param name="path">The path to the file.</param>
  11265. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11266. <returns>The <see cref="T:System.IO.FileAttributes"/> of the file on the path.</returns>
  11267. </member>
  11268. <member name="M:Alphaleonis.Win32.Filesystem.File.GetAttributesExCore``1(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat,System.Boolean)">
  11269. <summary>Gets the <see cref="T:System.IO.FileAttributes"/> or <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA"/> of the specified file or directory.</summary>
  11270. <returns>The <see cref="T:System.IO.FileAttributes"/> or <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA"/> of the specified file or directory.</returns>
  11271. <exception cref="T:System.ArgumentException"/>
  11272. <exception cref="T:System.NotSupportedException"/>
  11273. <typeparam name="T">Generic type parameter.</typeparam>
  11274. <param name="transaction">The transaction.</param>
  11275. <param name="path">The path to the file or directory.</param>
  11276. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11277. <param name="returnErrorOnNotFound"></param>
  11278. </member>
  11279. <member name="M:Alphaleonis.Win32.Filesystem.File.FillAttributeInfoCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FILE_ATTRIBUTE_DATA@,System.Boolean,System.Boolean)">
  11280. <summary>
  11281. Calls NativeMethods.GetFileAttributesEx to retrieve WIN32_FILE_ATTRIBUTE_DATA.
  11282. <para>Note that classes should use -1 as the uninitialized state for dataInitialized when relying on this method.</para>
  11283. </summary>
  11284. <remarks>No path (null, empty string) checking or normalization is performed.</remarks>
  11285. <param name="transaction">.</param>
  11286. <param name="pathLp">.</param>
  11287. <param name="win32AttrData">[in,out].</param>
  11288. <param name="tryagain">.</param>
  11289. <param name="returnErrorOnNotFound">.</param>
  11290. <returns>0 on success, otherwise a Win32 error code.</returns>
  11291. </member>
  11292. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTime(System.String)">
  11293. <summary>Gets the creation date and time of the specified file.</summary>
  11294. <param name="path">The file for which to obtain creation date and time information.</param>
  11295. <returns>
  11296. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in
  11297. local time.
  11298. </returns>
  11299. </member>
  11300. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11301. <summary>[AlphaFS] Gets the creation date and time of the specified file.</summary>
  11302. <param name="path">The file for which to obtain creation date and time information.</param>
  11303. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11304. <returns>
  11305. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in
  11306. local time.
  11307. </returns>
  11308. </member>
  11309. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11310. <summary>[AlphaFS] Gets the creation date and time of the specified file.</summary>
  11311. <param name="transaction">The transaction.</param>
  11312. <param name="path">The file for which to obtain creation date and time information.</param>
  11313. <returns>
  11314. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in
  11315. local time.
  11316. </returns>
  11317. </member>
  11318. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11319. <summary>[AlphaFS] Gets the creation date and time of the specified file.</summary>
  11320. <param name="transaction">The transaction.</param>
  11321. <param name="path">The file for which to obtain creation date and time information.</param>
  11322. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11323. <returns>
  11324. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in
  11325. local time.
  11326. </returns>
  11327. </member>
  11328. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeUtc(System.String)">
  11329. <summary>Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  11330. <param name="path">
  11331. The file for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.
  11332. </param>
  11333. <returns>
  11334. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in UTC
  11335. time.
  11336. </returns>
  11337. </member>
  11338. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11339. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  11340. <param name="path">
  11341. The file for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.
  11342. </param>
  11343. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11344. <returns>
  11345. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in UTC
  11346. time.
  11347. </returns>
  11348. </member>
  11349. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11350. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  11351. <param name="transaction">The transaction.</param>
  11352. <param name="path">
  11353. The file for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.
  11354. </param>
  11355. <returns>
  11356. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in UTC
  11357. time.
  11358. </returns>
  11359. </member>
  11360. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11361. <summary>[AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  11362. <param name="transaction">The transaction.</param>
  11363. <param name="path">
  11364. The file for which to obtain creation date and time information, in Coordinated Universal Time (UTC) format.
  11365. </param>
  11366. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11367. <returns>
  11368. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file. This value is expressed in UTC
  11369. time.
  11370. </returns>
  11371. </member>
  11372. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCreationTimeCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  11373. <summary>
  11374. [AlphaFS] Gets the creation date and time, in Coordinated Universal Time (UTC) or local time, of the specified file or directory.
  11375. </summary>
  11376. <param name="transaction">The transaction.</param>
  11377. <param name="path">The file or directory for which to obtain creation date and time information.</param>
  11378. <param name="returnUtc">
  11379. <see langword="true"/> gets the Coordinated Universal Time (UTC), <see langword="false"/> gets the local time.
  11380. </param>
  11381. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11382. <returns>
  11383. A <see cref="T:System.DateTime"/> structure set to the creation date and time for the specified file or directory. Depending on
  11384. <paramref name="returnUtc"/> this value is expressed in UTC- or local time.
  11385. </returns>
  11386. </member>
  11387. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTime(System.String)">
  11388. <summary>Gets the date and time that the specified file was last accessed.</summary>
  11389. <param name="path">The file for which to obtain access date and time information.</param>
  11390. <returns>
  11391. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11392. expressed in local time.
  11393. </returns>
  11394. </member>
  11395. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11396. <summary>[AlphaFS] Gets the date and time that the specified file was last accessed.</summary>
  11397. <param name="path">The file for which to obtain access date and time information.</param>
  11398. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11399. <returns>
  11400. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11401. expressed in local time.
  11402. </returns>
  11403. </member>
  11404. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11405. <summary>[AlphaFS] Gets the date and time that the specified file was last accessed.</summary>
  11406. <param name="transaction">The transaction.</param>
  11407. <param name="path">The file for which to obtain access date and time information.</param>
  11408. <returns>
  11409. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11410. expressed in local time.
  11411. </returns>
  11412. </member>
  11413. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11414. <summary>[AlphaFS] Gets the date and time that the specified file was last accessed.</summary>
  11415. <param name="transaction">The transaction.</param>
  11416. <param name="path">The file for which to obtain access date and time information.</param>
  11417. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11418. <returns>
  11419. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11420. expressed in local time.
  11421. </returns>
  11422. </member>
  11423. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeUtc(System.String)">
  11424. <summary>Gets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  11425. <param name="path">The file for which to obtain access date and time information.</param>
  11426. <returns>
  11427. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11428. expressed in UTC time.
  11429. </returns>
  11430. </member>
  11431. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11432. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  11433. <param name="path">The file for which to obtain access date and time information.</param>
  11434. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11435. <returns>
  11436. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11437. expressed in UTC time.
  11438. </returns>
  11439. </member>
  11440. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11441. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  11442. <param name="transaction">The transaction.</param>
  11443. <param name="path">The file for which to obtain access date and time information.</param>
  11444. <returns>
  11445. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11446. expressed in UTC time.
  11447. </returns>
  11448. </member>
  11449. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11450. <summary>[AlphaFS] Gets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  11451. <param name="transaction">The transaction.</param>
  11452. <param name="path">The file for which to obtain access date and time information.</param>
  11453. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11454. <returns>
  11455. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last accessed. This value is
  11456. expressed in UTC time.
  11457. </returns>
  11458. </member>
  11459. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastAccessTimeCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  11460. <summary>
  11461. [AlphaFS] Gets the date and time, in coordinated universal time (UTC) or local time, that the specified file or directory was last
  11462. accessed.
  11463. </summary>
  11464. <param name="transaction">The transaction.</param>
  11465. <param name="path">The file or directory for which to obtain access date and time information.</param>
  11466. <param name="returnUtc">
  11467. <see langword="true"/> gets the Coordinated Universal Time (UTC), <see langword="false"/> gets the local time.
  11468. </param>
  11469. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11470. <returns>
  11471. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file or directory was last accessed.
  11472. Depending on <paramref name="returnUtc"/> this value is expressed in UTC- or local time.
  11473. </returns>
  11474. </member>
  11475. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTime(System.String)">
  11476. <summary>Gets the date and time that the specified file was last written to.</summary>
  11477. <param name="path">The file for which to obtain write date and time information.</param>
  11478. <returns>
  11479. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11480. expressed in local time.
  11481. </returns>
  11482. </member>
  11483. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11484. <summary>[AlphaFS] Gets the date and time that the specified file was last written to.</summary>
  11485. <param name="path">The file for which to obtain write date and time information.</param>
  11486. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11487. <returns>
  11488. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11489. expressed in local time.
  11490. </returns>
  11491. </member>
  11492. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11493. <summary>[AlphaFS] Gets the date and time that the specified file was last written to.</summary>
  11494. <param name="transaction">The transaction.</param>
  11495. <param name="path">The file for which to obtain write date and time information.</param>
  11496. <returns>
  11497. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11498. expressed in local time.
  11499. </returns>
  11500. </member>
  11501. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11502. <summary>[AlphaFS] Gets the date and time that the specified file was last written to.</summary>
  11503. <param name="transaction">The transaction.</param>
  11504. <param name="path">The file for which to obtain write date and time information.</param>
  11505. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11506. <returns>
  11507. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11508. expressed in local time.
  11509. </returns>
  11510. </member>
  11511. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeUtc(System.String)">
  11512. <summary>Gets the date and time, in coordinated universal time (UTC) time, that the specified file was last written to.</summary>
  11513. <param name="path">The file for which to obtain write date and time information.</param>
  11514. <returns>
  11515. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11516. expressed in UTC time.
  11517. </returns>
  11518. </member>
  11519. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11520. <summary>
  11521. [AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified file was last written to.
  11522. </summary>
  11523. <param name="path">The file for which to obtain write date and time information.</param>
  11524. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11525. <returns>
  11526. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11527. expressed in UTC time.
  11528. </returns>
  11529. </member>
  11530. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  11531. <summary>
  11532. [AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified file was last written to.
  11533. </summary>
  11534. <param name="transaction">The transaction.</param>
  11535. <param name="path">The file for which to obtain write date and time information.</param>
  11536. <returns>
  11537. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11538. expressed in UTC time.
  11539. </returns>
  11540. </member>
  11541. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  11542. <summary>
  11543. [AlphaFS] Gets the date and time, in coordinated universal time (UTC) time, that the specified file was last written to.
  11544. </summary>
  11545. <param name="transaction">The transaction.</param>
  11546. <param name="path">The file for which to obtain write date and time information.</param>
  11547. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11548. <returns>
  11549. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file was last written to. This value is
  11550. expressed in UTC time.
  11551. </returns>
  11552. </member>
  11553. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLastWriteTimeCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  11554. <summary>
  11555. [AlphaFS] Gets the date and time, in coordinated universal time (UTC) or local time, that the specified file or directory was last
  11556. written to.
  11557. </summary>
  11558. <param name="transaction">The transaction.</param>
  11559. <param name="path">The file or directory for which to obtain write date and time information.</param>
  11560. <param name="getUtc">
  11561. <see langword="true"/> gets the Coordinated Universal Time (UTC), <see langword="false"/> gets the local time.
  11562. </param>
  11563. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11564. <returns>
  11565. A <see cref="T:System.DateTime"/> structure set to the date and time that the specified file or directory was last written to.
  11566. Depending on <paramref name="getUtc"/> this value is expressed in UTC- or local time.
  11567. </returns>
  11568. </member>
  11569. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode)">
  11570. <summary>Opens a <see cref="T:System.IO.FileStream"/> on the specified path with read/write access.</summary>
  11571. <param name="path">The file to open.</param>
  11572. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  11573. <returns>A <see cref="T:System.IO.FileStream"/> opened in the specified mode and path, with read/write access and not shared.</returns>
  11574. </member>
  11575. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess)">
  11576. <summary>Opens a <see cref="T:System.IO.FileStream"/> on the specified path, with the specified mode and access.</summary>
  11577. <param name="path">The file to open.</param>
  11578. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  11579. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11580. <returns>An unshared <see cref="T:System.IO.FileStream"/> that provides access to the specified file, with the specified mode and access.</returns>
  11581. </member>
  11582. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
  11583. <summary>Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11584. <param name="path">The file to open.</param>
  11585. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  11586. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11587. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11588. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</returns>
  11589. </member>
  11590. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,Alphaleonis.Win32.Filesystem.PathFormat)">
  11591. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path with read/write access.</summary>
  11592. <param name="path">The file to open.</param>
  11593. <param name="mode">
  11594. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11595. of existing files are retained or overwritten.
  11596. </param>
  11597. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11598. <returns>A <see cref="T:System.IO.FileStream"/> opened in the specified mode and path, with read/write access and not shared.</returns>
  11599. </member>
  11600. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,Alphaleonis.Win32.Filesystem.PathFormat)">
  11601. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path, with the specified mode and access.</summary>
  11602. <param name="path">The file to open.</param>
  11603. <param name="mode">
  11604. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11605. of existing files are retained or overwritten.
  11606. </param>
  11607. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11608. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11609. <returns>
  11610. An unshared <see cref="T:System.IO.FileStream"/> that provides access to the specified file, with the specified mode and access.
  11611. </returns>
  11612. </member>
  11613. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,Alphaleonis.Win32.Filesystem.PathFormat)">
  11614. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11615. <param name="path">The file to open.</param>
  11616. <param name="mode">
  11617. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11618. of existing files are retained or overwritten.
  11619. </param>
  11620. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11621. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11622. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11623. <returns>
  11624. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the
  11625. specified sharing option.
  11626. </returns>
  11627. </member>
  11628. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  11629. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11630. <param name="path">The file to open.</param>
  11631. <param name="mode">
  11632. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11633. of existing files are retained or overwritten.
  11634. </param>
  11635. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11636. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11637. <param name="extendedAttributes">The extended attributes.</param>
  11638. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11639. <returns>
  11640. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the
  11641. specified sharing option.
  11642. </returns>
  11643. </member>
  11644. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)">
  11645. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11646. <param name="path">The file to open.</param>
  11647. <param name="mode">A constant that determines how to open or create the file.</param>
  11648. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11649. file.</param>
  11650. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11651. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The default buffer size is 4096. </param>
  11652. <returns>
  11653. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11654. access and the specified sharing option.
  11655. </returns>
  11656. </member>
  11657. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean)">
  11658. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11659. <param name="path">The file to open.</param>
  11660. <param name="mode">A constant that determines how to open or create the file.</param>
  11661. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11662. file.</param>
  11663. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11664. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11665. default buffer size is 4096.</param>
  11666. <param name="useAsync">Specifies whether to use asynchronous I/O or synchronous I/O. However, note that the
  11667. underlying operating system might not support asynchronous I/O, so when specifying true, the handle might be
  11668. opened synchronously depending on the platform. When opened asynchronously, the BeginRead and BeginWrite methods
  11669. perform better on large reads or writes, but they might be much slower for small reads or writes. If the
  11670. application is designed to take advantage of asynchronous I/O, set the useAsync parameter to true. Using
  11671. asynchronous I/O correctly can speed up applications by as much as a factor of 10, but using it without
  11672. redesigning the application for asynchronous I/O can decrease performance by as much as a factor of 10.</param>
  11673. <returns>
  11674. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11675. access and the specified sharing option.
  11676. </returns>
  11677. </member>
  11678. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions)">
  11679. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11680. <param name="path">The file to open.</param>
  11681. <param name="mode">A constant that determines how to open or create the file.</param>
  11682. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11683. file.</param>
  11684. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11685. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11686. default buffer size is 4096.</param>
  11687. <param name="options">A value that specifies additional file options.</param>
  11688. <returns>
  11689. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11690. access and the specified sharing option.
  11691. </returns>
  11692. </member>
  11693. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  11694. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11695. <param name="path">The file to open.</param>
  11696. <param name="mode">A constant that determines how to open or create the file.</param>
  11697. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11698. file.</param>
  11699. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11700. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11701. default buffer size is 4096.</param>
  11702. <param name="extendedAttributes">The extended attributes specifying additional options.</param>
  11703. <returns>
  11704. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11705. access and the specified sharing option.
  11706. </returns>
  11707. </member>
  11708. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.PathFormat)">
  11709. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11710. <param name="path">The file to open.</param>
  11711. <param name="mode">A constant that determines how to open or create the file.</param>
  11712. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11713. file.</param>
  11714. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11715. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11716. default buffer size is 4096.</param>
  11717. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11718. <returns>
  11719. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11720. access and the specified sharing option.
  11721. </returns>
  11722. </member>
  11723. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  11724. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11725. <param name="path">The file to open.</param>
  11726. <param name="mode">A constant that determines how to open or create the file.</param>
  11727. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11728. file.</param>
  11729. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11730. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11731. default buffer size is 4096.</param>
  11732. <param name="useAsync">Specifies whether to use asynchronous I/O or synchronous I/O. However, note that the
  11733. underlying operating system might not support asynchronous I/O, so when specifying true, the handle might be
  11734. opened synchronously depending on the platform. When opened asynchronously, the BeginRead and BeginWrite methods
  11735. perform better on large reads or writes, but they might be much slower for small reads or writes. If the
  11736. application is designed to take advantage of asynchronous I/O, set the useAsync parameter to true. Using
  11737. asynchronous I/O correctly can speed up applications by as much as a factor of 10, but using it without
  11738. redesigning the application for asynchronous I/O can decrease performance by as much as a factor of 10.</param>
  11739. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11740. <returns>
  11741. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11742. access and the specified sharing option.
  11743. </returns>
  11744. </member>
  11745. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  11746. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11747. <param name="path">The file to open.</param>
  11748. <param name="mode">A constant that determines how to open or create the file.</param>
  11749. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11750. file.</param>
  11751. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11752. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11753. default buffer size is 4096.</param>
  11754. <param name="options">A value that specifies additional file options.</param>
  11755. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11756. <returns>
  11757. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11758. access and the specified sharing option.
  11759. </returns>
  11760. </member>
  11761. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  11762. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11763. <param name="path">The file to open.</param>
  11764. <param name="mode">A constant that determines how to open or create the file.</param>
  11765. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11766. file.</param>
  11767. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11768. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11769. default buffer size is 4096.</param>
  11770. <param name="extendedAttributes">The extended attributes specifying additional options.</param>
  11771. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11772. <returns>
  11773. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11774. access and the specified sharing option.
  11775. </returns>
  11776. </member>
  11777. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions)">
  11778. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11779. <param name="path">The file to open.</param>
  11780. <param name="mode">A constant that determines how to open or create the file.</param>
  11781. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11782. file.</param>
  11783. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11784. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11785. default buffer size is 4096.</param>
  11786. <param name="options">A value that specifies additional file options.</param>
  11787. <returns>
  11788. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11789. access and the specified sharing option.
  11790. </returns>
  11791. </member>
  11792. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  11793. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11794. <param name="path">The file to open.</param>
  11795. <param name="mode">A constant that determines how to open or create the file.</param>
  11796. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11797. file.</param>
  11798. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11799. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11800. default buffer size is 4096.</param>
  11801. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  11802. <returns>
  11803. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11804. access and the specified sharing option.
  11805. </returns>
  11806. </member>
  11807. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)">
  11808. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11809. <param name="path">The file to open.</param>
  11810. <param name="mode">A constant that determines how to open or create the file.</param>
  11811. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11812. file.</param>
  11813. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11814. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11815. default buffer size is 4096.</param>
  11816. <param name="options">A value that specifies additional file options.</param>
  11817. <param name="security">A value that determines the access control and audit security for the file.</param>
  11818. <returns>
  11819. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11820. access and the specified sharing option.
  11821. </returns>
  11822. </member>
  11823. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity)">
  11824. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11825. <param name="path">The file to open.</param>
  11826. <param name="mode">A constant that determines how to open or create the file.</param>
  11827. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11828. file.</param>
  11829. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11830. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11831. default buffer size is 4096.</param>
  11832. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  11833. <param name="security">A value that determines the access control and audit security for the file.</param>
  11834. <returns>
  11835. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11836. access and the specified sharing option.
  11837. </returns>
  11838. </member>
  11839. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  11840. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11841. <param name="path">The file to open.</param>
  11842. <param name="mode">A constant that determines how to open or create the file.</param>
  11843. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11844. file.</param>
  11845. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11846. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11847. default buffer size is 4096.</param>
  11848. <param name="options">A value that specifies additional file options.</param>
  11849. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11850. <returns>
  11851. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11852. access and the specified sharing option.
  11853. </returns>
  11854. </member>
  11855. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  11856. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11857. <param name="path">The file to open.</param>
  11858. <param name="mode">A constant that determines how to open or create the file.</param>
  11859. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11860. file.</param>
  11861. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11862. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11863. default buffer size is 4096.</param>
  11864. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  11865. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11866. <returns>
  11867. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11868. access and the specified sharing option.
  11869. </returns>
  11870. </member>
  11871. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  11872. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, access rights and sharing permission, the buffer size, additional file options, access control and audit security.</summary>
  11873. <param name="path">The file to open.</param>
  11874. <param name="mode">A constant that determines how to open or create the file.</param>
  11875. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11876. file.</param>
  11877. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11878. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11879. default buffer size is 4096.</param>
  11880. <param name="options">A value that specifies additional file options.</param>
  11881. <param name="security">A value that determines the access control and audit security for the file.</param>
  11882. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11883. <returns>
  11884. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11885. access and the specified sharing option.
  11886. </returns>
  11887. </member>
  11888. <member name="M:Alphaleonis.Win32.Filesystem.File.Open(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  11889. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, access rights and sharing permission, the buffer size, additional file options, access control and audit security.</summary>
  11890. <param name="path">The file to open.</param>
  11891. <param name="mode">A constant that determines how to open or create the file.</param>
  11892. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  11893. file.</param>
  11894. <param name="share">A constant that determines how the file will be shared by processes.</param>
  11895. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  11896. default buffer size is 4096.</param>
  11897. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  11898. <param name="security">A value that determines the access control and audit security for the file.</param>
  11899. <param name="pathFormat">Indicates the format of the path parameter.</param>
  11900. <returns>
  11901. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  11902. access and the specified sharing option.
  11903. </returns>
  11904. </member>
  11905. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode)">
  11906. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path with read/write access.</summary>
  11907. <param name="transaction">The transaction.</param>
  11908. <param name="path">The file to open.</param>
  11909. <param name="mode">
  11910. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11911. of existing files are retained or overwritten.
  11912. </param>
  11913. <returns>A <see cref="T:System.IO.FileStream"/> opened in the specified mode and path, with read/write access and not shared.</returns>
  11914. </member>
  11915. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,Alphaleonis.Win32.Filesystem.PathFormat)">
  11916. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path with read/write access.</summary>
  11917. <param name="transaction">The transaction.</param>
  11918. <param name="path">The file to open.</param>
  11919. <param name="mode">
  11920. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11921. of existing files are retained or overwritten.
  11922. </param>
  11923. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11924. <returns>A <see cref="T:System.IO.FileStream"/> opened in the specified mode and path, with read/write access and not shared.</returns>
  11925. </member>
  11926. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess)">
  11927. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path, with the specified mode and access.</summary>
  11928. <param name="transaction">The transaction.</param>
  11929. <param name="path">The file to open.</param>
  11930. <param name="mode">
  11931. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11932. of existing files are retained or overwritten.
  11933. </param>
  11934. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11935. <returns>
  11936. An unshared <see cref="T:System.IO.FileStream"/> that provides access to the specified file, with the specified mode and access.
  11937. </returns>
  11938. </member>
  11939. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
  11940. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11941. <param name="transaction">The transaction.</param>
  11942. <param name="path">The file to open.</param>
  11943. <param name="mode">
  11944. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11945. of existing files are retained or overwritten.
  11946. </param>
  11947. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11948. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11949. <returns>
  11950. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the
  11951. specified sharing option.
  11952. </returns>
  11953. </member>
  11954. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,Alphaleonis.Win32.Filesystem.PathFormat)">
  11955. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path, with the specified mode and access.</summary>
  11956. <param name="transaction">The transaction.</param>
  11957. <param name="path">The file to open.</param>
  11958. <param name="mode">
  11959. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11960. of existing files are retained or overwritten.
  11961. </param>
  11962. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11963. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11964. <returns>
  11965. An unshared <see cref="T:System.IO.FileStream"/> that provides access to the specified file, with the specified mode and access.
  11966. </returns>
  11967. </member>
  11968. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,Alphaleonis.Win32.Filesystem.PathFormat)">
  11969. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11970. <param name="transaction">The transaction.</param>
  11971. <param name="path">The file to open.</param>
  11972. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  11973. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11974. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11975. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11976. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</returns>
  11977. </member>
  11978. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  11979. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  11980. <param name="transaction">The transaction.</param>
  11981. <param name="path">The file to open.</param>
  11982. <param name="mode">
  11983. A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents
  11984. of existing files are retained or overwritten.
  11985. </param>
  11986. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  11987. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  11988. <param name="extendedAttributes">The extended attributes.</param>
  11989. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  11990. <returns>
  11991. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access and the
  11992. specified sharing option.
  11993. </returns>
  11994. </member>
  11995. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)">
  11996. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  11997. <param name="transaction">The transaction.</param>
  11998. <param name="path">The file to open.</param>
  11999. <param name="mode">A constant that determines how to open or create the file.</param>
  12000. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12001. file.</param>
  12002. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12003. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12004. default buffer size is 4096.</param>
  12005. <returns>
  12006. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12007. access and the specified sharing option.
  12008. </returns>
  12009. </member>
  12010. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean)">
  12011. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12012. <param name="transaction">The transaction.</param>
  12013. <param name="path">The file to open.</param>
  12014. <param name="mode">A constant that determines how to open or create the file.</param>
  12015. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12016. file.</param>
  12017. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12018. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12019. default buffer size is 4096.</param>
  12020. <param name="useAsync">Specifies whether to use asynchronous I/O or synchronous I/O. However, note that the
  12021. underlying operating system might not support asynchronous I/O, so when specifying true, the handle might be
  12022. opened synchronously depending on the platform. When opened asynchronously, the BeginRead and BeginWrite methods
  12023. perform better on large reads or writes, but they might be much slower for small reads or writes. If the
  12024. application is designed to take advantage of asynchronous I/O, set the useAsync parameter to true. Using
  12025. asynchronous I/O correctly can speed up applications by as much as a factor of 10, but using it without
  12026. redesigning the application for asynchronous I/O can decrease performance by as much as a factor of 10.</param>
  12027. <returns>
  12028. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12029. access and the specified sharing option.
  12030. </returns>
  12031. </member>
  12032. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions)">
  12033. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12034. <param name="transaction">The transaction.</param>
  12035. <param name="path">The file to open.</param>
  12036. <param name="mode">A constant that determines how to open or create the file.</param>
  12037. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12038. file.</param>
  12039. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12040. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12041. default buffer size is 4096.</param>
  12042. <param name="options">A value that specifies additional file options.</param>
  12043. <returns>
  12044. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12045. access and the specified sharing option.
  12046. </returns>
  12047. </member>
  12048. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  12049. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12050. <param name="transaction">The transaction.</param>
  12051. <param name="path">The file to open.</param>
  12052. <param name="mode">A constant that determines how to open or create the file.</param>
  12053. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12054. file.</param>
  12055. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12056. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12057. default buffer size is 4096.</param>
  12058. <param name="extendedAttributes">The extended attributes specifying additional options.</param>
  12059. <returns>
  12060. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12061. access and the specified sharing option.
  12062. </returns>
  12063. </member>
  12064. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.PathFormat)">
  12065. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12066. <param name="transaction">The transaction.</param>
  12067. <param name="path">The file to open.</param>
  12068. <param name="mode">A constant that determines how to open or create the file.</param>
  12069. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12070. file.</param>
  12071. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12072. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12073. default buffer size is 4096.</param>
  12074. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12075. <returns>
  12076. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12077. access and the specified sharing option.
  12078. </returns>
  12079. </member>
  12080. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12081. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12082. <param name="transaction">The transaction.</param>
  12083. <param name="path">The file to open.</param>
  12084. <param name="mode">A constant that determines how to open or create the file.</param>
  12085. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12086. file.</param>
  12087. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12088. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12089. default buffer size is 4096.</param>
  12090. <param name="useAsync">Specifies whether to use asynchronous I/O or synchronous I/O. However, note that the
  12091. underlying operating system might not support asynchronous I/O, so when specifying true, the handle might be
  12092. opened synchronously depending on the platform. When opened asynchronously, the BeginRead and BeginWrite methods
  12093. perform better on large reads or writes, but they might be much slower for small reads or writes. If the
  12094. application is designed to take advantage of asynchronous I/O, set the useAsync parameter to true. Using
  12095. asynchronous I/O correctly can speed up applications by as much as a factor of 10, but using it without
  12096. redesigning the application for asynchronous I/O can decrease performance by as much as a factor of 10.</param>
  12097. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12098. <returns>
  12099. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12100. access and the specified sharing option.
  12101. </returns>
  12102. </member>
  12103. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  12104. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12105. <param name="transaction">The transaction.</param>
  12106. <param name="path">The file to open.</param>
  12107. <param name="mode">A constant that determines how to open or create the file.</param>
  12108. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12109. file.</param>
  12110. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12111. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12112. default buffer size is 4096.</param>
  12113. <param name="options">A value that specifies additional file options.</param>
  12114. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12115. <returns>
  12116. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12117. access and the specified sharing option.
  12118. </returns>
  12119. </member>
  12120. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  12121. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12122. <param name="transaction">The transaction.</param>
  12123. <param name="path">The file to open.</param>
  12124. <param name="mode">A constant that determines how to open or create the file.</param>
  12125. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12126. file.</param>
  12127. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12128. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12129. default buffer size is 4096.</param>
  12130. <param name="extendedAttributes">The extended attributes specifying additional options.</param>
  12131. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12132. <returns>
  12133. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12134. access and the specified sharing option.
  12135. </returns>
  12136. </member>
  12137. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions)">
  12138. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12139. <param name="transaction">The transaction.</param>
  12140. <param name="path">The file to open.</param>
  12141. <param name="mode">A constant that determines how to open or create the file.</param>
  12142. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12143. file.</param>
  12144. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12145. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12146. default buffer size is 4096.</param>
  12147. <param name="options">A value that specifies additional file options.</param>
  12148. <returns>
  12149. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12150. access and the specified sharing option.
  12151. </returns>
  12152. </member>
  12153. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  12154. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12155. <param name="transaction">The transaction.</param>
  12156. <param name="path">The file to open.</param>
  12157. <param name="mode">A constant that determines how to open or create the file.</param>
  12158. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12159. file.</param>
  12160. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12161. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12162. default buffer size is 4096.</param>
  12163. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  12164. <returns>
  12165. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12166. access and the specified sharing option.
  12167. </returns>
  12168. </member>
  12169. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)">
  12170. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12171. <param name="transaction">The transaction.</param>
  12172. <param name="path">The file to open.</param>
  12173. <param name="mode">A constant that determines how to open or create the file.</param>
  12174. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12175. file.</param>
  12176. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12177. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12178. default buffer size is 4096.</param>
  12179. <param name="options">A value that specifies additional file options.</param>
  12180. <param name="security">A value that determines the access control and audit security for the file.</param>
  12181. <returns>
  12182. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12183. access and the specified sharing option.
  12184. </returns>
  12185. </member>
  12186. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity)">
  12187. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12188. <param name="transaction">The transaction.</param>
  12189. <param name="path">The file to open.</param>
  12190. <param name="mode">A constant that determines how to open or create the file.</param>
  12191. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12192. file.</param>
  12193. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12194. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12195. default buffer size is 4096.</param>
  12196. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  12197. <param name="security">A value that determines the access control and audit security for the file.</param>
  12198. <returns>
  12199. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12200. access and the specified sharing option.
  12201. </returns>
  12202. </member>
  12203. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  12204. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12205. <param name="transaction">The transaction.</param>
  12206. <param name="path">The file to open.</param>
  12207. <param name="mode">A constant that determines how to open or create the file.</param>
  12208. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12209. file.</param>
  12210. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12211. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12212. default buffer size is 4096.</param>
  12213. <param name="options">A value that specifies additional file options.</param>
  12214. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12215. <returns>
  12216. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12217. access and the specified sharing option.
  12218. </returns>
  12219. </member>
  12220. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  12221. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.</summary>
  12222. <param name="transaction">The transaction.</param>
  12223. <param name="path">The file to open.</param>
  12224. <param name="mode">A constant that determines how to open or create the file.</param>
  12225. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12226. file.</param>
  12227. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12228. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12229. default buffer size is 4096.</param>
  12230. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  12231. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12232. <returns>
  12233. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12234. access and the specified sharing option.
  12235. </returns>
  12236. </member>
  12237. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  12238. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, access rights and sharing permission, the buffer size, additional file options, access control and audit security.</summary>
  12239. <param name="transaction">The transaction.</param>
  12240. <param name="path">The file to open.</param>
  12241. <param name="mode">A constant that determines how to open or create the file.</param>
  12242. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12243. file.</param>
  12244. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12245. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12246. default buffer size is 4096.</param>
  12247. <param name="options">A value that specifies additional file options.</param>
  12248. <param name="security">A value that determines the access control and audit security for the file.</param>
  12249. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12250. <returns>
  12251. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12252. access and the specified sharing option.
  12253. </returns>
  12254. </member>
  12255. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  12256. <summary>[AlphaFS] (Transacted) Opens a <see cref="T:System.IO.FileStream"/> on the specified path using the specified creation mode, access rights and sharing permission, the buffer size, additional file options, access control and audit security.</summary>
  12257. <param name="transaction">The transaction.</param>
  12258. <param name="path">The file to open.</param>
  12259. <param name="mode">A constant that determines how to open or create the file.</param>
  12260. <param name="rights">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the
  12261. file.</param>
  12262. <param name="share">A constant that determines how the file will be shared by processes.</param>
  12263. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The
  12264. default buffer size is 4096.</param>
  12265. <param name="extendedAttributes">Extended attributes specifying additional options.</param>
  12266. <param name="security">A value that determines the access control and audit security for the file.</param>
  12267. <param name="pathFormat">Indicates the format of the path parameter.</param>
  12268. <returns>
  12269. A <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write
  12270. access and the specified sharing option.
  12271. </returns>
  12272. </member>
  12273. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Nullable{System.Int32},System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  12274. <summary>[AlphaFS] Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access, the specified sharing option and additional options specified.</summary>
  12275. <param name="transaction">The transaction.</param>
  12276. <param name="path">The file to open.</param>
  12277. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  12278. <param name="access">A <see cref="T:System.IO.FileAccess"/> value that specifies the operations that can be performed on the file.</param>
  12279. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  12280. <param name="attributes">Advanced <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> options for this file.</param>
  12281. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The default buffer size is 4096.</param>
  12282. <param name="security">The security.</param>
  12283. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12284. <returns>
  12285. <para>A <see cref="T:System.IO.FileStream"/> instance on the specified path, having the specified mode with</para>
  12286. <para>read, write, or read/write access and the specified sharing option.</para>
  12287. </returns>
  12288. </member>
  12289. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Nullable{System.Int32},System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  12290. <summary>Opens a <see cref="T:System.IO.FileStream"/> on the specified path, having the specified mode with read, write, or read/write access, the specified sharing option and additional options specified.</summary>
  12291. <param name="transaction">The transaction.</param>
  12292. <param name="path">The file to open.</param>
  12293. <param name="mode">A <see cref="T:System.IO.FileMode"/> value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.</param>
  12294. <param name="rights">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> 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 along with additional options.</param>
  12295. <param name="share">A <see cref="T:System.IO.FileShare"/> value specifying the type of access other threads have to the file.</param>
  12296. <param name="attributes">Advanced <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> options for this file.</param>
  12297. <param name="bufferSize">A positive <see cref="T:System.Int32"/> value greater than 0 indicating the buffer size. The default buffer size is 4096.</param>
  12298. <param name="security">The security.</param>
  12299. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12300. <returns>
  12301. <para>A <see cref="T:System.IO.FileStream"/> instance on the specified path, having the specified mode with</para>
  12302. <para>read, write, or read/write access and the specified sharing option.</para>
  12303. </returns>
  12304. </member>
  12305. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllBytes(System.String)">
  12306. <summary>Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
  12307. <param name="path">The file to open for reading.</param>
  12308. <returns>A byte array containing the contents of the file.</returns>
  12309. </member>
  12310. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllBytes(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12311. <summary>[AlphaFS] Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
  12312. <param name="path">The file to open for reading.</param>
  12313. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12314. <returns>A byte array containing the contents of the file.</returns>
  12315. </member>
  12316. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllBytesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  12317. <summary>[AlphaFS] Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
  12318. <param name="transaction">The transaction.</param>
  12319. <param name="path">The file to open for reading.</param>
  12320. <returns>A byte array containing the contents of the file.</returns>
  12321. </member>
  12322. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllBytesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12323. <summary>[AlphaFS] Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
  12324. <param name="transaction">The transaction.</param>
  12325. <param name="path">The file to open for reading.</param>
  12326. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12327. <returns>A byte array containing the contents of the file.</returns>
  12328. </member>
  12329. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllBytesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12330. <summary>Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</summary>
  12331. <exception cref="T:System.IO.IOException"/>
  12332. <param name="transaction">The transaction.</param>
  12333. <param name="path">The file to open for reading.</param>
  12334. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12335. <returns>A byte array containing the contents of the file.</returns>
  12336. </member>
  12337. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLines(System.String)">
  12338. <summary>Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12339. <param name="path">The file to open for reading.</param>
  12340. <returns>All lines of the file.</returns>
  12341. </member>
  12342. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLines(System.String,System.Text.Encoding)">
  12343. <summary>Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12344. <param name="path">The file to open for reading.</param>
  12345. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12346. <returns>All lines of the file.</returns>
  12347. </member>
  12348. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLines(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12349. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12350. <param name="path">The file to open for reading.</param>
  12351. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12352. <returns>All lines of the file.</returns>
  12353. </member>
  12354. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLines(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12355. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12356. <param name="path">The file to open for reading.</param>
  12357. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12358. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12359. <returns>All lines of the file.</returns>
  12360. </member>
  12361. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  12362. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12363. <param name="transaction">The transaction.</param>
  12364. <param name="path">The file to open for reading.</param>
  12365. <returns>All lines of the file.</returns>
  12366. </member>
  12367. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding)">
  12368. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12369. <param name="transaction">The transaction.</param>
  12370. <param name="path">The file to open for reading.</param>
  12371. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12372. <returns>All lines of the file.</returns>
  12373. </member>
  12374. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12375. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12376. <param name="transaction">The transaction.</param>
  12377. <param name="path">The file to open for reading.</param>
  12378. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12379. <returns>All lines of the file.</returns>
  12380. </member>
  12381. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12382. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12383. <param name="transaction">The transaction.</param>
  12384. <param name="path">The file to open for reading.</param>
  12385. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12386. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12387. <returns>All lines of the file.</returns>
  12388. </member>
  12389. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllLinesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12390. <summary>Opens a file, read all lines of the file with the specified encoding, and then close the file.</summary>
  12391. <param name="transaction">The transaction.</param>
  12392. <param name="path">The file to open for reading.</param>
  12393. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12394. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12395. <returns>An IEnumerable string containing all lines of the file.</returns>
  12396. </member>
  12397. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllText(System.String)">
  12398. <summary>Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12399. <param name="path">The file to open for reading.</param>
  12400. <returns>All lines of the file.</returns>
  12401. </member>
  12402. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllText(System.String,System.Text.Encoding)">
  12403. <summary>Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12404. <param name="path">The file to open for reading.</param>
  12405. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12406. <returns>All lines of the file.</returns>
  12407. </member>
  12408. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllText(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12409. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12410. <param name="path">The file to open for reading.</param>
  12411. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12412. <returns>All lines of the file.</returns>
  12413. </member>
  12414. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllText(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12415. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12416. <param name="path">The file to open for reading.</param>
  12417. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12418. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12419. <returns>All lines of the file.</returns>
  12420. </member>
  12421. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  12422. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12423. <param name="transaction">The transaction.</param>
  12424. <param name="path">The file to open for reading.</param>
  12425. <returns>All lines of the file.</returns>
  12426. </member>
  12427. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding)">
  12428. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12429. <param name="transaction">The transaction.</param>
  12430. <param name="path">The file to open for reading.</param>
  12431. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12432. <returns>All lines of the file.</returns>
  12433. </member>
  12434. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12435. <summary>[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.</summary>
  12436. <param name="transaction">The transaction.</param>
  12437. <param name="path">The file to open for reading.</param>
  12438. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12439. <returns>All lines of the file.</returns>
  12440. </member>
  12441. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12442. <summary>[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.</summary>
  12443. <param name="transaction">The transaction.</param>
  12444. <param name="path">The file to open for reading.</param>
  12445. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12446. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12447. <returns>All lines of the file.</returns>
  12448. </member>
  12449. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadAllTextCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12450. <summary>Open a file, read all lines of the file with the specified encoding, and then close the file.</summary>
  12451. <param name="transaction">The transaction.</param>
  12452. <param name="path">The file to open for reading.</param>
  12453. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  12454. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12455. <returns>All lines of the file.</returns>
  12456. </member>
  12457. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLines(System.String)">
  12458. <summary>Reads the lines of a file.</summary>
  12459. <param name="path">The file to read.</param>
  12460. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12461. </member>
  12462. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLines(System.String,System.Text.Encoding)">
  12463. <summary>Read the lines of a file that has a specified encoding.</summary>
  12464. <param name="path">The file to read.</param>
  12465. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  12466. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12467. </member>
  12468. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLines(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12469. <summary>[AlphaFS] Reads the lines of a file.</summary>
  12470. <param name="path">The file to read.</param>
  12471. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12472. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12473. </member>
  12474. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLines(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12475. <summary>[AlphaFS] Read the lines of a file that has a specified encoding.</summary>
  12476. <param name="path">The file to read.</param>
  12477. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  12478. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12479. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12480. </member>
  12481. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  12482. <summary>[AlphaFS] Reads the lines of a file.</summary>
  12483. <param name="transaction">The transaction.</param>
  12484. <param name="path">The file to read.</param>
  12485. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12486. </member>
  12487. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding)">
  12488. <summary>[AlphaFS] Read the lines of a file that has a specified encoding.</summary>
  12489. <param name="transaction">The transaction.</param>
  12490. <param name="path">The file to read.</param>
  12491. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  12492. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12493. </member>
  12494. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  12495. <summary>[AlphaFS] Reads the lines of a file.</summary>
  12496. <param name="transaction">The transaction.</param>
  12497. <param name="path">The file to read.</param>
  12498. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12499. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12500. </member>
  12501. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLinesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12502. <summary>[AlphaFS] Read the lines of a file that has a specified encoding.</summary>
  12503. <param name="transaction">The transaction.</param>
  12504. <param name="path">The file to read.</param>
  12505. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  12506. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12507. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12508. </member>
  12509. <member name="M:Alphaleonis.Win32.Filesystem.File.ReadLinesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  12510. <summary>Reads the lines of a file that has a specified encoding.</summary>
  12511. <param name="transaction">The transaction.</param>
  12512. <param name="path">The file to read.</param>
  12513. <param name="encoding">The encoding that is applied to the contents of the file.</param>
  12514. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12515. <returns>All the lines of the file, or the lines that are the result of a query.</returns>
  12516. </member>
  12517. <member name="M:Alphaleonis.Win32.Filesystem.File.Replace(System.String,System.String,System.String)">
  12518. <summary>
  12519. Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of
  12520. the replaced file.
  12521. </summary>
  12522. <remarks>
  12523. The Replace method replaces the contents of a specified file with the contents of another file. It also creates a backup of the
  12524. file that was replaced.
  12525. </remarks>
  12526. <remarks>
  12527. If the <paramref name="sourceFileName"/> and <paramref name="destinationFileName"/> are on different volumes, this method will
  12528. raise an exception. If the <paramref name="destinationBackupFileName"/> is on a different volume from the source file, the backup
  12529. file will be deleted.
  12530. </remarks>
  12531. <remarks>
  12532. Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being
  12533. replaced.
  12534. </remarks>
  12535. <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName"/>.</param>
  12536. <param name="destinationFileName">The name of the file being replaced.</param>
  12537. <param name="destinationBackupFileName">The name of the backup file.</param>
  12538. </member>
  12539. <member name="M:Alphaleonis.Win32.Filesystem.File.Replace(System.String,System.String,System.String,System.Boolean)">
  12540. <summary>
  12541. Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a backup of
  12542. the replaced file and optionally ignores merge errors.
  12543. </summary>
  12544. <remarks>
  12545. The Replace method replaces the contents of a specified file with the contents of another file. It also creates a backup of the
  12546. file that was replaced.
  12547. </remarks>
  12548. <remarks>
  12549. If the <paramref name="sourceFileName"/> and <paramref name="destinationFileName"/> are on different volumes, this method will
  12550. raise an exception. If the <paramref name="destinationBackupFileName"/> is on a different volume from the source file, the backup
  12551. file will be deleted.
  12552. </remarks>
  12553. <remarks>
  12554. Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being
  12555. replaced.
  12556. </remarks>
  12557. <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName"/>.</param>
  12558. <param name="destinationFileName">The name of the file being replaced.</param>
  12559. <param name="destinationBackupFileName">The name of the backup file.</param>
  12560. <param name="ignoreMetadataErrors">
  12561. <see langword="true"/> to ignore merge errors (such as attributes and access control lists (ACLs)) from the replaced file to the
  12562. replacement file; otherwise, <see langword="false"/>.
  12563. </param>
  12564. </member>
  12565. <member name="M:Alphaleonis.Win32.Filesystem.File.Replace(System.String,System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12566. <summary>
  12567. [AlphaFS] Replaces the contents of a specified file with the contents of another file, deleting the original file, and creating a
  12568. backup of the replaced file and optionally ignores merge errors.
  12569. </summary>
  12570. <remarks>
  12571. The Replace method replaces the contents of a specified file with the contents of another file. It also creates a backup of the
  12572. file that was replaced.
  12573. </remarks>
  12574. <remarks>
  12575. If the <paramref name="sourceFileName"/> and <paramref name="destinationFileName"/> are on different volumes, this method will
  12576. raise an exception. If the <paramref name="destinationBackupFileName"/> is on a different volume from the source file, the backup
  12577. file will be deleted.
  12578. </remarks>
  12579. <remarks>
  12580. Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being
  12581. replaced.
  12582. </remarks>
  12583. <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName"/>.</param>
  12584. <param name="destinationFileName">The name of the file being replaced.</param>
  12585. <param name="destinationBackupFileName">The name of the backup file.</param>
  12586. <param name="ignoreMetadataErrors">
  12587. <see langword="true"/> to ignore merge errors (such as attributes and access control lists (ACLs)) from the replaced file to the
  12588. replacement file; otherwise, <see langword="false"/>.
  12589. </param>
  12590. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12591. </member>
  12592. <member name="M:Alphaleonis.Win32.Filesystem.File.ReplaceCore(System.String,System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12593. <summary>Replaces the contents of a specified file with the contents of another file, deleting
  12594. the original file, and creating a backup of the replaced file and optionally ignores merge errors.
  12595. </summary>
  12596. <remarks>
  12597. The Replace method replaces the contents of a specified file with the contents of another file. It also creates a backup of the
  12598. file that was replaced.
  12599. </remarks>
  12600. <remarks>
  12601. If the <paramref name="sourceFileName"/> and <paramref name="destinationFileName"/> are on different volumes, this method will
  12602. raise an exception. If the <paramref name="destinationBackupFileName"/> is on a different volume from the source file, the backup
  12603. file will be deleted.
  12604. </remarks>
  12605. <remarks>
  12606. Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being
  12607. replaced.
  12608. </remarks>
  12609. <param name="sourceFileName">The name of a file that replaces the file specified by <paramref name="destinationFileName"/>.</param>
  12610. <param name="destinationFileName">The name of the file being replaced.</param>
  12611. <param name="destinationBackupFileName">The name of the backup file.</param>
  12612. <param name="ignoreMetadataErrors">
  12613. <see langword="true"/> to ignore merge errors (such as attributes and access control lists (ACLs)) from the replaced file to the
  12614. replacement file; otherwise, <see langword="false"/>.
  12615. </param>
  12616. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12617. </member>
  12618. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity)">
  12619. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/> FileSecurity object to the specified file.</summary>
  12620. <exception cref="T:System.ArgumentNullException"/>
  12621. <exception cref="T:System.ArgumentException"/>
  12622. <exception cref="T:System.NotSupportedException"/>
  12623. <param name="path">A file to add or remove access control list (ACL) entries from.</param>
  12624. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the file described by the <paramref name="path"/> parameter.</param>
  12625. </member>
  12626. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity,System.Security.AccessControl.AccessControlSections)">
  12627. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  12628. <exception cref="T:System.ArgumentNullException"/>
  12629. <exception cref="T:System.ArgumentException"/>
  12630. <exception cref="T:System.NotSupportedException"/>
  12631. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  12632. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  12633. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  12634. </member>
  12635. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity,Alphaleonis.Win32.Filesystem.PathFormat)">
  12636. <summary>[AlphaFS] Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/> FileSecurity object to the specified file.</summary>
  12637. <exception cref="T:System.ArgumentNullException"/>
  12638. <exception cref="T:System.ArgumentException"/>
  12639. <exception cref="T:System.NotSupportedException"/>
  12640. <param name="path">A file to add or remove access control list (ACL) entries from.</param>
  12641. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the file described by the <paramref name="path"/> parameter.</param>
  12642. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12643. </member>
  12644. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(System.String,System.Security.AccessControl.FileSecurity,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  12645. <summary>[AlphaFS] Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified directory.</summary>
  12646. <exception cref="T:System.ArgumentNullException"/>
  12647. <exception cref="T:System.ArgumentException"/>
  12648. <exception cref="T:System.NotSupportedException"/>
  12649. <param name="path">A directory to add or remove access control list (ACL) entries from.</param>
  12650. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the directory described by the path parameter.</param>
  12651. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  12652. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12653. </member>
  12654. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.FileSecurity)">
  12655. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/> FileSecurity object to the specified file.</summary>
  12656. <exception cref="T:System.ArgumentNullException"/>
  12657. <exception cref="T:System.ArgumentException"/>
  12658. <exception cref="T:System.NotSupportedException"/>
  12659. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to a file to add or remove access control list (ACL) entries from.</param>
  12660. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the file described by the <paramref name="handle"/> parameter.</param>
  12661. </member>
  12662. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControl(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.FileSecurity,System.Security.AccessControl.AccessControlSections)">
  12663. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/> FileSecurity object to the specified file.</summary>
  12664. <exception cref="T:System.ArgumentNullException"/>
  12665. <exception cref="T:System.ArgumentException"/>
  12666. <exception cref="T:System.NotSupportedException"/>
  12667. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to a file to add or remove access control list (ACL) entries from.</param>
  12668. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the file described by the <paramref name="handle"/> parameter.</param>
  12669. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  12670. </member>
  12671. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAccessControlCore(System.String,Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.ObjectSecurity,System.Security.AccessControl.AccessControlSections,Alphaleonis.Win32.Filesystem.PathFormat)">
  12672. <summary>[AlphaFS] Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/>/<see cref="T:System.Security.AccessControl.DirectorySecurity"/> object to the specified file or directory.</summary>
  12673. <remarks>Use either <paramref name="path"/> or <paramref name="handle"/>, not both.</remarks>
  12674. <exception cref="T:System.ArgumentNullException"/>
  12675. <exception cref="T:System.ArgumentException"/>
  12676. <exception cref="T:System.NotSupportedException"/>
  12677. <param name="path">A file/directory to add or remove access control list (ACL) entries from. This parameter This parameter may be <see langword="null"/>.</param>
  12678. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to add or remove access control list (ACL) entries from. This parameter This parameter may be <see langword="null"/>.</param>
  12679. <param name="objectSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/>/<see cref="T:System.Security.AccessControl.DirectorySecurity"/> object that describes an ACL entry to apply to the file/directory described by the <paramref name="path"/>/<paramref name="handle"/> parameter.</param>
  12680. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  12681. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12682. </member>
  12683. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAttributes(System.String,System.IO.FileAttributes)">
  12684. <summary>Sets the specified <see cref="T:System.IO.FileAttributes"/> of the file or directory on the specified path.</summary>
  12685. <remarks>
  12686. Certain file attributes, such as <see cref="F:System.IO.FileAttributes.Hidden"/> and <see cref="F:System.IO.FileAttributes.ReadOnly"/>, can be combined.
  12687. Other attributes, such as <see cref="F:System.IO.FileAttributes.Normal"/>, must be used alone.
  12688. </remarks>
  12689. <remarks>
  12690. It is not possible to change the <see cref="F:System.IO.FileAttributes.Compressed"/> status of a File object using this method.
  12691. </remarks>
  12692. <param name="path">The path to the file or directory.</param>
  12693. <param name="fileAttributes">A bitwise combination of the enumeration values.</param>
  12694. <overloads>Sets the specified <see cref="T:System.IO.FileAttributes"/> of the file or directory on the specified path.</overloads>
  12695. </member>
  12696. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAttributes(System.String,System.IO.FileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  12697. <summary>[AlphaFS] Sets the specified <see cref="T:System.IO.FileAttributes"/> of the file or directory on the specified path.</summary>
  12698. <remarks>
  12699. Certain file attributes, such as <see cref="F:System.IO.FileAttributes.Hidden"/> and <see cref="F:System.IO.FileAttributes.ReadOnly"/>, can be combined.
  12700. Other attributes, such as <see cref="F:System.IO.FileAttributes.Normal"/>, must be used alone.
  12701. </remarks>
  12702. <remarks>
  12703. It is not possible to change the <see cref="F:System.IO.FileAttributes.Compressed"/> status of a File object using this method.
  12704. </remarks>
  12705. <param name="path">The path to the file or directory.</param>
  12706. <param name="fileAttributes">A bitwise combination of the enumeration values.</param>
  12707. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12708. </member>
  12709. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAttributesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileAttributes)">
  12710. <summary>[AlphaFS] Sets the specified <see cref="T:System.IO.FileAttributes"/> of the file on the specified path.</summary>
  12711. <remarks>
  12712. Certain file attributes, such as <see cref="F:System.IO.FileAttributes.Hidden"/> and <see cref="F:System.IO.FileAttributes.ReadOnly"/>, can be combined.
  12713. Other attributes, such as <see cref="F:System.IO.FileAttributes.Normal"/>, must be used alone.
  12714. </remarks>
  12715. <remarks>
  12716. It is not possible to change the <see cref="F:System.IO.FileAttributes.Compressed"/> status of a File object using this method.
  12717. </remarks>
  12718. <param name="transaction">The transaction.</param>
  12719. <param name="path">The path to the file.</param>
  12720. <param name="fileAttributes">A bitwise combination of the enumeration values.</param>
  12721. </member>
  12722. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAttributesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileAttributes,Alphaleonis.Win32.Filesystem.PathFormat)">
  12723. <summary>[AlphaFS] Sets the specified <see cref="T:System.IO.FileAttributes"/> of the file on the specified path.</summary>
  12724. <remarks>
  12725. Certain file attributes, such as <see cref="F:System.IO.FileAttributes.Hidden"/> and <see cref="F:System.IO.FileAttributes.ReadOnly"/>, can be combined.
  12726. Other attributes, such as <see cref="F:System.IO.FileAttributes.Normal"/>, must be used alone.
  12727. </remarks>
  12728. <remarks>
  12729. It is not possible to change the <see cref="F:System.IO.FileAttributes.Compressed"/> status of a File object using this method.
  12730. </remarks>
  12731. <param name="transaction">The transaction.</param>
  12732. <param name="path">The path to the file.</param>
  12733. <param name="fileAttributes">A bitwise combination of the enumeration values.</param>
  12734. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12735. </member>
  12736. <member name="M:Alphaleonis.Win32.Filesystem.File.SetAttributesCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileAttributes,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12737. <summary>Sets the attributes for a Non-/Transacted file/directory.</summary>
  12738. <remarks>
  12739. Certain file attributes, such as <see cref="F:System.IO.FileAttributes.Hidden"/> and <see cref="F:System.IO.FileAttributes.ReadOnly"/>, can be combined.
  12740. Other attributes, such as <see cref="F:System.IO.FileAttributes.Normal"/>, must be used alone.
  12741. </remarks>
  12742. <remarks>
  12743. It is not possible to change the <see cref="F:System.IO.FileAttributes.Compressed"/> status of a File object using the SetAttributes method.
  12744. </remarks>
  12745. <exception cref="T:System.ArgumentException"/>
  12746. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  12747. <param name="transaction">The transaction.</param>
  12748. <param name="path">The name of the file or directory whose attributes are to be set.</param>
  12749. <param name="fileAttributes">
  12750. The attributes to set for the file or directory. Note that all other values override <see cref="F:System.IO.FileAttributes.Normal"/>.
  12751. </param>
  12752. <param name="continueOnNotExist">
  12753. <see langword="true"/> does not throw an Exception when the file system object does not exist.
  12754. </param>
  12755. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12756. </member>
  12757. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTime(System.String,System.DateTime)">
  12758. <summary>Sets the date and time the file was created.</summary>
  12759. <param name="path">The file for which to set the creation date and time information.</param>
  12760. <param name="creationTime">
  12761. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12762. is expressed in local time.
  12763. </param>
  12764. </member>
  12765. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12766. <summary>[AlphaFS] Sets the date and time the file was created.</summary>
  12767. <param name="path">The file for which to set the creation date and time information.</param>
  12768. <param name="creationTime">
  12769. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12770. is expressed in local time.
  12771. </param>
  12772. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12773. </member>
  12774. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12775. <summary>[AlphaFS] Sets the date and time the file was created.</summary>
  12776. <param name="path">The file for which to set the creation date and time information.</param>
  12777. <param name="creationTime">
  12778. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12779. is expressed in local time.
  12780. </param>
  12781. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12782. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12783. </member>
  12784. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  12785. <summary>[AlphaFS] Sets the date and time the file was created.</summary>
  12786. <param name="transaction">The transaction.</param>
  12787. <param name="path">The file for which to set the creation date and time information.</param>
  12788. <param name="creationTime">
  12789. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12790. is expressed in local time.
  12791. </param>
  12792. </member>
  12793. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12794. <summary>[AlphaFS] Sets the date and time the file was created.</summary>
  12795. <param name="transaction">The transaction.</param>
  12796. <param name="path">The file for which to set the creation date and time information.</param>
  12797. <param name="creationTime">
  12798. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12799. is expressed in local time.
  12800. </param>
  12801. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12802. </member>
  12803. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12804. <summary>[AlphaFS] Sets the date and time the file was created.</summary>
  12805. <param name="transaction">The transaction.</param>
  12806. <param name="path">The file for which to set the creation date and time information.</param>
  12807. <param name="creationTime">
  12808. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12809. is expressed in local time.
  12810. </param>
  12811. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12812. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12813. </member>
  12814. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtc(System.String,System.DateTime)">
  12815. <summary>Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12816. <param name="path">The file for which to set the creation date and time information.</param>
  12817. <param name="creationTimeUtc">
  12818. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12819. is expressed in UTC time.
  12820. </param>
  12821. </member>
  12822. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12823. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12824. <param name="path">The file for which to set the creation date and time information.</param>
  12825. <param name="creationTimeUtc">
  12826. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12827. is expressed in UTC time.
  12828. </param>
  12829. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12830. </member>
  12831. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12832. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12833. <param name="path">The file for which to set the creation date and time information.</param>
  12834. <param name="creationTimeUtc">
  12835. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12836. is expressed in UTC time.
  12837. </param>
  12838. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12839. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12840. </member>
  12841. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  12842. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12843. <param name="transaction">The transaction.</param>
  12844. <param name="path">The file for which to set the creation date and time information.</param>
  12845. <param name="creationTimeUtc">
  12846. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12847. is expressed in UTC time.
  12848. </param>
  12849. </member>
  12850. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12851. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12852. <param name="transaction">The transaction.</param>
  12853. <param name="path">The file for which to set the creation date and time information.</param>
  12854. <param name="creationTimeUtc">
  12855. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12856. is expressed in UTC time.
  12857. </param>
  12858. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12859. </member>
  12860. <member name="M:Alphaleonis.Win32.Filesystem.File.SetCreationTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12861. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created.</summary>
  12862. <param name="transaction">The transaction.</param>
  12863. <param name="path">The file for which to set the creation date and time information.</param>
  12864. <param name="creationTimeUtc">
  12865. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  12866. is expressed in UTC time.
  12867. </param>
  12868. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12869. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12870. </member>
  12871. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTime(System.String,System.DateTime)">
  12872. <summary>Sets the date and time that the specified file was last accessed.</summary>
  12873. <param name="path">The file for which to set the access date and time information.</param>
  12874. <param name="lastAccessTime">
  12875. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12876. value is expressed in local time.
  12877. </param>
  12878. </member>
  12879. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12880. <summary>[AlphaFS] Sets the date and time that the specified file was last accessed.</summary>
  12881. <param name="path">The file for which to set the access date and time information.</param>
  12882. <param name="lastAccessTime">
  12883. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12884. value is expressed in local time.
  12885. </param>
  12886. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12887. </member>
  12888. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12889. <summary>[AlphaFS] Sets the date and time that the specified file was last accessed.</summary>
  12890. <param name="path">The file for which to set the access date and time information.</param>
  12891. <param name="lastAccessTime">
  12892. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12893. value is expressed in local time.
  12894. </param>
  12895. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12896. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12897. </member>
  12898. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  12899. <summary>[AlphaFS] Sets the date and time that the specified file was last accessed.</summary>
  12900. <param name="transaction">The transaction.</param>
  12901. <param name="path">The file for which to set the access date and time information.</param>
  12902. <param name="lastAccessTime">
  12903. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12904. value is expressed in local time.
  12905. </param>
  12906. </member>
  12907. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12908. <summary>[AlphaFS] Sets the date and time that the specified file was last accessed.</summary>
  12909. <param name="transaction">The transaction.</param>
  12910. <param name="path">The file for which to set the access date and time information.</param>
  12911. <param name="lastAccessTime">
  12912. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12913. value is expressed in local time.
  12914. </param>
  12915. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12916. </member>
  12917. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12918. <summary>[AlphaFS] Sets the date and time that the specified file was last accessed.</summary>
  12919. <param name="transaction">The transaction.</param>
  12920. <param name="path">The file for which to set the access date and time information.</param>
  12921. <param name="lastAccessTime">
  12922. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12923. value is expressed in local time.
  12924. </param>
  12925. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12926. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12927. </member>
  12928. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtc(System.String,System.DateTime)">
  12929. <summary>Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12930. <param name="path">The file for which to set the access date and time information.</param>
  12931. <param name="lastAccessTimeUtc">
  12932. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12933. value is expressed in UTC time.
  12934. </param>
  12935. </member>
  12936. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12937. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12938. <param name="path">The file for which to set the access date and time information.</param>
  12939. <param name="lastAccessTimeUtc">
  12940. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12941. value is expressed in UTC time.
  12942. </param>
  12943. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12944. </member>
  12945. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12946. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12947. <param name="path">The file for which to set the access date and time information.</param>
  12948. <param name="lastAccessTimeUtc">
  12949. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12950. value is expressed in UTC time.
  12951. </param>
  12952. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12953. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12954. </member>
  12955. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  12956. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12957. <param name="transaction">The transaction.</param>
  12958. <param name="path">The file for which to set the access date and time information.</param>
  12959. <param name="lastAccessTimeUtc">
  12960. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12961. value is expressed in UTC time.
  12962. </param>
  12963. </member>
  12964. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12965. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12966. <param name="transaction">The transaction.</param>
  12967. <param name="path">The file for which to set the access date and time information.</param>
  12968. <param name="lastAccessTimeUtc">
  12969. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12970. value is expressed in UTC time.
  12971. </param>
  12972. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12973. </member>
  12974. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastAccessTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  12975. <summary>[AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.</summary>
  12976. <param name="transaction">The transaction.</param>
  12977. <param name="path">The file for which to set the access date and time information.</param>
  12978. <param name="lastAccessTimeUtc">
  12979. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  12980. value is expressed in UTC time.
  12981. </param>
  12982. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  12983. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  12984. </member>
  12985. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTime(System.String,System.DateTime)">
  12986. <summary>Sets the date and time that the specified file was last written to.</summary>
  12987. <param name="path">The file for which to set the date and time information.</param>
  12988. <param name="lastWriteTime">
  12989. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  12990. is expressed in local time.
  12991. </param>
  12992. </member>
  12993. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTime(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  12994. <summary>[AlphaFS] Sets the date and time that the specified file was last written to.</summary>
  12995. <param name="path">The file for which to set the date and time information.</param>
  12996. <param name="lastWriteTime">
  12997. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  12998. is expressed in local time.
  12999. </param>
  13000. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13001. </member>
  13002. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTime(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13003. <summary>[AlphaFS] Sets the date and time that the specified file was last written to.</summary>
  13004. <param name="path">The file for which to set the date and time information.</param>
  13005. <param name="lastWriteTime">
  13006. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13007. is expressed in local time.
  13008. </param>
  13009. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13010. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13011. </member>
  13012. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  13013. <summary>[AlphaFS] Sets the date and time that the specified file was last written to.</summary>
  13014. <param name="transaction">The transaction.</param>
  13015. <param name="path">The file for which to set the date and time information.</param>
  13016. <param name="lastWriteTime">
  13017. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13018. is expressed in local time.
  13019. </param>
  13020. </member>
  13021. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13022. <summary>[AlphaFS] Sets the date and time that the specified file was last written to.</summary>
  13023. <param name="transaction">The transaction.</param>
  13024. <param name="path">The file for which to set the date and time information.</param>
  13025. <param name="lastWriteTime">
  13026. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13027. is expressed in local time.
  13028. </param>
  13029. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13030. </member>
  13031. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13032. <summary>[AlphaFS] Sets the date and time that the specified file was last written to.</summary>
  13033. <param name="transaction">The transaction.</param>
  13034. <param name="path">The file for which to set the date and time information.</param>
  13035. <param name="lastWriteTime">
  13036. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13037. is expressed in local time.
  13038. </param>
  13039. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13040. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13041. </member>
  13042. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtc(System.String,System.DateTime)">
  13043. <summary>Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.</summary>
  13044. <param name="path">The file for which to set the date and time information.</param>
  13045. <param name="lastWriteTimeUtc">
  13046. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13047. is expressed in UTC time.
  13048. </param>
  13049. </member>
  13050. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtc(System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13051. <summary>
  13052. [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
  13053. </summary>
  13054. <param name="path">The file for which to set the date and time information.</param>
  13055. <param name="lastWriteTimeUtc">
  13056. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13057. is expressed in UTC time.
  13058. </param>
  13059. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13060. </member>
  13061. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtc(System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13062. <summary>
  13063. [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
  13064. </summary>
  13065. <param name="path">The file for which to set the date and time information.</param>
  13066. <param name="lastWriteTimeUtc">
  13067. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13068. is expressed in UTC time.
  13069. </param>
  13070. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13071. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13072. </member>
  13073. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime)">
  13074. <summary>
  13075. [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
  13076. </summary>
  13077. <param name="transaction">The transaction.</param>
  13078. <param name="path">The file for which to set the date and time information.</param>
  13079. <param name="lastWriteTimeUtc">
  13080. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13081. is expressed in UTC time.
  13082. </param>
  13083. </member>
  13084. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13085. <summary>
  13086. [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
  13087. </summary>
  13088. <param name="transaction">The transaction.</param>
  13089. <param name="path">The file for which to set the date and time information.</param>
  13090. <param name="lastWriteTimeUtc">
  13091. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13092. is expressed in UTC time.
  13093. </param>
  13094. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13095. </member>
  13096. <member name="M:Alphaleonis.Win32.Filesystem.File.SetLastWriteTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13097. <summary>
  13098. [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
  13099. </summary>
  13100. <param name="transaction">The transaction.</param>
  13101. <param name="path">The file for which to set the date and time information.</param>
  13102. <param name="lastWriteTimeUtc">
  13103. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13104. is expressed in UTC time.
  13105. </param>
  13106. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13107. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13108. </member>
  13109. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13110. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13111. <param name="path">The file for which to set the dates and times information.</param>
  13112. <param name="creationTime">
  13113. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13114. is expressed in local time.
  13115. </param>
  13116. <param name="lastAccessTime">
  13117. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13118. value is expressed in local time.
  13119. </param>
  13120. <param name="lastWriteTime">
  13121. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13122. is expressed in local time.
  13123. </param>
  13124. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13125. </member>
  13126. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime)">
  13127. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13128. <param name="path">The file for which to set the dates and times information.</param>
  13129. <param name="creationTime">
  13130. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13131. is expressed in local time.
  13132. </param>
  13133. <param name="lastAccessTime">
  13134. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13135. value is expressed in local time.
  13136. </param>
  13137. <param name="lastWriteTime">
  13138. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13139. is expressed in local time.
  13140. </param>
  13141. </member>
  13142. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestamps(System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13143. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13144. <param name="path">The file for which to set the dates and times information.</param>
  13145. <param name="creationTime">
  13146. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13147. is expressed in local time.
  13148. </param>
  13149. <param name="lastAccessTime">
  13150. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13151. value is expressed in local time.
  13152. </param>
  13153. <param name="lastWriteTime">
  13154. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13155. is expressed in local time.
  13156. </param>
  13157. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13158. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13159. </member>
  13160. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13161. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13162. <param name="transaction">The transaction.</param>
  13163. <param name="path">The file for which to set the dates and times information.</param>
  13164. <param name="creationTime">
  13165. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13166. is expressed in local time.
  13167. </param>
  13168. <param name="lastAccessTime">
  13169. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13170. value is expressed in local time.
  13171. </param>
  13172. <param name="lastWriteTime">
  13173. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13174. is expressed in local time.
  13175. </param>
  13176. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13177. </member>
  13178. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime)">
  13179. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13180. <param name="transaction">The transaction.</param>
  13181. <param name="path">The file for which to set the dates and times information.</param>
  13182. <param name="creationTime">
  13183. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13184. is expressed in local time.
  13185. </param>
  13186. <param name="lastAccessTime">
  13187. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13188. value is expressed in local time.
  13189. </param>
  13190. <param name="lastWriteTime">
  13191. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13192. is expressed in local time.
  13193. </param>
  13194. </member>
  13195. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13196. <summary>[AlphaFS] Sets all the date and time stamps for the specified file, at once.</summary>
  13197. <param name="transaction">The transaction.</param>
  13198. <param name="path">The file for which to set the dates and times information.</param>
  13199. <param name="creationTime">
  13200. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13201. is expressed in local time.
  13202. </param>
  13203. <param name="lastAccessTime">
  13204. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13205. value is expressed in local time.
  13206. </param>
  13207. <param name="lastWriteTime">
  13208. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13209. is expressed in local time.
  13210. </param>
  13211. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13212. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13213. </member>
  13214. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13215. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13216. <param name="path">The file for which to set the dates and times information.</param>
  13217. <param name="creationTimeUtc">
  13218. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13219. is expressed in UTC time.
  13220. </param>
  13221. <param name="lastAccessTimeUtc">
  13222. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13223. value is expressed in UTC time.
  13224. </param>
  13225. <param name="lastWriteTimeUtc">
  13226. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13227. is expressed in UTC time.
  13228. </param>
  13229. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13230. </member>
  13231. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime)">
  13232. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13233. <param name="path">The file for which to set the dates and times information.</param>
  13234. <param name="creationTimeUtc">
  13235. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13236. is expressed in UTC time.
  13237. </param>
  13238. <param name="lastAccessTimeUtc">
  13239. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13240. value is expressed in UTC time.
  13241. </param>
  13242. <param name="lastWriteTimeUtc">
  13243. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13244. is expressed in UTC time.
  13245. </param>
  13246. </member>
  13247. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtc(System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13248. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13249. <param name="path">The file for which to set the dates and times information.</param>
  13250. <param name="creationTimeUtc">
  13251. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13252. is expressed in UTC time.
  13253. </param>
  13254. <param name="lastAccessTimeUtc">
  13255. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13256. value is expressed in UTC time.
  13257. </param>
  13258. <param name="lastWriteTimeUtc">
  13259. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13260. is expressed in UTC time.
  13261. </param>
  13262. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13263. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13264. </member>
  13265. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,Alphaleonis.Win32.Filesystem.PathFormat)">
  13266. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13267. <param name="transaction">The transaction.</param>
  13268. <param name="path">The file for which to set the dates and times information.</param>
  13269. <param name="creationTimeUtc">
  13270. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13271. is expressed in UTC time.
  13272. </param>
  13273. <param name="lastAccessTimeUtc">
  13274. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13275. value is expressed in UTC time.
  13276. </param>
  13277. <param name="lastWriteTimeUtc">
  13278. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13279. is expressed in UTC time.
  13280. </param>
  13281. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13282. </member>
  13283. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime)">
  13284. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13285. <param name="transaction">The transaction.</param>
  13286. <param name="path">The file for which to set the dates and times information.</param>
  13287. <param name="creationTimeUtc">
  13288. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13289. is expressed in UTC time.
  13290. </param>
  13291. <param name="lastAccessTimeUtc">
  13292. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13293. value is expressed in UTC time.
  13294. </param>
  13295. <param name="lastWriteTimeUtc">
  13296. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13297. is expressed in UTC time.
  13298. </param>
  13299. </member>
  13300. <member name="M:Alphaleonis.Win32.Filesystem.File.SetTimestampsUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.DateTime,System.DateTime,System.DateTime,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13301. <summary>[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.</summary>
  13302. <param name="transaction">The transaction.</param>
  13303. <param name="path">The file for which to set the dates and times information.</param>
  13304. <param name="creationTimeUtc">
  13305. A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value
  13306. is expressed in UTC time.
  13307. </param>
  13308. <param name="lastAccessTimeUtc">
  13309. A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This
  13310. value is expressed in UTC time.
  13311. </param>
  13312. <param name="lastWriteTimeUtc">
  13313. A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value
  13314. is expressed in UTC time.
  13315. </param>
  13316. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13317. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13318. </member>
  13319. <member name="M:Alphaleonis.Win32.Filesystem.File.SetFsoDateTimeCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13320. <summary>Set the date and time, in coordinated universal time (UTC), that the file or directory was created and/or last accessed and/or written to.</summary>
  13321. <exception cref="T:System.ArgumentException"/>
  13322. <exception cref="T:System.NotSupportedException"/>
  13323. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  13324. <param name="transaction">The transaction.</param>
  13325. <param name="path">The file or directory for which to set the date and time information.</param>
  13326. <param name="creationTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the creation date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  13327. <param name="lastAccessTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last access date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  13328. <param name="lastWriteTimeUtc">A <see cref="T:System.DateTime"/> containing the value to set for the last write date and time of <paramref name="path"/>. This value is expressed in UTC time.</param>
  13329. <param name="modifyReparsePoint">If <see langword="true"/>, the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if <paramref name="path"/> does not refer to a reparse point.</param>
  13330. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13331. </member>
  13332. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllBytes(System.String,System.Byte[])">
  13333. <summary>
  13334. 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
  13335. overwritten.
  13336. </summary>
  13337. <param name="path">The file to write to.</param>
  13338. <param name="bytes">The bytes to write to the file.</param>
  13339. </member>
  13340. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllBytes(System.String,System.Byte[],Alphaleonis.Win32.Filesystem.PathFormat)">
  13341. <summary>
  13342. [AlphaFS] Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already
  13343. exists, it is overwritten.
  13344. </summary>
  13345. <param name="path">The file to write to.</param>
  13346. <param name="bytes">The bytes to write to the file.</param>
  13347. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13348. </member>
  13349. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllBytesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Byte[])">
  13350. <summary>
  13351. [AlphaFS] Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already
  13352. exists, it is overwritten.
  13353. </summary>
  13354. <param name="transaction">The transaction.</param>
  13355. <param name="path">The file to write to.</param>
  13356. <param name="bytes">The bytes to write to the file.</param>
  13357. </member>
  13358. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllBytesTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Byte[],Alphaleonis.Win32.Filesystem.PathFormat)">
  13359. <summary>
  13360. [AlphaFS] Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already
  13361. exists, it is overwritten.
  13362. </summary>
  13363. <param name="transaction">The transaction.</param>
  13364. <param name="path">The file to write to.</param>
  13365. <param name="bytes">The bytes to write to the file.</param>
  13366. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13367. </member>
  13368. <member name="M:Alphaleonis.Win32.Filesystem.File.WriteAllBytesCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Byte[],Alphaleonis.Win32.Filesystem.PathFormat)">
  13369. <summary>Creates a new file as part of a transaction, writes the specified byte array to
  13370. the file, and then closes the file. If the target file already exists, it is overwritten.
  13371. </summary>
  13372. <exception cref="T:System.ArgumentNullException"/>
  13373. <param name="transaction">The transaction.</param>
  13374. <param name="path">The file to write to.</param>
  13375. <param name="bytes">The bytes to write to the file.</param>
  13376. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13377. </member>
  13378. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTime(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13379. <summary>[AlphaFS] Gets the change date and time of the specified file.</summary>
  13380. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13381. <param name="path">The file for which to obtain creation date and time information.</param>
  13382. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13383. </member>
  13384. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTime(System.String)">
  13385. <summary>[AlphaFS] Gets the change date and time of the specified file.</summary>
  13386. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13387. <param name="path">The file for which to obtain creation date and time information.</param>
  13388. </member>
  13389. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTime(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  13390. <summary>[AlphaFS] Gets the change date and time of the specified file.</summary>
  13391. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13392. <param name="safeHandle">An open handle to the file or directory from which to retrieve information.</param>
  13393. </member>
  13394. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13395. <summary>[AlphaFS] Gets the change date and time of the specified file.</summary>
  13396. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13397. <param name="transaction">The transaction.</param>
  13398. <param name="path">The file for which to obtain creation date and time information.</param>
  13399. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13400. </member>
  13401. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13402. <summary>[AlphaFS] Gets the change date and time of the specified file.</summary>
  13403. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13404. <param name="transaction">The transaction.</param>
  13405. <param name="path">The file for which to obtain creation date and time information.</param>
  13406. </member>
  13407. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeUtc(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13408. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  13409. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in UTC time.</returns>
  13410. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  13411. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13412. </member>
  13413. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeUtc(System.String)">
  13414. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  13415. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in UTC time.</returns>
  13416. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  13417. </member>
  13418. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeUtc(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  13419. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  13420. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in UTC time.</returns>
  13421. <param name="safeHandle">An open handle to the file or directory from which to retrieve information.</param>
  13422. </member>
  13423. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13424. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  13425. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in UTC time.</returns>
  13426. <param name="transaction">The transaction.</param>
  13427. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  13428. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13429. </member>
  13430. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeUtcTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13431. <summary>[AlphaFS] Gets the change date and time, in Coordinated Universal Time (UTC) format, of the specified file.</summary>
  13432. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in UTC time.</returns>
  13433. <param name="transaction">The transaction.</param>
  13434. <param name="path">The file for which to obtain change date and time information, in Coordinated Universal Time (UTC) format.</param>
  13435. </member>
  13436. <member name="M:Alphaleonis.Win32.Filesystem.File.GetChangeTimeCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,Microsoft.Win32.SafeHandles.SafeFileHandle,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13437. <summary>Gets the change date and time of the specified file.</summary>
  13438. <returns>A <see cref="T:System.DateTime"/> structure set to the change date and time for the specified file. This value is expressed in local time.</returns>
  13439. <remarks><para>Use either <paramref name="path"/> or <paramref name="safeHandle"/>, not both.</para></remarks>
  13440. <exception cref="T:System.ArgumentException"/>
  13441. <exception cref="T:System.ArgumentNullException"/>
  13442. <exception cref="T:System.PlatformNotSupportedException"/>
  13443. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  13444. <param name="transaction">The transaction.</param>
  13445. <param name="safeHandle">An open handle to the file or directory from which to retrieve information.</param>
  13446. <param name="path">The file or directory for which to obtain creation date and time information.</param>
  13447. <param name="getUtc"><see langword="true"/> gets the Coordinated Universal Time (UTC), <see langword="false"/> gets the local time.</param>
  13448. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13449. </member>
  13450. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCompressedSize(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13451. <summary>[AlphaFS] Retrieves the actual number of bytes of disk storage used to store a specified file.</summary>
  13452. <remarks>
  13453. If the file is located on a volume that supports compression and the file is compressed, the value obtained is the compressed size
  13454. of the specified file. If the file is located on a volume that supports sparse files and the file is a sparse file, the value
  13455. obtained is the sparse size of the specified file.
  13456. </remarks>
  13457. <param name="path"><para>The name of the file.</para></param>
  13458. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13459. <returns>The actual number of bytes of disk storage used to store the specified file.</returns>
  13460. </member>
  13461. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCompressedSize(System.String)">
  13462. <summary>[AlphaFS] Retrieves the actual number of bytes of disk storage used to store a specified file.</summary>
  13463. <remarks>
  13464. If the file is located on a volume that supports compression and the file is compressed, the value obtained is the compressed size
  13465. of the specified file. If the file is located on a volume that supports sparse files and the file is a sparse file, the value
  13466. obtained is the sparse size of the specified file.
  13467. </remarks>
  13468. <param name="path"><para>The name of the file.</para></param>
  13469. <returns>The actual number of bytes of disk storage used to store the specified file.</returns>
  13470. </member>
  13471. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCompressedSizeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13472. <summary>
  13473. [AlphaFS] Retrieves the actual number of bytes of disk storage used to store a specified file as part of a transaction. If the file
  13474. is located on a volume that supports compression and the file is compressed, the value obtained is the compressed size of the
  13475. specified file. If the file is located on a volume that supports sparse files and the file is a sparse file, the value obtained is
  13476. the sparse size of the specified file.
  13477. </summary>
  13478. <param name="transaction">The transaction.</param>
  13479. <param name="path"><para>The name of the file.</para></param>
  13480. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13481. <returns>The actual number of bytes of disk storage used to store the specified file.</returns>
  13482. </member>
  13483. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCompressedSizeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13484. <summary>
  13485. [AlphaFS] Retrieves the actual number of bytes of disk storage used to store a specified file as part of a transaction. If the file
  13486. is located on a volume that supports compression and the file is compressed, the value obtained is the compressed size of the
  13487. specified file. If the file is located on a volume that supports sparse files and the file is a sparse file, the value obtained is
  13488. the sparse size of the specified file.
  13489. </summary>
  13490. <param name="transaction">The transaction.</param>
  13491. <param name="path"><para>The name of the file.</para></param>
  13492. <returns>The actual number of bytes of disk storage used to store the specified file.</returns>
  13493. </member>
  13494. <member name="M:Alphaleonis.Win32.Filesystem.File.GetCompressedSizeCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13495. <summary>Retrieves the actual number of bytes of disk storage used to store a
  13496. specified file as part of a transaction. If the file is located on a volume that supports compression and the file is compressed,
  13497. the value obtained is the compressed size of the specified file. If the file is located on a volume that supports sparse files and
  13498. the file is a sparse file, the value obtained is the sparse size of the specified file.
  13499. </summary>
  13500. <exception cref="T:System.ArgumentNullException"/>
  13501. <param name="transaction">The transaction.</param>
  13502. <param name="path"><para>The name of the file.</para></param>
  13503. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13504. <returns>The actual number of bytes of disk storage used to store the specified file.</returns>
  13505. </member>
  13506. <member name="M:Alphaleonis.Win32.Filesystem.File.GetEncryptionStatus(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13507. <summary>[AlphaFS] Retrieves the encryption status of the specified file.</summary>
  13508. <param name="path">The name of the file.</param>
  13509. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13510. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileEncryptionStatus"/> of the specified <paramref name="path"/>.</returns>
  13511. </member>
  13512. <member name="M:Alphaleonis.Win32.Filesystem.File.GetEncryptionStatus(System.String)">
  13513. <summary>[AlphaFS] Retrieves the encryption status of the specified file.</summary>
  13514. <param name="path">The name of the file.</param>
  13515. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileEncryptionStatus"/> of the specified <paramref name="path"/>.</returns>
  13516. </member>
  13517. <member name="M:Alphaleonis.Win32.Filesystem.File.GetEncryptionStatusCore(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13518. <summary>Retrieves the encryption status of the specified file.</summary>
  13519. <param name="path">The name of the file.</param>
  13520. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13521. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileEncryptionStatus"/> of the specified <paramref name="path"/>.</returns>
  13522. </member>
  13523. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileInfoByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  13524. <summary>[AlphaFS] Retrieves file information for the specified <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/>.</summary>
  13525. <param name="handle">A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> connected to the open file from which to retrieve the information.</param>
  13526. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.ByHandleFileInfo"/> object containing the requested information.</returns>
  13527. </member>
  13528. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileSystemEntryInfo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13529. <summary>[AlphaFS] Gets the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> of the file on the path.</summary>
  13530. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance of the file or directory.</returns>
  13531. <param name="path">The path to the file or directory.</param>
  13532. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13533. </member>
  13534. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileSystemEntryInfo(System.String)">
  13535. <summary>[AlphaFS] Gets the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> of the file on the path.</summary>
  13536. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance of the file or directory.</returns>
  13537. <param name="path">The path to the file or directory.</param>
  13538. </member>
  13539. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileSystemEntryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13540. <summary>[AlphaFS] Gets the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> of the file on the path.</summary>
  13541. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance of the file or directory.</returns>
  13542. <param name="transaction">The transaction.</param>
  13543. <param name="path">The path to the file or directory.</param>
  13544. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13545. </member>
  13546. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileSystemEntryInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13547. <summary>[AlphaFS] Gets the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> of the file on the path.</summary>
  13548. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance of the file or directory.</returns>
  13549. <param name="transaction">The transaction.</param>
  13550. <param name="path">The path to the file or directory.</param>
  13551. </member>
  13552. <member name="M:Alphaleonis.Win32.Filesystem.File.GetFileSystemEntryInfoCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  13553. <summary>Gets a FileSystemEntryInfo from a Non-/Transacted directory/file.</summary>
  13554. <returns>The <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance of the file or directory, or <c>null</c> on Exception when <paramref name="continueOnException"/> is <c>true</c>.</returns>
  13555. <remarks>BasicSearch <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS.Basic"/> and LargeCache <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags.LargeFetch"/> are used by default, if possible.</remarks>
  13556. <exception cref="T:System.ArgumentException"/>
  13557. <exception cref="T:System.ArgumentNullException"/>
  13558. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  13559. <param name="transaction">The transaction.</param>
  13560. <param name="path">The path to the file or directory.</param>
  13561. <param name="continueOnException">
  13562. <para><c>true</c> suppress any Exception that might be thrown as a result from a failure,</para>
  13563. <para>such as ACLs protected directories or non-accessible reparse points.</para>
  13564. </param>
  13565. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13566. </member>
  13567. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLinkTargetInfo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13568. <summary>[AlphaFS] Gets information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  13569. <param name="path">The path to the reparse point.</param>
  13570. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13571. <returns>
  13572. An instance of <see cref="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo"/> containing information about the symbolic link
  13573. or mount point pointed to by <paramref name="path"/>.
  13574. </returns>
  13575. </member>
  13576. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLinkTargetInfo(System.String)">
  13577. <summary>[AlphaFS] Gets information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  13578. <param name="path">The path to the reparse point.</param>
  13579. <returns>
  13580. An instance of <see cref="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo"/> containing information about the symbolic link
  13581. or mount point pointed to by <paramref name="path"/>.
  13582. </returns>
  13583. </member>
  13584. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLinkTargetInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13585. <summary>[AlphaFS] Gets information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  13586. <param name="transaction">The transaction.</param>
  13587. <param name="path">The path to the reparse point.</param>
  13588. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13589. <returns>
  13590. An instance of <see cref="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo"/> containing information about the symbolic link
  13591. or mount point pointed to by <paramref name="path"/>.
  13592. </returns>
  13593. </member>
  13594. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLinkTargetInfoTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13595. <summary>[AlphaFS] Gets information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  13596. <param name="transaction">The transaction.</param>
  13597. <param name="path">The path to the reparse point.</param>
  13598. <returns>
  13599. An instance of <see cref="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo"/> containing information about the symbolic link
  13600. or mount point pointed to by <paramref name="path"/>.
  13601. </returns>
  13602. </member>
  13603. <member name="M:Alphaleonis.Win32.Filesystem.File.GetLinkTargetInfoCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13604. <summary>Gets information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  13605. <param name="transaction">The transaction.</param>
  13606. <param name="path">The path to the reparse point.</param>
  13607. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13608. <returns>
  13609. An instance of <see cref="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo"/> containing information about the symbolic link
  13610. or mount point pointed to by <paramref name="path"/>.
  13611. </returns>
  13612. </member>
  13613. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSize(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13614. <summary>[AlphaFS] Retrieves the file size, in bytes to store a specified file.</summary>
  13615. <param name="path">The path to the file.</param>
  13616. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13617. <returns>The file size, in bytes.</returns>
  13618. </member>
  13619. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSize(System.String)">
  13620. <summary>[AlphaFS] Retrieves the file size, in bytes to store a specified file.</summary>
  13621. <param name="path">The path to the file.</param>
  13622. <returns>The file size, in bytes.</returns>
  13623. </member>
  13624. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSize(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  13625. <summary>[AlphaFS] Retrieves the file size, in bytes to store a specified file.</summary>
  13626. <param name="handle">The <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to the file.</param>
  13627. <returns>The file size, in bytes.</returns>
  13628. </member>
  13629. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSizeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13630. <summary>[AlphaFS] Retrieves the file size, in bytes to store a specified file.</summary>
  13631. <param name="transaction">The transaction.</param>
  13632. <param name="path">The path to the file.</param>
  13633. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13634. <returns>The number of bytes of disk storage used to store the specified file.</returns>
  13635. </member>
  13636. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSizeTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13637. <summary>[AlphaFS] Retrieves the file size, in bytes to store a specified file.</summary>
  13638. <param name="transaction">The transaction.</param>
  13639. <param name="path">The path to the file.</param>
  13640. <returns>The number of bytes of disk storage used to store the specified file.</returns>
  13641. </member>
  13642. <member name="M:Alphaleonis.Win32.Filesystem.File.GetSizeCore(Alphaleonis.Win32.Filesystem.KernelTransaction,Microsoft.Win32.SafeHandles.SafeFileHandle,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13643. <summary>Retrieves the file size, in bytes to store a specified file.</summary>
  13644. <remarks>Use either <paramref name="path"/> or <paramref name="safeHandle"/>, not both.</remarks>
  13645. <param name="transaction">The transaction.</param>
  13646. <param name="safeHandle">The <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> to the file.</param>
  13647. <param name="path">The path to the file.</param>
  13648. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13649. <returns>The number of bytes of disk storage used to store the specified file.</returns>
  13650. </member>
  13651. <member name="M:Alphaleonis.Win32.Filesystem.File.TransferTimestamps(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13652. <summary>[AlphaFS] Transfers the date and time stamps for the specified files.</summary>
  13653. <remarks>This method does not change last access time for the source file.</remarks>
  13654. <param name="sourcePath">The source file to get the date and time stamps from.</param>
  13655. <param name="destinationPath">The destination file to set the date and time stamps.</param>
  13656. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13657. </member>
  13658. <member name="M:Alphaleonis.Win32.Filesystem.File.TransferTimestamps(System.String,System.String)">
  13659. <summary>[AlphaFS] Transfers the date and time stamps for the specified files.</summary>
  13660. <remarks>This method does not change last access time for the source file.</remarks>
  13661. <param name="sourcePath">The source file to get the date and time stamps from.</param>
  13662. <param name="destinationPath">The destination file to set the date and time stamps.</param>
  13663. </member>
  13664. <member name="M:Alphaleonis.Win32.Filesystem.File.TransferTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13665. <summary>[AlphaFS] Transfers the date and time stamps for the specified files.</summary>
  13666. <remarks>This method does not change last access time for the source file.</remarks>
  13667. <param name="transaction">The transaction.</param>
  13668. <param name="sourcePath">The source file to get the date and time stamps from.</param>
  13669. <param name="destinationPath">The destination file to set the date and time stamps.</param>
  13670. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13671. </member>
  13672. <member name="M:Alphaleonis.Win32.Filesystem.File.TransferTimestampsTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String)">
  13673. <summary>[AlphaFS] Transfers the date and time stamps for the specified files.</summary>
  13674. <remarks>This method does not change last access time for the source file.</remarks>
  13675. <param name="transaction">The transaction.</param>
  13676. <param name="sourcePath">The source file to get the date and time stamps from.</param>
  13677. <param name="destinationPath">The destination file to set the date and time stamps.</param>
  13678. </member>
  13679. <member name="M:Alphaleonis.Win32.Filesystem.File.TransferTimestampsCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13680. <summary>Transfer the date and time stamps for the specified files and directories.</summary>
  13681. <remarks>
  13682. <para>This method does not change last access time for the source file.</para>
  13683. <para>This method uses BackupSemantics flag to get Timestamp changed for directories.</para>
  13684. </remarks>
  13685. <param name="isFolder">Specifies that <paramref name="sourcePath"/> and <paramref name="destinationPath"/> are a file or directory.</param>
  13686. <param name="transaction">The transaction.</param>
  13687. <param name="sourcePath">The source path.</param>
  13688. <param name="destinationPath">The destination path.</param>
  13689. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13690. </member>
  13691. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenRead(System.String)">
  13692. <summary>Opens an existing file for reading.</summary>
  13693. <param name="path">The file to be opened for reading.</param>
  13694. <returns>A read-only <see cref="T:System.IO.FileStream"/> on the specified path.</returns>
  13695. <remarks>
  13696. This method is equivalent to the <see cref="T:System.IO.FileStream"/>(string, FileMode, FileAccess, FileShare) constructor overload with a
  13697. <see cref="T:System.IO.FileMode"/> value of Open, a <see cref="T:System.IO.FileAccess"/> value of Read and a <see cref="T:System.IO.FileShare"/> value of Read.
  13698. </remarks>
  13699. </member>
  13700. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenRead(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13701. <summary>[AlphaFS] Opens an existing file for reading.</summary>
  13702. <param name="path">The file to be opened for reading.</param>
  13703. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13704. <returns>A read-only <see cref="T:System.IO.FileStream"/> on the specified path.</returns>
  13705. <remarks>
  13706. This method is equivalent to the <see cref="T:System.IO.FileStream"/>(string, FileMode, FileAccess, FileShare) constructor overload with a
  13707. <see cref="T:System.IO.FileMode"/> value of Open, a <see cref="T:System.IO.FileAccess"/> value of Read and a <see cref="T:System.IO.FileShare"/> value of Read.
  13708. </remarks>
  13709. </member>
  13710. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenReadTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13711. <summary>[AlphaFS] Opens an existing file for reading.</summary>
  13712. <param name="transaction">The transaction.</param>
  13713. <param name="path">The file to be opened for reading.</param>
  13714. <returns>A read-only <see cref="T:System.IO.FileStream"/> on the specified path.</returns>
  13715. <remarks>
  13716. This method is equivalent to the <see cref="T:System.IO.FileStream"/>(string, FileMode, FileAccess, FileShare) constructor overload with a
  13717. <see cref="T:System.IO.FileMode"/> value of Open, a <see cref="T:System.IO.FileAccess"/> value of Read and a <see cref="T:System.IO.FileShare"/> value of Read.
  13718. </remarks>
  13719. </member>
  13720. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenReadTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13721. <summary>[AlphaFS] Opens an existing file for reading.</summary>
  13722. <param name="transaction">The transaction.</param>
  13723. <param name="path">The file to be opened for reading.</param>
  13724. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13725. <returns>A read-only <see cref="T:System.IO.FileStream"/> on the specified path.</returns>
  13726. <remarks>
  13727. This method is equivalent to the <see cref="T:System.IO.FileStream"/>(string, FileMode, FileAccess, FileShare) constructor overload with a
  13728. <see cref="T:System.IO.FileMode"/> value of Open, a <see cref="T:System.IO.FileAccess"/> value of Read and a <see cref="T:System.IO.FileShare"/> value of Read.
  13729. </remarks>
  13730. </member>
  13731. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenText(System.String)">
  13732. <summary>Opens an existing UTF-8 encoded text file for reading.</summary>
  13733. <param name="path">The file to be opened for reading.</param>
  13734. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13735. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13736. </member>
  13737. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenText(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13738. <summary>[AlphaFS] Opens an existing UTF-8 encoded text file for reading.</summary>
  13739. <param name="path">The file to be opened for reading.</param>
  13740. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13741. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13742. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13743. </member>
  13744. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenText(System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  13745. <summary>[AlphaFS] Opens an existing <see cref="T:System.Text.Encoding"/> encoded text file for reading.</summary>
  13746. <param name="path">The file to be opened for reading.</param>
  13747. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  13748. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13749. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13750. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13751. </member>
  13752. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenText(System.String,System.Text.Encoding)">
  13753. <summary>[AlphaFS] Opens an existing <see cref="T:System.Text.Encoding"/> encoded text file for reading.</summary>
  13754. <param name="path">The file to be opened for reading.</param>
  13755. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  13756. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13757. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13758. </member>
  13759. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13760. <summary>[AlphaFS] Opens an existing UTF-8 encoded text file for reading.</summary>
  13761. <param name="transaction">The transaction.</param>
  13762. <param name="path">The file to be opened for reading.</param>
  13763. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13764. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13765. </member>
  13766. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13767. <summary>[AlphaFS] Opens an existing UTF-8 encoded text file for reading.</summary>
  13768. <param name="transaction">The transaction.</param>
  13769. <param name="path">The file to be opened for reading.</param>
  13770. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13771. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13772. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13773. </member>
  13774. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding,Alphaleonis.Win32.Filesystem.PathFormat)">
  13775. <summary>[AlphaFS] Opens an existing <see cref="T:System.Text.Encoding"/> encoded text file for reading.</summary>
  13776. <param name="transaction">The transaction.</param>
  13777. <param name="path">The file to be opened for reading.</param>
  13778. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  13779. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13780. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13781. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13782. </member>
  13783. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenTextTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Text.Encoding)">
  13784. <summary>[AlphaFS] Opens an existing <see cref="T:System.Text.Encoding"/> encoded text file for reading.</summary>
  13785. <param name="transaction">The transaction.</param>
  13786. <param name="path">The file to be opened for reading.</param>
  13787. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  13788. <returns>A <see cref="T:System.IO.StreamReader"/> on the specified path.</returns>
  13789. <remarks>This method is equivalent to the <see cref="T:System.IO.StreamReader"/>(String) constructor overload.</remarks>
  13790. </member>
  13791. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenWrite(System.String)">
  13792. <summary>Opens an existing file or creates a new file for writing.</summary>
  13793. <param name="path">The file to be opened for writing.</param>
  13794. <returns>An unshared <see cref="T:System.IO.FileStream"/> object on the specified path with <see cref="F:System.IO.FileAccess.Write"/> access.</returns>
  13795. <remarks>This method is equivalent to the <see cref="T:System.IO.FileStream"/>(String, FileMode, FileAccess, FileShare) constructor overload with file mode set to OpenOrCreate, the access set to Write, and the share mode set to None.</remarks>
  13796. </member>
  13797. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenWrite(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13798. <summary>[AlphaFS] Opens an existing file or creates a new file for writing.</summary>
  13799. <param name="path">The file to be opened for writing.</param>
  13800. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13801. <returns>An unshared <see cref="T:System.IO.FileStream"/> object on the specified path with <see cref="F:System.IO.FileAccess.Write"/> access.</returns>
  13802. <remarks>This method is equivalent to the <see cref="T:System.IO.FileStream"/>(String, FileMode, FileAccess, FileShare) constructor overload with file mode set to OpenOrCreate, the access set to Write, and the share mode set to None.</remarks>
  13803. </member>
  13804. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenWriteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13805. <summary>[AlphaFS] Opens an existing file or creates a new file for writing.</summary>
  13806. <param name="transaction">The transaction.</param>
  13807. <param name="path">The file to be opened for writing.</param>
  13808. <returns>An unshared <see cref="T:System.IO.FileStream"/> object on the specified path with <see cref="F:System.IO.FileAccess.Write"/> access.</returns>
  13809. <remarks>This method is equivalent to the <see cref="T:System.IO.FileStream"/>(String, FileMode, FileAccess, FileShare) constructor overload with file mode set to OpenOrCreate, the access set to Write, and the share mode set to None.</remarks>
  13810. </member>
  13811. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenWriteTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13812. <summary>[AlphaFS] Opens an existing file or creates a new file for writing.</summary>
  13813. <param name="transaction">The transaction.</param>
  13814. <param name="path">The file to be opened for writing.</param>
  13815. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13816. <returns>An unshared <see cref="T:System.IO.FileStream"/> object on the specified path with <see cref="F:System.IO.FileAccess.Write"/> access.</returns>
  13817. <remarks>This method is equivalent to the <see cref="T:System.IO.FileStream"/>(String, FileMode, FileAccess, FileShare) constructor overload with file mode set to OpenOrCreate, the access set to Write, and the share mode set to None.</remarks>
  13818. </member>
  13819. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenBackupRead(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13820. <summary>[AlphaFS] Opens the specified file for reading purposes bypassing security attributes.</summary>
  13821. <param name="path">The file path to open.</param>
  13822. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13823. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the read-only mode and sharing options.</returns>
  13824. </member>
  13825. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenBackupRead(System.String)">
  13826. <summary>[AlphaFS] Opens the specified file for reading purposes bypassing security attributes. This method is simpler to use then BackupFileStream to read only file's data stream.</summary>
  13827. <param name="path">The file path to open.</param>
  13828. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the read-only mode and sharing options.</returns>
  13829. </member>
  13830. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenBackupReadTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  13831. <summary>[AlphaFS] Opens the specified file for reading purposes bypassing security attributes.</summary>
  13832. <param name="transaction">The transaction.</param>
  13833. <param name="path">The file path to open.</param>
  13834. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  13835. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the read-only mode and sharing options.</returns>
  13836. </member>
  13837. <member name="M:Alphaleonis.Win32.Filesystem.File.OpenBackupReadTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  13838. <summary>[AlphaFS] Opens the specified file for reading purposes bypassing security attributes.</summary>
  13839. <param name="transaction">The transaction.</param>
  13840. <param name="path">The file path to open.</param>
  13841. <returns>A <see cref="T:System.IO.FileStream"/> on the specified path, having the read-only mode and sharing options.</returns>
  13842. </member>
  13843. <member name="T:Alphaleonis.Win32.Filesystem.DeviceInfo">
  13844. <summary>Provides access to information of a device, on a local or remote host.</summary>
  13845. </member>
  13846. <member name="M:Alphaleonis.Win32.Filesystem.DeviceInfo.#ctor">
  13847. <summary>Initializes a DeviceInfo class.</summary>
  13848. </member>
  13849. <member name="M:Alphaleonis.Win32.Filesystem.DeviceInfo.#ctor(System.String)">
  13850. <summary>Initializes a DeviceInfo class.</summary>
  13851. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  13852. </member>
  13853. <member name="M:Alphaleonis.Win32.Filesystem.DeviceInfo.EnumerateDevices(Alphaleonis.Win32.Filesystem.DeviceGuid)">
  13854. <summary>Enumerates all available devices on the local host.</summary>
  13855. <param name="deviceGuid">One of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> devices.</param>
  13856. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> instances of type <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> from the local host.</returns>
  13857. </member>
  13858. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.BaseContainerId">
  13859. <summary>Represents the <see cref="T:System.Guid"/> value of the base container identifier (ID) .The Windows Plug and Play (PnP) manager assigns this value to the device node (devnode).</summary>
  13860. </member>
  13861. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.Class">
  13862. <summary>Represents the name of the device setup class that a device instance belongs to.</summary>
  13863. </member>
  13864. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.ClassGuid">
  13865. <summary>Represents the <see cref="T:System.Guid"/> of the device setup class that a device instance belongs to.</summary>
  13866. </member>
  13867. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.CompatibleIds">
  13868. <summary>Represents the list of compatible identifiers for a device instance.</summary>
  13869. </member>
  13870. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.DeviceDescription">
  13871. <summary>Represents a description of a device instance.</summary>
  13872. </member>
  13873. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.DevicePath">
  13874. <summary>The device interface path.</summary>
  13875. </member>
  13876. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.Driver">
  13877. <summary>Represents the registry entry name of the driver key for a device instance.</summary>
  13878. </member>
  13879. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.EnumeratorName">
  13880. <summary>Represents the name of the enumerator for a device instance.</summary>
  13881. </member>
  13882. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.FriendlyName">
  13883. <summary>Represents the friendly name of a device instance.</summary>
  13884. </member>
  13885. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.HardwareId">
  13886. <summary>Represents the list of hardware identifiers for a device instance.</summary>
  13887. </member>
  13888. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.HostName">
  13889. <summary>The host name that was passed to the class constructor.</summary>
  13890. </member>
  13891. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.InstanceId">
  13892. <summary>Gets the instance Id of the device.</summary>
  13893. </member>
  13894. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.LocationInformation">
  13895. <summary>Represents the bus-specific physical location of a device instance.</summary>
  13896. </member>
  13897. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.LocationPaths">
  13898. <summary>Represents the location of a device instance in the device tree.</summary>
  13899. </member>
  13900. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.Manufacturer">
  13901. <summary>Represents the name of the manufacturer of a device instance.</summary>
  13902. </member>
  13903. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.PhysicalDeviceObjectName">
  13904. <summary>Encapsulates the physical device location information provided by a device's firmware to Windows.</summary>
  13905. </member>
  13906. <member name="P:Alphaleonis.Win32.Filesystem.DeviceInfo.Service">
  13907. <summary>Represents the name of the service that is installed for a device instance.</summary>
  13908. </member>
  13909. <member name="T:Alphaleonis.Win32.Filesystem.DiskSpaceInfo">
  13910. <summary>Retrieves information about the amount of space that is available on a disk volume, which is the total amount of space,
  13911. the total amount of free space, and the total amount of free space available to the user that is associated with the calling thread.
  13912. <para>This class cannot be inherited.</para>
  13913. </summary>
  13914. </member>
  13915. <member name="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.#ctor(System.String)">
  13916. <summary>Initializes a DiskSpaceInfo instance.</summary>
  13917. <param name="drivePath">A valid drive path or drive letter. This can be either uppercase or lowercase, 'a' to 'z' or a network share in the format: \\server\share</param>
  13918. <Remark>This is a Lazyloading object; call <see cref="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.Refresh"/> to populate all properties first before accessing.</Remark>
  13919. </member>
  13920. <member name="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.#ctor(System.String,System.Nullable{System.Boolean},System.Boolean,System.Boolean)">
  13921. <summary>Initializes a DiskSpaceInfo instance.</summary>
  13922. <param name="drivePath">A valid drive path or drive letter. This can be either uppercase or lowercase, 'a' to 'z' or a network share in the format: \\server\share</param>
  13923. <param name="spaceInfoType"><see langword="null"/> gets both size- and disk cluster information. <see langword="true"/> Get only disk cluster information, <see langword="false"/> Get only size information.</param>
  13924. <param name="refresh">Refreshes the state of the object.</param>
  13925. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  13926. </member>
  13927. <member name="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.Refresh">
  13928. <summary>Refreshes the state of the object.</summary>
  13929. </member>
  13930. <member name="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.Reset">
  13931. <summary>Initializes all <see ref="Alphaleonis.Win32.Filesystem.DiskSpaceInfo"/> properties to 0.</summary>
  13932. </member>
  13933. <member name="M:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.ToString">
  13934. <summary>Returns the drive name.</summary>
  13935. <returns>A string that represents this object.</returns>
  13936. </member>
  13937. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.AvailableFreeSpacePercent">
  13938. <summary>Indicates the amount of available free space on a drive, formatted as percentage.</summary>
  13939. </member>
  13940. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.AvailableFreeSpaceUnitSize">
  13941. <summary>Indicates the amount of available free space on a drive, formatted as a unit size.</summary>
  13942. </member>
  13943. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.ClusterSize">
  13944. <summary>Returns the Clusters size.</summary>
  13945. </member>
  13946. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.DriveName">
  13947. <summary>Gets the name of a drive.</summary>
  13948. <returns>The name of the drive.</returns>
  13949. <remarks>This property is the name assigned to the drive, such as C:\ or E:\</remarks>
  13950. </member>
  13951. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.TotalSizeUnitSize">
  13952. <summary>The total number of bytes on a disk that are available to the user who is associated with the calling thread, formatted as a unit size.</summary>
  13953. </member>
  13954. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.UsedSpacePercent">
  13955. <summary>Indicates the amount of used space on a drive, formatted as percentage.</summary>
  13956. </member>
  13957. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.UsedSpaceUnitSize">
  13958. <summary>Indicates the amount of used space on a drive, formatted as a unit size.</summary>
  13959. </member>
  13960. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.FreeBytesAvailable">
  13961. <summary>The total number of free bytes on a disk that are available to the user who is associated with the calling thread.</summary>
  13962. </member>
  13963. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.TotalNumberOfBytes">
  13964. <summary>The total number of bytes on a disk that are available to the user who is associated with the calling thread.</summary>
  13965. </member>
  13966. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.TotalNumberOfFreeBytes">
  13967. <summary>The total number of free bytes on a disk.</summary>
  13968. </member>
  13969. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.BytesPerSector">
  13970. <summary>The number of bytes per sector.</summary>
  13971. </member>
  13972. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.NumberOfFreeClusters">
  13973. <summary>The total number of free clusters on the disk that are available to the user who is associated with the calling thread.</summary>
  13974. </member>
  13975. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.SectorsPerCluster">
  13976. <summary>The number of sectors per cluster.</summary>
  13977. </member>
  13978. <member name="P:Alphaleonis.Win32.Filesystem.DiskSpaceInfo.TotalNumberOfClusters">
  13979. <summary>The total number of clusters on the disk that are available to the user who is associated with the calling thread.
  13980. If per-user disk quotas are in use, this value may be less than the total number of clusters on the disk.
  13981. </summary>
  13982. </member>
  13983. <member name="T:Alphaleonis.Win32.Filesystem.DriveInfo">
  13984. <summary>Provides access to information on a local or remote drive.</summary>
  13985. <remarks>
  13986. This class models a drive and provides methods and properties to query for drive information.
  13987. Use DriveInfo to determine what drives are available, and what type of drives they are.
  13988. You can also query to determine the capacity and available free space on the drive.
  13989. </remarks>
  13990. </member>
  13991. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.#ctor(System.String)">
  13992. <summary>Provides access to information on the specified drive.</summary>
  13993. <exception cref="T:System.ArgumentNullException"/>
  13994. <exception cref="T:System.ArgumentException"/>
  13995. <param name="driveName">
  13996. A valid drive path or drive letter.
  13997. <para>This can be either uppercase or lowercase,</para>
  13998. <para>'a' to 'z' or a network share in the format: \\server\share</para>
  13999. </param>
  14000. </member>
  14001. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.AvailableFreeSpace">
  14002. <summary>Indicates the amount of available free space on a drive.</summary>
  14003. <returns>The amount of free space available on the drive, in bytes.</returns>
  14004. <remarks>This property indicates the amount of free space available on the drive. Note that this number may be different from the <see cref="P:Alphaleonis.Win32.Filesystem.DriveInfo.TotalFreeSpace"/> number because this property takes into account disk quotas.</remarks>
  14005. </member>
  14006. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.DriveFormat">
  14007. <summary>Gets the name of the file system, such as NTFS or FAT32.</summary>
  14008. <remarks>Use DriveFormat to determine what formatting a drive uses.</remarks>
  14009. </member>
  14010. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.DriveType">
  14011. <summary>Gets the drive type.</summary>
  14012. <returns>One of the <see cref="T:System.IO.DriveType"/> values.</returns>
  14013. <remarks>
  14014. The DriveType property indicates whether a drive is any of: CDRom, Fixed, Unknown, Network, NoRootDirectory,
  14015. Ram, Removable, or Unknown. Values are listed in the <see cref="T:System.IO.DriveType"/> enumeration.
  14016. </remarks>
  14017. </member>
  14018. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.IsReady">
  14019. <summary>Gets a value indicating whether a drive is ready.</summary>
  14020. <returns><see langword="true"/> if the drive is ready; otherwise, <see langword="false"/>.</returns>
  14021. <remarks>
  14022. IsReady indicates whether a drive is ready. For example, it indicates whether a CD is in a CD drive or whether
  14023. a removable storage device is ready for read/write operations. If you do not test whether a drive is ready, and
  14024. it is not ready, querying the drive using DriveInfo will raise an IOException.
  14025. Do not rely on IsReady() to avoid catching exceptions from other members such as TotalSize, TotalFreeSpace, and DriveFormat.
  14026. Between the time that your code checks IsReady and then accesses one of the other properties
  14027. (even if the access occurs immediately after the check), a drive may have been disconnected or a disk may have been removed.
  14028. </remarks>
  14029. </member>
  14030. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.Name">
  14031. <summary>Gets the name of the drive.</summary>
  14032. <returns>The name of the drive.</returns>
  14033. <remarks>This property is the name assigned to the drive, such as C:\ or E:\</remarks>
  14034. </member>
  14035. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.RootDirectory">
  14036. <summary>Gets the root directory of a drive.</summary>
  14037. <returns>A DirectoryInfo object that contains the root directory of the drive.</returns>
  14038. </member>
  14039. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.TotalFreeSpace">
  14040. <summary>Gets the total amount of free space available on a drive.</summary>
  14041. <returns>The total free space available on a drive, in bytes.</returns>
  14042. <remarks>This property indicates the total amount of free space available on the drive, not just what is available to the current user.</remarks>
  14043. </member>
  14044. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.TotalSize">
  14045. <summary>Gets the total size of storage space on a drive.</summary>
  14046. <returns>The total size of the drive, in bytes.</returns>
  14047. <remarks>This property indicates the total size of the drive in bytes, not just what is available to the current user.</remarks>
  14048. </member>
  14049. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.VolumeLabel">
  14050. <summary>Gets or sets the volume label of a drive.</summary>
  14051. <returns>The volume label.</returns>
  14052. <remarks>
  14053. The label length is determined by the operating system. For example, NTFS allows a volume label
  14054. to be up to 32 characters long. Note that <see langword="null"/> is a valid VolumeLabel.
  14055. </remarks>
  14056. </member>
  14057. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.DiskSpaceInfo">
  14058. <summary>[AlphaFS] Returns the <see ref="Alphaleonis.Win32.Filesystem.DiskSpaceInfo"/> instance.</summary>
  14059. </member>
  14060. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.DosDeviceName">
  14061. <summary>[AlphaFS] The MS-DOS device name.</summary>
  14062. </member>
  14063. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.IsDosDeviceSubstitute">
  14064. <summary>[AlphaFS] Indicates if this drive is a SUBST.EXE / DefineDosDevice drive mapping.</summary>
  14065. </member>
  14066. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.IsUnc">
  14067. <summary>[AlphaFS] Indicates if this drive is a UNC path.</summary>
  14068. <remarks>Only retrieve this information if we're dealing with a real network share mapping: http://alphafs.codeplex.com/discussions/316583</remarks>
  14069. </member>
  14070. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.IsVolume">
  14071. <summary>[AlphaFS] Determines whether the specified volume name is a defined volume on the current computer.</summary>
  14072. </member>
  14073. <member name="P:Alphaleonis.Win32.Filesystem.DriveInfo.VolumeInfo">
  14074. <summary>[AlphaFS] Contains information about a file-system volume.</summary>
  14075. <returns>A VolumeInfo object that contains file-system volume information of the drive.</returns>
  14076. </member>
  14077. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.GetDrives">
  14078. <summary>Retrieves the drive names of all logical drives on a computer.</summary>
  14079. <returns>An array of type <see cref="T:Alphaleonis.Win32.Filesystem.DriveInfo"/> that represents the logical drives on a computer.</returns>
  14080. </member>
  14081. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.ToString">
  14082. <summary>Returns a drive name as a string.</summary>
  14083. <returns>The name of the drive.</returns>
  14084. <remarks>This method returns the Name property.</remarks>
  14085. </member>
  14086. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.EnumerateDrives(System.Boolean,System.Boolean)">
  14087. <summary>[AlphaFS] Enumerates the drive names of all logical drives on a computer.</summary>
  14088. <param name="fromEnvironment">Retrieve logical drives as known by the Environment.</param>
  14089. <param name="isReady">Retrieve only when accessible (IsReady) logical drives.</param>
  14090. <returns>
  14091. An IEnumerable of type <see cref="T:Alphaleonis.Win32.Filesystem.DriveInfo"/> that represents
  14092. the logical drives on a computer.
  14093. </returns>
  14094. </member>
  14095. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.GetFreeDriveLetter">
  14096. <summary>[AlphaFS] Gets the first available drive letter on the local system.</summary>
  14097. <returns>A drive letter as <see cref="T:System.Char"/>. When no drive letters are available, an exception is thrown.</returns>
  14098. <remarks>The letters "A" and "B" are reserved for floppy drives and will never be returned by this function.</remarks>
  14099. </member>
  14100. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.GetFreeDriveLetter(System.Boolean)">
  14101. <summary>Gets an available drive letter on the local system.</summary>
  14102. <param name="getLastAvailable">When <see langword="true"/> get the last available drive letter. When <see langword="false"/> gets the first available drive letter.</param>
  14103. <returns>A drive letter as <see cref="T:System.Char"/>. When no drive letters are available, an exception is thrown.</returns>
  14104. <remarks>The letters "A" and "B" are reserved for floppy drives and will never be returned by this function.</remarks>
  14105. </member>
  14106. <member name="M:Alphaleonis.Win32.Filesystem.DriveInfo.GetDeviceInfo(System.Int32,System.Int32)">
  14107. <summary>Retrieves information about the file system and volume associated with the specified root file or directorystream.</summary>
  14108. </member>
  14109. <member name="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressResult">
  14110. <summary>Used by CopyFileXxx and MoveFileXxx. The <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine"/> function should return one of the following values.</summary>
  14111. </member>
  14112. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressResult.Continue">
  14113. <summary>PROGRESS_CONTINUE
  14114. <para>Continue the copy operation.</para>
  14115. </summary>
  14116. </member>
  14117. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressResult.Cancel">
  14118. <summary>PROGRESS_CANCEL
  14119. <para>Cancel the copy operation and delete the destination file.</para>
  14120. </summary>
  14121. </member>
  14122. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressResult.Stop">
  14123. <summary>PROGRESS_STOP
  14124. <para>Stop the copy operation. It can be restarted at a later time.</para>
  14125. </summary>
  14126. </member>
  14127. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressResult.Quiet">
  14128. <summary>PROGRESS_QUIET
  14129. <para>Continue the copy operation, but stop invoking <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine"/> to report progress.</para>
  14130. </summary>
  14131. </member>
  14132. <member name="T:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions">
  14133. <summary>[AlphaFS] Directory enumeration options, flags that specify how a directory is to be enumerated.</summary>
  14134. </member>
  14135. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.None">
  14136. <summary>None (do not use).</summary>
  14137. </member>
  14138. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.Files">
  14139. <summary>Enumerate files only.</summary>
  14140. </member>
  14141. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.Folders">
  14142. <summary>Enumerate directories only.</summary>
  14143. </member>
  14144. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.FilesAndFolders">
  14145. <summary>Enumerate files and directories.</summary>
  14146. </member>
  14147. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.AsLongPath">
  14148. <summary>Return full path as long full path (Unicode format), only valid when return type is <see cref="T:System.String"/>.</summary>
  14149. </member>
  14150. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.SkipReparsePoints">
  14151. <summary>Skip reparse points during directory enumeration.</summary>
  14152. </member>
  14153. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.ContinueOnException">
  14154. <summary>Suppress any Exception that might be thrown as a result from a failure, such as ACLs protected directories or non-accessible reparse points.</summary>
  14155. </member>
  14156. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.Recursive">
  14157. <summary>Specifies whether to search the current directory, or the current directory and all subdirectories.</summary>
  14158. </member>
  14159. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.BasicSearch">
  14160. <summary>Enumerates the directory without querying the short file name, improving overall enumeration speed.</summary>
  14161. <remarks>This option is enabled by default if supported. This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  14162. </member>
  14163. <member name="F:Alphaleonis.Win32.Filesystem.DirectoryEnumerationOptions.LargeCache">
  14164. <summary>Enumerates the directory using a larger buffer for directory queries, which can increase performance of the find operation.</summary>
  14165. <remarks>This option is enabled by default if supported. This value is not supported until Windows Server 2008 R2 and Windows 7.</remarks>
  14166. </member>
  14167. <member name="T:Alphaleonis.Win32.Filesystem.DeviceGuid">
  14168. <summary>System-Defined Device Interface Classes</summary>
  14169. <remarks>http://msdn.microsoft.com/en-us/library/windows/hardware/ff541389%28v=vs.85%29.aspx</remarks>
  14170. </member>
  14171. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Bus1394">
  14172. <summary>The BUS1394_CLASS_GUID device interface class is defined for 1394 bus devices.</summary>
  14173. </member>
  14174. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Guid61883">
  14175. <summary>The GUID_61883_CLASS device interface class is defined for devices in the 61883 device setup class.</summary>
  14176. </member>
  14177. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.ApplicationLaunchButton">
  14178. <summary>The GUID_DEVICE_APPLICATIONLAUNCH_BUTTON device interface class is defined for Advanced Configuration and Power Interface (ACPI) application start buttons.</summary>
  14179. </member>
  14180. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Battery">
  14181. <summary>The GUID_DEVICE_BATTERY device interface class is defined for battery devices.</summary>
  14182. </member>
  14183. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Lid">
  14184. <summary>The GUID_DEVICE_LID device interface class is defined for Advanced Configuration and Power Interface (ACPI) lid devices.</summary>
  14185. </member>
  14186. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Memory">
  14187. <summary>The GUID_DEVICE_MEMORY device interface class is defined for Advanced Configuration and Power Interface (ACPI) memory devices.</summary>
  14188. </member>
  14189. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.MessageIndicator">
  14190. <summary>The GUID_DEVICE_MESSAGE_INDICATOR device interface class is defined for Advanced Configuration and Power Interface (ACPI) message indicator devices.</summary>
  14191. </member>
  14192. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Processor">
  14193. <summary>The GUID_DEVICE_PROCESSOR device interface class is defined for Advanced Configuration and Power Interface (ACPI) processor devices.</summary>
  14194. </member>
  14195. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.SysButton">
  14196. <summary>The GUID_DEVICE_SYS_BUTTON device interface classis defined for Advanced Configuration and Power Interface (ACPI) system power button devices.</summary>
  14197. </member>
  14198. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.ThermalZone">
  14199. <summary>The GUID_DEVICE_THERMAL_ZONE device interface class is defined for Advanced Configuration and Power Interface (ACPI) thermal zone devices.</summary>
  14200. </member>
  14201. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Bluetooth">
  14202. <summary>The GUID_BTHPORT_DEVICE_INTERFACE device interface class is defined for Bluetooth radios.</summary>
  14203. </member>
  14204. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Brightness">
  14205. <summary>The GUID_DEVINTERFACE_BRIGHTNESS device interface class is defined for display adapter drivers that operate in the context of the Windows Vista Display Driver Model and support brightness control of monitor child devices.</summary>
  14206. </member>
  14207. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.DisplayAdapter">
  14208. <summary>The GUID_DEVINTERFACE_DISPLAY_ADAPTER device interface class is defined for display views that are supported by display adapters.</summary>
  14209. </member>
  14210. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.I2C">
  14211. <summary>The GUID_DEVINTERFACE_I2C device interface class is defined for display adapter drivers that operate in the context of the Windows Vista Display Driver Model and perform I2C transactions with monitor child devices.</summary>
  14212. </member>
  14213. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.StillImage">
  14214. <summary>The GUID_DEVINTERFACE_IMAGE device interface class is defined for WIA devices and Still Image (STI) devices, including digital cameras and scanners.</summary>
  14215. </member>
  14216. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Monitor">
  14217. <summary>The GUID_DEVINTERFACE_MONITOR device interface class is defined for monitor devices.</summary>
  14218. </member>
  14219. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.OutputProtectionManagement">
  14220. <summary>The GUID_DEVINTERFACE_OPM device interface class is defined for display adapter drivers that operate in the context of the Windows Vista Display Driver Model and support output protection management (OPM) for monitor child devices.</summary>
  14221. </member>
  14222. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.VideoOutputArrival">
  14223. <summary>The GUID_DEVINTERFACE_VIDEO_OUTPUT_ARRIVAL device interface class is defined for child devices of display devices.</summary>
  14224. </member>
  14225. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.DisplayDeviceArrival">
  14226. <summary>The GUID_DISPLAY_DEVICE_ARRIVAL device interface class is defined for display adapters.</summary>
  14227. </member>
  14228. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Hid">
  14229. <summary>The GUID_DEVINTERFACE_HID device interface class is defined for HID collections.</summary>
  14230. </member>
  14231. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Keyboard">
  14232. <summary>The GUID_DEVINTERFACE_KEYBOARD device interface class is defined for keyboard devices.</summary>
  14233. </member>
  14234. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Mouse">
  14235. <summary>The GUID_DEVINTERFACE_MOUSE device interface class is defined for mouse devices.</summary>
  14236. </member>
  14237. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Modem">
  14238. <summary>The GUID_DEVINTERFACE_MODEM device interface class is defined for modem devices.</summary>
  14239. </member>
  14240. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Network">
  14241. <summary>The GUID_DEVINTERFACE_NET device interface class is defined for network devices.</summary>
  14242. </member>
  14243. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.ComPort">
  14244. <summary>The GUID_DEVINTERFACE_COMPORT device interface class is defined for COM ports.</summary>
  14245. </member>
  14246. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Parallel">
  14247. <summary>The GUID_DEVINTERFACE_PARALLEL device interface class is defined for parallel ports that support an IEEE 1284-compatible hardware interface.</summary>
  14248. </member>
  14249. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.ParallelClass">
  14250. <summary>The GUID_DEVINTERFACE_PARCLASS device interface class is defined for devices that are attached to a parallel port.</summary>
  14251. </member>
  14252. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.SerialEnumBusEnumerator">
  14253. <summary>The GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR device interface class is defined for Plug and Play (PnP) serial ports.</summary>
  14254. </member>
  14255. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.CdromChanger">
  14256. <summary>The GUID_DEVINTERFACE_CDCHANGER device interface class is defined for CD-ROM changer devices.</summary>
  14257. </member>
  14258. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Cdrom">
  14259. <summary>The GUID_DEVINTERFACE_CDROM device interface class is defined for CD-ROM storage devices.</summary>
  14260. </member>
  14261. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Disk">
  14262. <summary>The GUID_DEVINTERFACE_DISK device interface class is defined for hard disk storage devices.</summary>
  14263. </member>
  14264. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Floppy">
  14265. <summary>The GUID_DEVINTERFACE_FLOPPY device interface class is defined for floppy disk storage devices.</summary>
  14266. </member>
  14267. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.MediumChanger">
  14268. <summary>The GUID_DEVINTERFACE_MEDIUMCHANGER device interface class is defined for medium changer devices.</summary>
  14269. </member>
  14270. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Partition">
  14271. <summary>The GUID_DEVINTERFACE_PARTITION device interface class is defined for partition devices.</summary>
  14272. </member>
  14273. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.StoragePort">
  14274. <summary>The GUID_DEVINTERFACE_STORAGEPORT device interface class is defined for storage port devices.</summary>
  14275. </member>
  14276. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Tape">
  14277. <summary>The GUID_DEVINTERFACE_TAPE device interface class is defined for tape storage devices.</summary>
  14278. </member>
  14279. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.Volume">
  14280. <summary>The GUID_DEVINTERFACE_VOLUME device interface class is defined for volume devices.</summary>
  14281. </member>
  14282. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.WriteOnceDisk">
  14283. <summary>The GUID_DEVINTERFACE_WRITEONCEDISK device interface class is defined for write-once disk devices.</summary>
  14284. </member>
  14285. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.UsbDevice">
  14286. <summary>The GUID_DEVINTERFACE_USB_DEVICE device interface class is defined for USB devices that are attached to a USB hub.</summary>
  14287. </member>
  14288. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.UsbHostController">
  14289. <summary>The GUID_DEVINTERFACE_USB_HOST_CONTROLLER device interface class is defined for USB host controller devices.</summary>
  14290. </member>
  14291. <member name="F:Alphaleonis.Win32.Filesystem.DeviceGuid.UsbHub">
  14292. <summary>The GUID_DEVINTERFACE_USB_HUB device interface class is defined for USB hub devices.</summary>
  14293. </member>
  14294. <member name="T:Alphaleonis.Win32.Filesystem.DosDeviceAttributes">
  14295. <summary>Defines the controllable aspects of the Volume.DefineDosDevice() method.</summary>
  14296. </member>
  14297. <member name="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.None">
  14298. <summary>DDD_EXACT_MATCH_ON_REMOVE
  14299. <para>Default.</para>
  14300. </summary>
  14301. </member>
  14302. <member name="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath">
  14303. <summary>DDD_RAW_TARGET_PATH
  14304. <para>Uses the targetPath string as is. Otherwise, it is converted from an MS-DOS path to a path.</para>
  14305. </summary>
  14306. </member>
  14307. <member name="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RemoveDefinition">
  14308. <summary>DDD_REMOVE_DEFINITION
  14309. <para>Removes the specified definition for the specified device.</para>
  14310. <para>To determine which definition to remove, the function walks the list of mappings for the device, looking for a match of targetPath against a prefix of each mapping associated with this device.</para>
  14311. <para>The first mapping that matches is the one removed, and then the function returns.</para>
  14312. <para>If targetPath is null or a pointer to a null string, the function will remove the first mapping associated with the device and pop the most recent one pushed.If there is nothing left to pop, the device name will be removed.</para>
  14313. <para>If this value is not specified, the string pointed to by the targetPath parameter will become the new mapping for this device.</para>
  14314. </summary>
  14315. </member>
  14316. <member name="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.ExactMatchOnRemove">
  14317. <summary>DDD_EXACT_MATCH_ON_REMOVE
  14318. <para>If this value is specified along with <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RemoveDefinition"/>, the function will use an exact match to determine which mapping to remove.</para>
  14319. <para>Use this value to ensure that you do not delete something that you did not define.</para>
  14320. </summary>
  14321. </member>
  14322. <member name="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.NoBroadcastSystem">
  14323. <summary>DDD_NO_BROADCAST_SYSTEM
  14324. <para>Do not broadcast the WM_SETTINGCHANGE message.</para>
  14325. <para>By default, this message is broadcast to notify the shell and applications of the change.</para>
  14326. </summary>
  14327. </member>
  14328. <member name="T:Alphaleonis.Win32.Filesystem.FinalPathFormats">
  14329. <summary>Determines the format to convert a path to using <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetFinalPathNameByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle)"/></summary>
  14330. </member>
  14331. <member name="F:Alphaleonis.Win32.Filesystem.FinalPathFormats.None">
  14332. <summary>(FileNameNormalized / VolumeNameDos) Return the normalized drive name. This is the default.</summary>
  14333. </member>
  14334. <member name="F:Alphaleonis.Win32.Filesystem.FinalPathFormats.VolumeNameGuid">
  14335. <summary>Return the path with a volume GUID path instead of the drive name.</summary>
  14336. </member>
  14337. <member name="F:Alphaleonis.Win32.Filesystem.FinalPathFormats.VolumeNameNT">
  14338. <summary>Return the path with the volume device path.</summary>
  14339. </member>
  14340. <member name="F:Alphaleonis.Win32.Filesystem.FinalPathFormats.VolumeNameNone">
  14341. <summary>Return the path with no drive information.</summary>
  14342. </member>
  14343. <member name="F:Alphaleonis.Win32.Filesystem.FinalPathFormats.FileNameOpened">
  14344. <summary>Return the opened file name (not normalized).</summary>
  14345. </member>
  14346. <member name="T:Alphaleonis.Win32.Filesystem.ReparsePointTag">
  14347. <summary>Enumeration specifying the different reparse point tags.</summary>
  14348. <remarks>
  14349. <para>Reparse tags, with the exception of IO_REPARSE_TAG_SYMLINK, are processed on the server and are not processed by a client after transmission over the wire.</para>
  14350. <para>Clients should treat associated reparse data as opaque data.</para>
  14351. </remarks>
  14352. </member>
  14353. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.None">
  14354. <summary>The entry is not a reparse point.</summary>
  14355. </member>
  14356. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.AppXStream">
  14357. <summary>IO_REPARSE_APPXSTREAM</summary>
  14358. </member>
  14359. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Csv">
  14360. <summary>IO_REPARSE_TAG_CSV</summary>
  14361. </member>
  14362. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.DriverExtender">
  14363. <summary>IO_REPARSE_TAG_DRIVER_EXTENDER
  14364. <para>Used by Home server drive extender.</para>
  14365. </summary>
  14366. </member>
  14367. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Dedup">
  14368. <summary>IO_REPARSE_TAG_DEDUP</summary>
  14369. </member>
  14370. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Dfs">
  14371. <summary>IO_REPARSE_TAG_DFS
  14372. <para>Used by the DFS filter.</para>
  14373. </summary>
  14374. </member>
  14375. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Dfsr">
  14376. <summary>IO_REPARSE_TAG_DFSR
  14377. <para>Used by the DFS filter.</para>
  14378. </summary>
  14379. </member>
  14380. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.FilterManager">
  14381. <summary>IO_REPARSE_TAG_FILTER_MANAGER
  14382. <para>Used by filter manager test harness.</para>
  14383. </summary>
  14384. </member>
  14385. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Hsm">
  14386. <summary>IO_REPARSE_TAG_HSM
  14387. <para>(Obsolete) Used by legacy Hierarchical Storage Manager Product.</para>
  14388. </summary>
  14389. </member>
  14390. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Hsm2">
  14391. <summary>IO_REPARSE_TAG_HSM2
  14392. <para>(Obsolete) Used by legacy Hierarchical Storage Manager Product.</para>
  14393. </summary>
  14394. </member>
  14395. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Nfs">
  14396. <summary>IO_REPARSE_TAG_NFS
  14397. <para>NFS symlinks, Windows 8 / SMB3 and later.</para>
  14398. </summary>
  14399. </member>
  14400. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.MountPoint">
  14401. <summary>IO_REPARSE_TAG_MOUNT_POINT
  14402. <para>Used for mount point support.</para>
  14403. </summary>
  14404. </member>
  14405. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Sis">
  14406. <summary>IO_REPARSE_TAG_SIS
  14407. <para>Used by single-instance storage (SIS) filter driver.</para>
  14408. </summary>
  14409. </member>
  14410. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.SymLink">
  14411. <summary>IO_REPARSE_TAG_SYMLINK
  14412. <para>Used for symbolic link support.</para>
  14413. </summary>
  14414. </member>
  14415. <member name="F:Alphaleonis.Win32.Filesystem.ReparsePointTag.Wim">
  14416. <summary>IO_REPARSE_TAG_WIM</summary>
  14417. </member>
  14418. <member name="T:Alphaleonis.Win32.Filesystem.StreamAttributes">
  14419. <summary>WIN32_STREAM_ID Attributes of data to facilitate cross-operating system transfer.</summary>
  14420. </member>
  14421. <member name="F:Alphaleonis.Win32.Filesystem.StreamAttributes.None">
  14422. <summary>STREAM_NORMAL_ATTRIBUTE
  14423. <para>This backup stream has no special attributes.</para>
  14424. </summary>
  14425. </member>
  14426. <member name="F:Alphaleonis.Win32.Filesystem.StreamAttributes.ModifiedWhenRead">
  14427. <summary>STREAM_MODIFIED_WHEN_READ
  14428. <para>Attribute set if the stream contains data that is modified when read.</para>
  14429. <para>Allows the backup application to know that verification of data will fail.</para>
  14430. </summary>
  14431. </member>
  14432. <member name="F:Alphaleonis.Win32.Filesystem.StreamAttributes.ContainsSecurity">
  14433. <summary>STREAM_CONTAINS_SECURITY
  14434. <para>The backup stream contains security information.</para>
  14435. <para>This attribute applies only to backup stream of type <see cref="F:Alphaleonis.Win32.Filesystem.BackupStreamType.SecurityData"/>.</para>
  14436. </summary>
  14437. </member>
  14438. <member name="F:Alphaleonis.Win32.Filesystem.StreamAttributes.ContainsProperties">
  14439. <summary>Reserved.</summary>
  14440. </member>
  14441. <member name="F:Alphaleonis.Win32.Filesystem.StreamAttributes.Sparse">
  14442. <summary>STREAM_SPARSE_ATTRIBUTE
  14443. <para>The backup stream is part of a sparse file stream.</para>
  14444. <para>This attribute applies only to backup stream of type <see cref="F:Alphaleonis.Win32.Filesystem.BackupStreamType.Data"/>, <see cref="F:Alphaleonis.Win32.Filesystem.BackupStreamType.AlternateData"/>, and <see cref="F:Alphaleonis.Win32.Filesystem.BackupStreamType.SparseBlock"/>.</para>
  14445. </summary>
  14446. </member>
  14447. <member name="T:Alphaleonis.Win32.Filesystem.BackupStreamType">
  14448. <summary>The type of the data contained in the backup stream.</summary>
  14449. </member>
  14450. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.None">
  14451. <summary>This indicates an error.</summary>
  14452. </member>
  14453. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.Data">
  14454. <summary>BACKUP_DATA
  14455. <para>Standard data. This corresponds to the NTFS $DATA stream type on the default (unnamed) data stream.</para>
  14456. </summary>
  14457. </member>
  14458. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.ExtendedAttributesData">
  14459. <summary>BACKUP_EA_DATA
  14460. <para>Extended attribute data. This corresponds to the NTFS $EA stream type.</para>
  14461. </summary>
  14462. </member>
  14463. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.SecurityData">
  14464. <summary>BACKUP_SECURITY_DATA
  14465. <para>Security descriptor data.</para>
  14466. </summary>
  14467. </member>
  14468. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.AlternateData">
  14469. <summary>BACKUP_ALTERNATE_DATA
  14470. <para>Alternative data streams. This corresponds to the NTFS $DATA stream type on a named data stream.</para>
  14471. </summary>
  14472. </member>
  14473. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.Link">
  14474. <summary>BACKUP_LINK
  14475. <para>Hard link information. This corresponds to the NTFS $FILE_NAME stream type.</para>
  14476. </summary>
  14477. </member>
  14478. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.PropertyData">
  14479. <summary>BACKUP_PROPERTY_DATA
  14480. <para>Property data.</para>
  14481. </summary>
  14482. </member>
  14483. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.ObjectId">
  14484. <summary>BACKUP_OBJECT_ID
  14485. <para>Objects identifiers. This corresponds to the NTFS $OBJECT_ID stream type.</para>
  14486. </summary>
  14487. </member>
  14488. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.ReparseData">
  14489. <summary>BACKUP_REPARSE_DATA
  14490. <para>Reparse points. This corresponds to the NTFS $REPARSE_POINT stream type.</para>
  14491. </summary>
  14492. </member>
  14493. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.SparseBlock">
  14494. <summary>BACKUP_SPARSE_BLOCK
  14495. <para>Sparse file. This corresponds to the NTFS $DATA stream type for a sparse file.</para>
  14496. </summary>
  14497. </member>
  14498. <member name="F:Alphaleonis.Win32.Filesystem.BackupStreamType.TxfsData">
  14499. <summary>BACKUP_TXFS_DATA
  14500. <para>Transactional NTFS (TxF) data stream.</para>
  14501. </summary>
  14502. <remarks>Windows Server 2003 and Windows XP: This value is not supported.</remarks>
  14503. </member>
  14504. <member name="T:Alphaleonis.Win32.Filesystem.CopyOptions">
  14505. <summary>Flags that specify how a file or directory is to be copied.</summary>
  14506. </member>
  14507. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.None">
  14508. <summary>No CopyOptions used, this allows overwriting the file.</summary>
  14509. </member>
  14510. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.FailIfExists">
  14511. <summary>COPY_FILE_FAIL_IF_EXISTS
  14512. <para>The copy operation fails immediately if the target file already exists.</para>
  14513. </summary>
  14514. </member>
  14515. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.Restartable">
  14516. <summary>COPY_FILE_RESTARTABLE
  14517. <para>
  14518. Progress of the copy is tracked in the target file in case the copy fails. The failed copy can be restarted at a later time by specifying the same values
  14519. forexisting file name and new file name as those used in the call that failed. This can significantly slow down the copy operation as the new file may be
  14520. flushed multiple times during the copy operation.
  14521. </para>
  14522. </summary>
  14523. </member>
  14524. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.OpenSourceForWrite">
  14525. <summary>COPY_FILE_OPEN_SOURCE_FOR_WRITE
  14526. <para>The file is copied and the original file is opened for write access.</para>
  14527. </summary>
  14528. </member>
  14529. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.AllowDecryptedDestination">
  14530. <summary>COPY_FILE_ALLOW_DECRYPTED_DESTINATION
  14531. <para>An attempt to copy an encrypted file will succeed even if the destination copy cannot be encrypted.</para>
  14532. </summary>
  14533. </member>
  14534. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.CopySymbolicLink">
  14535. <summary>COPY_FILE_COPY_SYMLINK
  14536. <para>If the source file is a symbolic link, the destination file is also a symbolic link pointing to the same file that the source symbolic link is pointing to.</para>
  14537. </summary>
  14538. </member>
  14539. <member name="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering">
  14540. <summary>COPY_FILE_NO_BUFFERING
  14541. <para>The copy operation is performed using unbuffered I/O, bypassing system I/O cache resources. Recommended for very large file transfers.</para>
  14542. </summary>
  14543. </member>
  14544. <member name="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressCallbackReason">
  14545. <summary>Used by CopyFileXxx and MoveFileXxx. The reason that <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine"/> was called.</summary>
  14546. </member>
  14547. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressCallbackReason.ChunkFinished">
  14548. <summary>CALLBACK_CHUNK_FINISHED
  14549. <para>Another part of the data file was copied.</para>
  14550. </summary>
  14551. </member>
  14552. <member name="F:Alphaleonis.Win32.Filesystem.CopyMoveProgressCallbackReason.StreamSwitch">
  14553. <summary>CALLBACK_STREAM_SWITCH
  14554. <para>Another stream was created and is about to be copied. This is the callback reason given when the callback routine is first invoked.</para>
  14555. </summary>
  14556. </member>
  14557. <member name="T:Alphaleonis.Win32.Filesystem.Device">
  14558. <summary>Provides static methods to retrieve device resource information from a local or remote host.</summary>
  14559. </member>
  14560. <member name="M:Alphaleonis.Win32.Filesystem.Device.EnumerateDevices(Alphaleonis.Win32.Filesystem.DeviceGuid)">
  14561. <summary>Enumerates all available devices on the local host.</summary>
  14562. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> instances of type <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> from the local host.</returns>
  14563. <param name="deviceGuid">One of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> devices.</param>
  14564. </member>
  14565. <member name="M:Alphaleonis.Win32.Filesystem.Device.EnumerateDevices(System.String,Alphaleonis.Win32.Filesystem.DeviceGuid)">
  14566. <summary>Enumerates all available devices of type <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> on the local or remote host.</summary>
  14567. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> instances of type <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> for the specified <paramref name="hostName"/>.</returns>
  14568. <param name="hostName">The name of the local or remote host on which the device resides. <see langword="null"/> refers to the local host.</param>
  14569. <param name="deviceGuid">One of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> devices.</param>
  14570. </member>
  14571. <member name="M:Alphaleonis.Win32.Filesystem.Device.EnumerateDevicesCore(System.Runtime.InteropServices.SafeHandle,System.String,Alphaleonis.Win32.Filesystem.DeviceGuid)">
  14572. <summary>Enumerates all available devices on the local or remote host.</summary>
  14573. </member>
  14574. <member name="M:Alphaleonis.Win32.Filesystem.Device.GetLinkTargetInfoCore(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  14575. <summary>Get information about the target of a mount point or symbolic link on an NTFS file system.</summary>
  14576. </member>
  14577. <member name="M:Alphaleonis.Win32.Filesystem.Device.ToggleCompressionCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  14578. <summary>Sets the NTFS compression state of a file or directory on a volume whose file system supports per-file and per-directory compression.</summary>
  14579. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  14580. <param name="transaction">The transaction.</param>
  14581. <param name="path">A path that describes a folder or file to compress or decompress.</param>
  14582. <param name="compress"><see langword="true"/> = compress, <see langword="false"/> = decompress</param>
  14583. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  14584. </member>
  14585. <member name="M:Alphaleonis.Win32.Filesystem.Device.CreateDeviceInfoDataInstance">
  14586. <summary>Builds a DeviceInfo Data structure.</summary>
  14587. <returns>An initialized NativeMethods.SP_DEVINFO_DATA instance.</returns>
  14588. </member>
  14589. <member name="M:Alphaleonis.Win32.Filesystem.Device.CreateDeviceInterfaceDataInstance">
  14590. <summary>Builds a Device Interface Data structure.</summary>
  14591. <returns>An initialized NativeMethods.SP_DEVICE_INTERFACE_DATA instance.</returns>
  14592. </member>
  14593. <member name="M:Alphaleonis.Win32.Filesystem.Device.GetDeviceInterfaceDetailDataInstance(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVICE_INTERFACE_DATA,Alphaleonis.Win32.Filesystem.NativeMethods.SP_DEVINFO_DATA)">
  14594. <summary>Builds a Device Interface Detail Data structure.</summary>
  14595. <returns>An initialized NativeMethods.SP_DEVICE_INTERFACE_DETAIL_DATA instance.</returns>
  14596. </member>
  14597. <member name="M:Alphaleonis.Win32.Filesystem.Device.InvokeIoControlUnknownSize``1(Microsoft.Win32.SafeHandles.SafeFileHandle,System.UInt32,``0,System.UInt32)">
  14598. <summary>Repeatedly invokes InvokeIoControl with the specified input until enough memory has been allocated.</summary>
  14599. </member>
  14600. <member name="T:Alphaleonis.Win32.Filesystem.BackupFileStream">
  14601. <summary>The <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> provides access to data associated with a specific file or directory, including security information and alternative data streams, for backup and restore operations.</summary>
  14602. <remarks>This class uses the <see href="http://msdn.microsoft.com/en-us/library/aa362509(VS.85).aspx">BackupRead</see>,
  14603. <see href="http://msdn.microsoft.com/en-us/library/aa362510(VS.85).aspx">BackupSeek</see> and
  14604. <see href="http://msdn.microsoft.com/en-us/library/aa362511(VS.85).aspx">BackupWrite</see> functions from the Win32 API to provide access to the file or directory.
  14605. </remarks>
  14606. </member>
  14607. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(System.String,System.IO.FileMode)">
  14608. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path and creation mode.</summary>
  14609. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14610. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14611. <remarks>The file will be opened for exclusive access for both reading and writing.</remarks>
  14612. </member>
  14613. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights)">
  14614. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode and access rights.</summary>
  14615. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14616. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14617. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14618. <remarks>The file will be opened for exclusive access.</remarks>
  14619. </member>
  14620. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare)">
  14621. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission.</summary>
  14622. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14623. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14624. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14625. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14626. </member>
  14627. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  14628. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission, and additional file attributes.</summary>
  14629. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14630. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14631. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14632. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14633. <param name="attributes">A <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> constant that specifies additional file attributes.</param>
  14634. </member>
  14635. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity)">
  14636. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission, additional file attributes, access control and audit security.</summary>
  14637. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14638. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14639. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14640. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14641. <param name="attributes">A <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> constant that specifies additional file attributes.</param>
  14642. <param name="security">A <see cref="T:System.Security.AccessControl.FileSecurity"/> constant that determines the access control and audit security for the file. This parameter This parameter may be <see langword="null"/>.</param>
  14643. </member>
  14644. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode)">
  14645. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path and creation mode.</summary>
  14646. <param name="transaction">The transaction.</param>
  14647. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14648. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14649. <remarks>The file will be opened for exclusive access for both reading and writing.</remarks>
  14650. </member>
  14651. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights)">
  14652. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode and access rights.</summary>
  14653. <param name="transaction">The transaction.</param>
  14654. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14655. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14656. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14657. <remarks>The file will be opened for exclusive access.</remarks>
  14658. </member>
  14659. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare)">
  14660. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission.</summary>
  14661. <param name="transaction">The transaction.</param>
  14662. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14663. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14664. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14665. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14666. </member>
  14667. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes)">
  14668. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission, and additional file attributes.</summary>
  14669. <param name="transaction">The transaction.</param>
  14670. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14671. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14672. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14673. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14674. <param name="attributes">A <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> constant that specifies additional file attributes.</param>
  14675. </member>
  14676. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,Alphaleonis.Win32.Filesystem.ExtendedFileAttributes,System.Security.AccessControl.FileSecurity)">
  14677. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class with the specified path, creation mode, access rights and sharing permission, additional file attributes, access control and audit security.</summary>
  14678. <param name="transaction">The transaction.</param>
  14679. <param name="path">A relative or absolute path for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14680. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant that determines how to open or create the file.</param>
  14681. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that determines the access rights to use when creating access and audit rules for the file.</param>
  14682. <param name="share">A <see cref="T:System.IO.FileShare"/> constant that determines how the file will be shared by processes.</param>
  14683. <param name="attributes">A <see cref="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes"/> constant that specifies additional file attributes.</param>
  14684. <param name="security">A <see cref="T:System.Security.AccessControl.FileSecurity"/> constant that determines the access control and audit security for the file. This parameter This parameter may be <see langword="null"/>.</param>
  14685. </member>
  14686. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Security.AccessControl.FileSystemRights)">
  14687. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class for the specified file handle, with the specified read/write permission.</summary>
  14688. <param name="handle">A file handle for the file that this <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object will encapsulate.</param>
  14689. <param name="access">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> constant that gets the <see cref="P:Alphaleonis.Win32.Filesystem.BackupFileStream.CanRead"/> and <see cref="P:Alphaleonis.Win32.Filesystem.BackupFileStream.CanWrite"/> properties of the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object.</param>
  14690. </member>
  14691. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.Length">
  14692. <summary>When overridden in a derived class, gets the length in bytes of the stream.</summary>
  14693. <value>This method always throws an exception.</value>
  14694. <exception cref="T:System.NotSupportedException"/>
  14695. </member>
  14696. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.Position">
  14697. <summary>When overridden in a derived class, gets or sets the position within the current stream.</summary>
  14698. <value>This method always throws an exception.</value>
  14699. <exception cref="T:System.NotSupportedException"/>
  14700. </member>
  14701. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Seek(System.Int64,System.IO.SeekOrigin)">
  14702. <summary>When overridden in a derived class, sets the position within the current stream.</summary>
  14703. <param name="offset">A byte offset relative to the <paramref name="origin"/> parameter.</param>
  14704. <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"/> indicating the reference point used to obtain the new position.</param>
  14705. <returns>The new position within the current stream.</returns>
  14706. <remarks><para><note><para>This stream does not support seeking using this method, and calling this method will always throw <see cref="T:System.NotSupportedException"/>. See <see cref="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Skip(System.Int64)"/> for an alternative way of seeking forward.</para></note></para></remarks>
  14707. <exception cref="T:System.NotSupportedException"/>
  14708. </member>
  14709. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.SetLength(System.Int64)">
  14710. <summary>When overridden in a derived class, sets the length of the current stream.</summary>
  14711. <param name="value">The desired length of the current stream in bytes.</param>
  14712. <remarks>This method is not supported by the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> class, and calling it will always generate a <see cref="T:System.NotSupportedException"/>.</remarks>
  14713. <exception cref="T:System.NotSupportedException"/>
  14714. </member>
  14715. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.CanRead">
  14716. <summary>Gets a value indicating whether the current stream supports reading.</summary>
  14717. <returns><see langword="true"/> if the stream supports reading, <see langword="false"/> otherwise.</returns>
  14718. </member>
  14719. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.CanSeek">
  14720. <summary>Gets a value indicating whether the current stream supports seeking.</summary>
  14721. <returns>This method always returns <see langword="false"/>.</returns>
  14722. </member>
  14723. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.CanWrite">
  14724. <summary>Gets a value indicating whether the current stream supports writing.</summary>
  14725. <returns><see langword="true"/> if the stream supports writing, <see langword="false"/> otherwise.</returns>
  14726. </member>
  14727. <member name="P:Alphaleonis.Win32.Filesystem.BackupFileStream.SafeFileHandle">
  14728. <summary>Gets a <see cref="P:Alphaleonis.Win32.Filesystem.BackupFileStream.SafeFileHandle"/> object that represents the operating system file handle for the file that the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object encapsulates.</summary>
  14729. <value>A <see cref="P:Alphaleonis.Win32.Filesystem.BackupFileStream.SafeFileHandle"/> object that represents the operating system file handle for the file that
  14730. the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object encapsulates.</value>
  14731. </member>
  14732. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Read(System.Byte[],System.Int32,System.Int32)">
  14733. <summary>Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
  14734. <remarks>This method will not backup the access-control list (ACL) data for the file or directory.</remarks>
  14735. <param name="buffer">
  14736. An array of bytes. When this method returns, the buffer contains the specified byte array with the values between
  14737. <paramref name="offset"/> and (<paramref name="offset"/> + <paramref name="count"/> - 1) replaced by the bytes read from the
  14738. current source.
  14739. </param>
  14740. <param name="offset">
  14741. The zero-based byte offset in <paramref name="buffer"/> at which to begin storing the data read from the current stream.
  14742. </param>
  14743. <param name="count">The maximum number of bytes to be read from the current stream.</param>
  14744. <returns>
  14745. The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not
  14746. currently available, or zero (0) if the end of the stream has been reached.
  14747. </returns>
  14748. <exception cref="T:System.ArgumentException"/>
  14749. <exception cref="T:System.ArgumentNullException"/>
  14750. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14751. <exception cref="T:System.NotSupportedException"/>
  14752. <exception cref="T:System.ObjectDisposedException"/>
  14753. </member>
  14754. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Read(System.Byte[],System.Int32,System.Int32,System.Boolean)">
  14755. <summary>When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
  14756. <param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values
  14757. between <paramref name="offset"/> and (<paramref name="offset"/> + <paramref name="count"/> - 1) replaced by the bytes read from the current source.</param>
  14758. <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin storing the data read from the current stream.</param>
  14759. <param name="count">The maximum number of bytes to be read from the current stream.</param>
  14760. <param name="processSecurity">Indicates whether the function will backup the access-control list (ACL) data for the file or directory.</param>
  14761. <returns>
  14762. The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not
  14763. currently available, or zero (0) if the end of the stream has been reached.
  14764. </returns>
  14765. <exception cref="T:System.ArgumentException"/>
  14766. <exception cref="T:System.ArgumentNullException"/>
  14767. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14768. <exception cref="T:System.NotSupportedException"/>
  14769. <exception cref="T:System.ObjectDisposedException"/>
  14770. </member>
  14771. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Write(System.Byte[],System.Int32,System.Int32)">
  14772. <summary>Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.</summary>
  14773. <overloads>
  14774. Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
  14775. </overloads>
  14776. <param name="buffer">An array of bytes. This method copies <paramref name="count"/> bytes from <paramref name="buffer"/> to the current stream.</param>
  14777. <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin copying bytes to the current stream.</param>
  14778. <param name="count">The number of bytes to be written to the current stream.</param>
  14779. <exception cref="T:System.ArgumentException"/>
  14780. <exception cref="T:System.ArgumentNullException"/>
  14781. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14782. <exception cref="T:System.NotSupportedException"/>
  14783. <exception cref="T:System.ObjectDisposedException"/>
  14784. <remarks>This method will not process the access-control list (ACL) data for the file or directory.</remarks>
  14785. </member>
  14786. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Write(System.Byte[],System.Int32,System.Int32,System.Boolean)">
  14787. <summary>When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.</summary>
  14788. <param name="buffer">An array of bytes. This method copies <paramref name="count"/> bytes from <paramref name="buffer"/> to the current stream.</param>
  14789. <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin copying bytes to the current stream.</param>
  14790. <param name="count">The number of bytes to be written to the current stream.</param>
  14791. <param name="processSecurity">Specifies whether the function will restore the access-control list (ACL) data for the file or directory.
  14792. If this is <see langword="true"/> you need to specify <see cref="F:System.Security.AccessControl.FileSystemRights.TakeOwnership"/> and <see cref="F:System.Security.AccessControl.FileSystemRights.ChangePermissions"/> access when
  14793. opening the file or directory handle. If the handle does not have those access rights, the operating system denies
  14794. access to the ACL data, and ACL data restoration will not occur.</param>
  14795. <exception cref="T:System.ArgumentException"/>
  14796. <exception cref="T:System.ArgumentNullException"/>
  14797. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14798. <exception cref="T:System.NotSupportedException"/>
  14799. <exception cref="T:System.ObjectDisposedException"/>
  14800. </member>
  14801. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Flush">
  14802. <summary>Clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
  14803. </member>
  14804. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Skip(System.Int64)">
  14805. <summary>Skips ahead the specified number of bytes from the current stream.</summary>
  14806. <remarks><para>This method represents the Win32 API implementation of <see href="http://msdn.microsoft.com/en-us/library/aa362509(VS.85).aspx">BackupSeek</see>.</para>
  14807. <para>
  14808. Applications use the <see cref="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Skip(System.Int64)"/> method to skip portions of a data stream that cause errors. This function does not
  14809. seek across stream headers. For example, this function cannot be used to skip the stream name. If an application
  14810. attempts to seek past the end of a substream, the function fails, the return value indicates the actual number of bytes
  14811. the function seeks, and the file position is placed at the start of the next stream header.
  14812. </para>
  14813. </remarks>
  14814. <param name="bytes">The number of bytes to skip.</param>
  14815. <returns>The number of bytes actually skipped.</returns>
  14816. </member>
  14817. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.GetAccessControl">
  14818. <summary>Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object.</summary>
  14819. <exception cref="T:System.IO.IOException"/>
  14820. <returns>
  14821. A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for the file described by the current
  14822. <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object.
  14823. </returns>
  14824. </member>
  14825. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.SetAccessControl(System.Security.AccessControl.ObjectSecurity)">
  14826. <summary>Applies access control list (ACL) entries described by a <see cref="T:System.Security.AccessControl.FileSecurity"/> object to the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> object.</summary>
  14827. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an ACL entry to apply to the current file.</param>
  14828. </member>
  14829. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Lock(System.Int64,System.Int64)">
  14830. <summary>Prevents other processes from changing the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> while permitting read access.</summary>
  14831. <param name="position">The beginning of the range to lock. The value of this parameter must be equal to or greater than zero (0).</param>
  14832. <param name="length">The range to be locked.</param>
  14833. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14834. <exception cref="T:System.ObjectDisposedException"/>
  14835. </member>
  14836. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Unlock(System.Int64,System.Int64)">
  14837. <summary>Allows access by other processes to all or part of a file that was previously locked.</summary>
  14838. <param name="position">The beginning of the range to unlock.</param>
  14839. <param name="length">The range to be unlocked.</param>
  14840. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14841. <exception cref="T:System.ArgumentOutOfRangeException"/>
  14842. <exception cref="T:System.ObjectDisposedException"/>
  14843. </member>
  14844. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.ReadStreamInfo">
  14845. <summary>Reads a stream header from the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/>.</summary>
  14846. <returns>The stream header read from the current <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/>, or <see langword="null"/> if the end-of-file
  14847. was reached before the required number of bytes of a header could be read.</returns>
  14848. <exception cref="T:System.IO.IOException"/>
  14849. <remarks>The stream must be positioned at where an actual header starts for the returned object to represent valid
  14850. information.</remarks>
  14851. </member>
  14852. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Dispose(System.Boolean)">
  14853. <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Stream"/> and optionally releases the managed resources.</summary>
  14854. <param name="disposing"><see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.</param>
  14855. </member>
  14856. <member name="M:Alphaleonis.Win32.Filesystem.BackupFileStream.Finalize">
  14857. <summary>Releases unmanaged resources and performs other cleanup operations before the <see cref="T:Alphaleonis.Win32.Filesystem.BackupFileStream"/> is reclaimed by garbage collection.</summary>
  14858. </member>
  14859. <member name="T:Alphaleonis.Win32.Filesystem.FileEncryptionStatus">
  14860. <summary>Represents the encryption status of the specified file.</summary>
  14861. </member>
  14862. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.Encryptable">
  14863. <summary>The file can be encrypted.</summary>
  14864. </member>
  14865. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.Encrypted">
  14866. <summary>The file is encrypted.</summary>
  14867. </member>
  14868. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.SystemFile">
  14869. <summary>The file is a system file. System files cannot be encrypted.</summary>
  14870. </member>
  14871. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.RootDirectory">
  14872. <summary>The file is a root directory. Root directories cannot be encrypted.</summary>
  14873. </member>
  14874. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.SystemDirectory">
  14875. <summary>The file is a system directory. System directories cannot be encrypted.</summary>
  14876. </member>
  14877. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.Unknown">
  14878. <summary>The encryption status is unknown. The file may be encrypted.</summary>
  14879. </member>
  14880. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.NoFilesystemSupport">
  14881. <summary>The file system does not support file encryption.</summary>
  14882. </member>
  14883. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.UserDisallowed">
  14884. <summary>Reserved for future use.</summary>
  14885. </member>
  14886. <member name="F:Alphaleonis.Win32.Filesystem.FileEncryptionStatus.ReadOnly">
  14887. <summary>The file is a read-only file.</summary>
  14888. </member>
  14889. <member name="T:Alphaleonis.Win32.Filesystem.ByHandleFileInfo">
  14890. <summary>Contains information that the GetFileInformationByHandle function retrieves.</summary>
  14891. </member>
  14892. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.Attributes">
  14893. <summary>Gets the file attributes.</summary>
  14894. <value>The file attributes.</value>
  14895. </member>
  14896. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.CreationTime">
  14897. <summary>Gets the time this entry was created.</summary>
  14898. <value>The time this entry was created.</value>
  14899. </member>
  14900. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.CreationTimeUtc">
  14901. <summary>Gets the time, in coordinated universal time (UTC), this entry was created.</summary>
  14902. <value>The time, in coordinated universal time (UTC), this entry was created.</value>
  14903. </member>
  14904. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.LastAccessTime">
  14905. <summary>Gets the time this entry was last accessed.
  14906. For a file, the structure specifies the last time that a file is read from or written to.
  14907. For a directory, the structure specifies when the directory is created.
  14908. For both files and directories, the specified date is correct, but the time of day is always set to midnight.
  14909. If the underlying file system does not support the last access time, this member is zero (0).
  14910. </summary>
  14911. <value>The time this entry was last accessed.</value>
  14912. </member>
  14913. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.LastAccessTimeUtc">
  14914. <summary>Gets the time, in coordinated universal time (UTC), this entry was last accessed.
  14915. For a file, the structure specifies the last time that a file is read from or written to.
  14916. For a directory, the structure specifies when the directory is created.
  14917. For both files and directories, the specified date is correct, but the time of day is always set to midnight.
  14918. If the underlying file system does not support the last access time, this member is zero (0).
  14919. </summary>
  14920. <value>The time, in coordinated universal time (UTC), this entry was last accessed.</value>
  14921. </member>
  14922. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.LastWriteTime">
  14923. <summary>Gets the time this entry was last modified.
  14924. For a file, the structure specifies the last time that a file is written to.
  14925. For a directory, the structure specifies when the directory is created.
  14926. If the underlying file system does not support the last access time, this member is zero (0).
  14927. </summary>
  14928. <value>The time this entry was last modified.</value>
  14929. </member>
  14930. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.LastWriteTimeUtc">
  14931. <summary>Gets the time, in coordinated universal time (UTC), this entry was last modified.
  14932. For a file, the structure specifies the last time that a file is written to.
  14933. For a directory, the structure specifies when the directory is created.
  14934. If the underlying file system does not support the last access time, this member is zero (0).
  14935. </summary>
  14936. <value>The time, in coordinated universal time (UTC), this entry was last modified.</value>
  14937. </member>
  14938. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.VolumeSerialNumber">
  14939. <summary>Gets the serial number of the volume that contains a file.</summary>
  14940. <value>The serial number of the volume that contains a file.</value>
  14941. </member>
  14942. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.FileSize">
  14943. <summary>Gets the size of the file.</summary>
  14944. <value>The size of the file.</value>
  14945. </member>
  14946. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.NumberOfLinks">
  14947. <summary>Gets the number of links to this file. For the FAT file system this member is always 1. For the NTFS file system, it can be more than 1.</summary>
  14948. <value>The number of links to this file. </value>
  14949. </member>
  14950. <member name="P:Alphaleonis.Win32.Filesystem.ByHandleFileInfo.FileIndex">
  14951. <summary>
  14952. Gets the unique identifier associated with the file. The identifier and the volume serial number uniquely identify a
  14953. file on a single computer. To determine whether two open handles represent the same file, combine the identifier
  14954. and the volume serial number for each file and compare them.
  14955. </summary>
  14956. <value>The unique identifier of the file.</value>
  14957. </member>
  14958. <member name="T:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo">
  14959. <summary>Contains information about files in the specified directory. Used for directory handles.</summary>
  14960. </member>
  14961. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.AllocationSize">
  14962. <summary>The number of bytes that are allocated for the file. This value is usually a multiple of the sector or cluster size of the underlying physical device.</summary>
  14963. </member>
  14964. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.ChangeTime">
  14965. <summary>Gets the time this entry was changed.</summary>
  14966. <value>The time this entry was changed.</value>
  14967. </member>
  14968. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.ChangeTimeUtc">
  14969. <summary>Gets the time, in coordinated universal time (UTC), this entry was changed.</summary>
  14970. <value>The time, in coordinated universal time (UTC), this entry was changed.</value>
  14971. </member>
  14972. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.CreationTime">
  14973. <summary>Gets the time this entry was created.</summary>
  14974. <value>The time this entry was created.</value>
  14975. </member>
  14976. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.CreationTimeUtc">
  14977. <summary>Gets the time, in coordinated universal time (UTC), this entry was created.</summary>
  14978. <value>The time, in coordinated universal time (UTC), this entry was created.</value>
  14979. </member>
  14980. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.ExtendedAttributesSize">
  14981. <summary>The size of the extended attributes for the file.</summary>
  14982. </member>
  14983. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.EndOfFile">
  14984. <summary>The absolute new end-of-file position as a byte offset from the start of the file to the end of the file.
  14985. Because this value is zero-based, it actually refers to the first free byte in the file. In other words, <b>EndOfFile</b> is the offset to
  14986. the byte that immediately follows the last valid byte in the file.
  14987. </summary>
  14988. </member>
  14989. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.FileAttributes">
  14990. <summary>The file attributes.</summary>
  14991. </member>
  14992. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.FileId">
  14993. <summary>The file ID.</summary>
  14994. </member>
  14995. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.FileIndex">
  14996. <summary>The byte offset of the file within the parent directory. This member is undefined for file systems, such as NTFS,
  14997. in which the position of a file within the parent directory is not fixed and can be changed at any time to maintain sort order.
  14998. </summary>
  14999. </member>
  15000. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.FileName">
  15001. <summary>The name of the file.</summary>
  15002. </member>
  15003. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.LastAccessTime">
  15004. <summary>Gets the time this entry was last accessed.</summary>
  15005. <value>The time this entry was last accessed.</value>
  15006. </member>
  15007. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.LastAccessTimeUtc">
  15008. <summary>Gets the time, in coordinated universal time (UTC), this entry was last accessed.</summary>
  15009. <value>The time, in coordinated universal time (UTC), this entry was last accessed.</value>
  15010. </member>
  15011. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.LastWriteTime">
  15012. <summary>Gets the time this entry was last modified.</summary>
  15013. <value>The time this entry was last modified.</value>
  15014. </member>
  15015. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.LastWriteTimeUtc">
  15016. <summary>Gets the time, in coordinated universal time (UTC), this entry was last modified.</summary>
  15017. <value>The time, in coordinated universal time (UTC), this entry was last modified.</value>
  15018. </member>
  15019. <member name="P:Alphaleonis.Win32.Filesystem.FileIdBothDirectoryInfo.ShortName">
  15020. <summary>The short 8.3 file naming convention (for example, FILENAME.TXT) name of the file.</summary>
  15021. </member>
  15022. <member name="T:Alphaleonis.Win32.Filesystem.FileInfo">
  15023. <summary>Provides properties and instance methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of <see cref="T:System.IO.FileStream"/> objects. This class cannot be inherited.</summary>
  15024. </member>
  15025. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.GetHash(Alphaleonis.Win32.Security.HashType)">
  15026. <summary>[AlphaFS] Calculates the hash/checksum.</summary>
  15027. <param name="hashType">One of the <see cref="T:Alphaleonis.Win32.Security.HashType"/> values.</param>
  15028. </member>
  15029. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.RefreshEntryInfo">
  15030. <summary>Refreshes the state of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> EntryInfo instance.</summary>
  15031. </member>
  15032. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.EnumerateAlternateDataStreams">
  15033. <summary>[AlphaFS] Returns an enumerable collection of <see cref="T:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo"/> instances for the file.</summary>
  15034. <returns>An enumerable collection of <see cref="T:Alphaleonis.Win32.Filesystem.AlternateDataStreamInfo"/> instances for the file.</returns>
  15035. </member>
  15036. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Decompress">
  15037. <summary>[AlphaFS] Decompresses an NTFS compressed file.</summary>
  15038. </member>
  15039. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Compress">
  15040. <summary>[AlphaFS] Compresses a file using NTFS compression.</summary>
  15041. </member>
  15042. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.ToString">
  15043. <summary>Returns the path as a string.</summary>
  15044. <returns>The path.</returns>
  15045. </member>
  15046. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.SetAccessControl(System.Security.AccessControl.FileSecurity)">
  15047. <summary>Applies access control list (ACL) entries described by a FileSecurity object to the file described by the current FileInfo object.</summary>
  15048. <remarks>
  15049. The SetAccessControl method applies access control list (ACL) entries to the current file that represents the noninherited ACL
  15050. list. Use the SetAccessControl method whenever you need to add or remove ACL entries from a file.
  15051. </remarks>
  15052. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an access control list (ACL) entry to apply to the current file.</param>
  15053. </member>
  15054. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.SetAccessControl(System.Security.AccessControl.FileSecurity,System.Security.AccessControl.AccessControlSections)">
  15055. <summary>Applies access control list (ACL) entries described by a FileSecurity object to the file described by the current FileInfo object.</summary>
  15056. <remarks>
  15057. The SetAccessControl method applies access control list (ACL) entries to the current file that represents the noninherited ACL
  15058. list. Use the SetAccessControl method whenever you need to add or remove ACL entries from a file.
  15059. </remarks>
  15060. <param name="fileSecurity">A <see cref="T:System.Security.AccessControl.FileSecurity"/> object that describes an access control list (ACL) entry to apply to the current file.</param>
  15061. <param name="includeSections">One or more of the <see cref="T:System.Security.AccessControl.AccessControlSections"/> values that specifies the type of access control list (ACL) information to set.</param>
  15062. </member>
  15063. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Replace(System.String,System.String)">
  15064. <summary>Replaces the contents of a specified file with the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object, deleting the original file, and creating a backup of the replaced file.</summary>
  15065. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that encapsulates information about the file described by the <paramref name="destinationFileName"/> parameter.</returns>
  15066. <remarks>
  15067. The Replace method replaces the contents of a specified file with the contents of the file described by the current
  15068. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object. It also creates a backup of the file that was replaced. Finally, it returns a new
  15069. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that describes the overwritten file.
  15070. </remarks>
  15071. <remarks>Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being replaced.</remarks>
  15072. <param name="destinationFileName">The name of a file to replace with the current file.</param>
  15073. <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destinationFileName"/> parameter.</param>
  15074. </member>
  15075. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Replace(System.String,System.String,System.Boolean)">
  15076. <summary>Replaces the contents of a specified file with the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object, deleting the original file, and creating a backup of the replaced file. Also specifies whether to ignore merge errors.</summary>
  15077. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that encapsulates information about the file described by the <paramref name="destinationFileName"/> parameter.</returns>
  15078. <remarks>
  15079. The Replace method replaces the contents of a specified file with the contents of the file described by the current
  15080. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object. It also creates a backup of the file that was replaced. Finally, it returns a new
  15081. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that describes the overwritten file.
  15082. </remarks>
  15083. <remarks>Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being replaced.</remarks>
  15084. <param name="destinationFileName">The name of a file to replace with the current file.</param>
  15085. <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destinationFileName"/> parameter.</param>
  15086. <param name="ignoreMetadataErrors"><see langword="true"/> to ignore merge errors (such as attributes and ACLs) from the replaced file to the replacement file; otherwise, <see langword="false"/>.</param>
  15087. </member>
  15088. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Replace(System.String,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  15089. <summary>[AlphaFS] Replaces the contents of a specified file with the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object, deleting the original file, and creating a backup of the replaced file. Also specifies whether to ignore merge errors.</summary>
  15090. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that encapsulates information about the file described by the <paramref name="destinationFileName"/> parameter.</returns>
  15091. <remarks>
  15092. The Replace method replaces the contents of a specified file with the contents of the file described by the current
  15093. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object. It also creates a backup of the file that was replaced. Finally, it returns a new
  15094. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that describes the overwritten file.
  15095. </remarks>
  15096. <remarks>Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being replaced.</remarks>
  15097. <param name="destinationFileName">The name of a file to replace with the current file.</param>
  15098. <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destinationFileName"/> parameter.</param>
  15099. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15100. </member>
  15101. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Replace(System.String,System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  15102. <summary>[AlphaFS] Replaces the contents of a specified file with the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object, deleting the original file, and creating a backup of the replaced file. Also specifies whether to ignore merge errors.</summary>
  15103. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that encapsulates information about the file described by the <paramref name="destinationFileName"/> parameter.</returns>
  15104. <remarks>
  15105. The Replace method replaces the contents of a specified file with the contents of the file described by the current
  15106. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object. It also creates a backup of the file that was replaced. Finally, it returns a new
  15107. <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object that describes the overwritten file.
  15108. </remarks>
  15109. <remarks>Pass null to the <paramref name="destinationBackupFileName"/> parameter if you do not want to create a backup of the file being replaced.</remarks>
  15110. <param name="destinationFileName">The name of a file to replace with the current file.</param>
  15111. <param name="destinationBackupFileName">The name of a file with which to create a backup of the file described by the <paramref name="destinationFileName"/> parameter.</param>
  15112. <param name="ignoreMetadataErrors"><see langword="true"/> to ignore merge errors (such as attributes and ACLs) from the replaced file to the replacement file; otherwise, <see langword="false"/>.</param>
  15113. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15114. </member>
  15115. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Refresh">
  15116. <summary>Refreshes the state of the object.</summary>
  15117. </member>
  15118. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.OpenWrite">
  15119. <summary>Creates a write-only <see cref="T:System.IO.FileStream"/>.</summary>
  15120. <returns>A write-only unshared <see cref="T:System.IO.FileStream"/> object for a new or existing file.</returns>
  15121. </member>
  15122. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.OpenText">
  15123. <summary>Creates a <see cref="T:System.IO.StreamReader"/> with NativeMethods.DefaultFileEncoding encoding that reads from an existing text file.</summary>
  15124. <returns>A new <see cref="T:System.IO.StreamReader"/> with NativeMethods.DefaultFileEncoding encoding.</returns>
  15125. </member>
  15126. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.OpenText(System.Text.Encoding)">
  15127. <summary>[AlphaFS] Creates a <see cref="T:System.IO.StreamReader"/> with <see cref="T:System.Text.Encoding"/> that reads from an existing text file.</summary>
  15128. <returns>A new <see cref="T:System.IO.StreamReader"/> with the specified <see cref="T:System.Text.Encoding"/>.</returns>
  15129. <param name="encoding">The <see cref="T:System.Text.Encoding"/> applied to the contents of the file.</param>
  15130. </member>
  15131. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.OpenRead">
  15132. <summary>Creates a read-only <see cref="T:System.IO.FileStream"/>.</summary>
  15133. <returns>A new read-only <see cref="T:System.IO.FileStream"/> object.</returns>
  15134. <remarks>This method returns a read-only <see cref="T:System.IO.FileStream"/> object with the <see cref="T:System.IO.FileShare"/> mode set to Read.</remarks>
  15135. </member>
  15136. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Open(System.IO.FileMode)">
  15137. <summary>Opens a file in the specified mode.</summary>
  15138. <returns>A <see cref="T:System.IO.FileStream"/> file opened in the specified mode, with read/write access and unshared.</returns>
  15139. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant specifying the mode (for example, Open or Append) in which to open the file.</param>
  15140. </member>
  15141. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess)">
  15142. <summary>Opens a file in the specified mode with read, write, or read/write access.</summary>
  15143. <returns>A <see cref="T:System.IO.FileStream"/> object opened in the specified mode and access, and unshared.</returns>
  15144. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant specifying the mode (for example, Open or Append) in which to open the file.</param>
  15145. <param name="access">A <see cref="T:System.IO.FileAccess"/> constant specifying whether to open the file with Read, Write, or ReadWrite file access.</param>
  15146. </member>
  15147. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
  15148. <summary>Opens a file in the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  15149. <returns>A <see cref="T:System.IO.FileStream"/> object opened with the specified mode, access, and sharing options.</returns>
  15150. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant specifying the mode (for example, Open or Append) in which to open the file.</param>
  15151. <param name="access">A <see cref="T:System.IO.FileAccess"/> constant specifying whether to open the file with Read, Write, or ReadWrite file access.</param>
  15152. <param name="share">A <see cref="T:System.IO.FileShare"/> constant specifying the type of access other <see cref="T:System.IO.FileStream"/> objects have to this file.</param>
  15153. </member>
  15154. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Open(System.IO.FileMode,System.Security.AccessControl.FileSystemRights)">
  15155. <summary>[AlphaFS] Opens a file in the specified mode with read, write, or read/write access.</summary>
  15156. <returns>A <see cref="T:System.IO.FileStream"/> object opened in the specified mode and access, and unshared.</returns>
  15157. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant specifying the mode (for example, Open or Append) in which to open the file.</param>
  15158. <param name="rights">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> 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 along with additional options.</param>
  15159. </member>
  15160. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Open(System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare)">
  15161. <summary>[AlphaFS] Opens a file in the specified mode with read, write, or read/write access and the specified sharing option.</summary>
  15162. <returns>A <see cref="T:System.IO.FileStream"/> object opened with the specified mode, access, and sharing options.</returns>
  15163. <param name="mode">A <see cref="T:System.IO.FileMode"/> constant specifying the mode (for example, Open or Append) in which to open the file.</param>
  15164. <param name="rights">A <see cref="T:System.Security.AccessControl.FileSystemRights"/> 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 along with additional options.</param>
  15165. <param name="share">A <see cref="T:System.IO.FileShare"/> constant specifying the type of access other <see cref="T:System.IO.FileStream"/> objects have to this file.</param>
  15166. </member>
  15167. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.GetAccessControl">
  15168. <summary>Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the access control list (ACL) entries for the file described by the current <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> object.</summary>
  15169. <returns><see cref="T:System.Security.AccessControl.FileSecurity"/>A FileSecurity object that encapsulates the access control rules for the current file.</returns>
  15170. </member>
  15171. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.GetAccessControl(System.Security.AccessControl.AccessControlSections)">
  15172. <summary>Gets a <see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the specified type of access control list (ACL) entries for the file described by the current FileInfo object.</summary>
  15173. <returns><see cref="T:System.Security.AccessControl.FileSecurity"/> object that encapsulates the specified type of access control list (ACL) entries for the file described by the current FileInfo object.</returns>
  15174. <param name="includeSections">One of the <see cref="N:System.Security"/> values that specifies which group of access control entries to retrieve.</param>
  15175. </member>
  15176. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Encrypt">
  15177. <summary>Encrypts a file so that only the account used to encrypt the file can decrypt it.</summary>
  15178. </member>
  15179. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Delete">
  15180. <summary>Permanently deletes a file.</summary>
  15181. <remarks>If the file does not exist, this method does nothing.</remarks>
  15182. <exception cref="T:System.IO.IOException"/>
  15183. </member>
  15184. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Delete(System.Boolean)">
  15185. <summary>[AlphaFS] Permanently deletes a file.</summary>
  15186. <remarks>If the file does not exist, this method does nothing.</remarks>
  15187. <param name="ignoreReadOnly"><see langword="true"/> overrides the read only <see cref="T:System.IO.FileAttributes"/> of the file.</param>
  15188. </member>
  15189. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Decrypt">
  15190. <summary>Decrypts a file that was encrypted by the current account using the Encrypt method.</summary>
  15191. </member>
  15192. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CreateText">
  15193. <summary>Creates a <see crefe="StreamWriter"/> instance that writes a new text file.</summary>
  15194. <returns>A new <see cref="T:System.IO.StreamWriter"/></returns>
  15195. </member>
  15196. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.Create">
  15197. <summary>Creates a file.</summary>
  15198. <returns><see cref="T:System.IO.FileStream"/>A new file.</returns>
  15199. </member>
  15200. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String)">
  15201. <summary>Copies an existing file to a new file, disallowing the overwriting of an existing file.
  15202. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15203. <remarks>
  15204. <para>Use this method to prevent overwriting of an existing file by default.</para>
  15205. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15206. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15207. </remarks>
  15208. </summary>
  15209. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15210. <exception cref="T:System.ArgumentException"/>
  15211. <exception cref="T:System.ArgumentNullException"/>
  15212. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15213. <exception cref="T:System.IO.FileNotFoundException"/>
  15214. <exception cref="T:System.IO.IOException"/>
  15215. <exception cref="T:System.NotSupportedException"/>
  15216. <exception cref="T:System.UnauthorizedAccessException"/>
  15217. <param name="destinationPath">The name of the new file to copy to.</param>
  15218. </member>
  15219. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,System.Boolean)">
  15220. <summary>Copies an existing file to a new file, allowing the overwriting of an existing file.
  15221. <remarks>
  15222. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15223. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15224. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15225. </remarks>
  15226. </summary>
  15227. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15228. <exception cref="T:System.ArgumentException"/>
  15229. <exception cref="T:System.ArgumentNullException"/>
  15230. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15231. <exception cref="T:System.IO.FileNotFoundException"/>
  15232. <exception cref="T:System.IO.IOException"/>
  15233. <exception cref="T:System.NotSupportedException"/>
  15234. <exception cref="T:System.UnauthorizedAccessException"/>
  15235. <param name="destinationPath">The name of the new file to copy to.</param>
  15236. <param name="overwrite"><see langword="true"/> to allow an existing file to be overwritten; otherwise, <see langword="false"/>.</param>
  15237. </member>
  15238. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  15239. <summary>[AlphaFS] Copies an existing file to a new file, disallowing the overwriting of an existing file.
  15240. <remarks>
  15241. <para>Use this method to prevent overwriting of an existing file by default.</para>
  15242. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15243. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15244. </remarks>
  15245. </summary>
  15246. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15247. <exception cref="T:System.ArgumentException"/>
  15248. <exception cref="T:System.ArgumentNullException"/>
  15249. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15250. <exception cref="T:System.IO.FileNotFoundException"/>
  15251. <exception cref="T:System.IO.IOException"/>
  15252. <exception cref="T:System.NotSupportedException"/>
  15253. <exception cref="T:System.UnauthorizedAccessException"/>
  15254. <param name="destinationPath">The name of the new file to copy to.</param>
  15255. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15256. </member>
  15257. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  15258. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file.
  15259. <remarks>
  15260. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15261. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15262. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15263. </remarks>
  15264. </summary>
  15265. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15266. <exception cref="T:System.ArgumentException"/>
  15267. <exception cref="T:System.ArgumentNullException"/>
  15268. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15269. <exception cref="T:System.IO.FileNotFoundException"/>
  15270. <exception cref="T:System.IO.IOException"/>
  15271. <exception cref="T:System.NotSupportedException"/>
  15272. <exception cref="T:System.UnauthorizedAccessException"/>
  15273. <param name="destinationPath">The name of the new file to copy to.</param>
  15274. <param name="overwrite"><see langword="true"/> to allow an existing file to be overwritten; otherwise, <see langword="false"/>.</param>
  15275. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15276. </member>
  15277. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions)">
  15278. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15279. <remarks>
  15280. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15281. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15282. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15283. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15284. </remarks>
  15285. </summary>
  15286. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15287. <exception cref="T:System.ArgumentException"/>
  15288. <exception cref="T:System.ArgumentNullException"/>
  15289. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15290. <exception cref="T:System.IO.FileNotFoundException"/>
  15291. <exception cref="T:System.IO.IOException"/>
  15292. <exception cref="T:System.NotSupportedException"/>
  15293. <exception cref="T:System.UnauthorizedAccessException"/>
  15294. <param name="destinationPath">The name of the new file to copy to.</param>
  15295. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15296. </member>
  15297. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  15298. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15299. <remarks>
  15300. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15301. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15302. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15303. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15304. </remarks>
  15305. </summary>
  15306. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15307. <exception cref="T:System.ArgumentException"/>
  15308. <exception cref="T:System.ArgumentNullException"/>
  15309. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15310. <exception cref="T:System.IO.FileNotFoundException"/>
  15311. <exception cref="T:System.IO.IOException"/>
  15312. <exception cref="T:System.NotSupportedException"/>
  15313. <exception cref="T:System.UnauthorizedAccessException"/>
  15314. <param name="destinationPath">The name of the new file to copy to.</param>
  15315. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15316. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15317. </member>
  15318. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean)">
  15319. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15320. <remarks>
  15321. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15322. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15323. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15324. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15325. </remarks>
  15326. </summary>
  15327. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15328. <exception cref="T:System.ArgumentException"/>
  15329. <exception cref="T:System.ArgumentNullException"/>
  15330. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15331. <exception cref="T:System.IO.FileNotFoundException"/>
  15332. <exception cref="T:System.IO.IOException"/>
  15333. <exception cref="T:System.NotSupportedException"/>
  15334. <exception cref="T:System.UnauthorizedAccessException"/>
  15335. <param name="destinationPath">The name of the new file to copy to.</param>
  15336. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15337. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  15338. </member>
  15339. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.PathFormat)">
  15340. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15341. <remarks>
  15342. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15343. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15344. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15345. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15346. </remarks>
  15347. </summary>
  15348. <returns>A new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path.</returns>
  15349. <exception cref="T:System.ArgumentException"/>
  15350. <exception cref="T:System.ArgumentNullException"/>
  15351. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15352. <exception cref="T:System.IO.FileNotFoundException"/>
  15353. <exception cref="T:System.IO.IOException"/>
  15354. <exception cref="T:System.NotSupportedException"/>
  15355. <exception cref="T:System.UnauthorizedAccessException"/>
  15356. <param name="destinationPath">The name of the new file to copy to.</param>
  15357. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15358. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  15359. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15360. </member>
  15361. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  15362. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15363. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  15364. <remarks>
  15365. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15366. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15367. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15368. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15369. </remarks>
  15370. </summary>
  15371. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  15372. <exception cref="T:System.ArgumentException"/>
  15373. <exception cref="T:System.ArgumentNullException"/>
  15374. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15375. <exception cref="T:System.IO.FileNotFoundException"/>
  15376. <exception cref="T:System.IO.IOException"/>
  15377. <exception cref="T:System.NotSupportedException"/>
  15378. <exception cref="T:System.UnauthorizedAccessException"/>
  15379. <param name="destinationPath">The name of the new file to copy to.</param>
  15380. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15381. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  15382. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15383. </member>
  15384. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  15385. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15386. <remarks>
  15387. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15388. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15389. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15390. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15391. </remarks>
  15392. </summary>
  15393. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  15394. <exception cref="T:System.ArgumentException"/>
  15395. <exception cref="T:System.ArgumentNullException"/>
  15396. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15397. <exception cref="T:System.IO.FileNotFoundException"/>
  15398. <exception cref="T:System.IO.IOException"/>
  15399. <exception cref="T:System.NotSupportedException"/>
  15400. <exception cref="T:System.UnauthorizedAccessException"/>
  15401. <param name="destinationPath">The name of the new file to copy to.</param>
  15402. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15403. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  15404. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15405. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15406. </member>
  15407. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  15408. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15409. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  15410. <remarks>
  15411. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15412. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15413. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15414. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15415. </remarks>
  15416. </summary>
  15417. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  15418. <exception cref="T:System.ArgumentException"/>
  15419. <exception cref="T:System.ArgumentNullException"/>
  15420. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15421. <exception cref="T:System.IO.FileNotFoundException"/>
  15422. <exception cref="T:System.IO.IOException"/>
  15423. <exception cref="T:System.NotSupportedException"/>
  15424. <exception cref="T:System.UnauthorizedAccessException"/>
  15425. <param name="destinationPath">The name of the new file to copy to.</param>
  15426. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15427. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  15428. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  15429. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15430. </member>
  15431. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyTo(System.String,Alphaleonis.Win32.Filesystem.CopyOptions,System.Boolean,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  15432. <summary>[AlphaFS] Copies an existing file to a new file, allowing the overwriting of an existing file, <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> can be specified.
  15433. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  15434. <remarks>
  15435. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15436. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15437. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15438. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15439. </remarks>
  15440. </summary>
  15441. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Copy action.</returns>
  15442. <exception cref="T:System.ArgumentException"/>
  15443. <exception cref="T:System.ArgumentNullException"/>
  15444. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15445. <exception cref="T:System.IO.FileNotFoundException"/>
  15446. <exception cref="T:System.IO.IOException"/>
  15447. <exception cref="T:System.NotSupportedException"/>
  15448. <exception cref="T:System.UnauthorizedAccessException"/>
  15449. <param name="destinationPath">The name of the new file to copy to.</param>
  15450. <param name="copyOptions"><see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> that specify how the file is to be copied.</param>
  15451. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  15452. <param name="progressHandler">A callback function that is called each time another portion of the file has been copied. This parameter can be <see langword="null"/>.</param>
  15453. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15454. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15455. </member>
  15456. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String)">
  15457. <summary>Moves a specified file to a new location, providing the option to specify a new file name.
  15458. <remarks>
  15459. <para>Use this method to prevent overwriting of an existing file by default.</para>
  15460. <para>This method works across disk volumes.</para>
  15461. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15462. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15463. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15464. </remarks>
  15465. </summary>
  15466. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with details of the Move action.</returns>
  15467. <exception cref="T:System.ArgumentException"/>
  15468. <exception cref="T:System.ArgumentNullException"/>
  15469. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15470. <exception cref="T:System.IO.FileNotFoundException"/>
  15471. <exception cref="T:System.IO.IOException"/>
  15472. <exception cref="T:System.NotSupportedException"/>
  15473. <exception cref="T:System.UnauthorizedAccessException"/>
  15474. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15475. </member>
  15476. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  15477. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name.
  15478. <returns><para>Returns a new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path when successfully moved,</para></returns>
  15479. <remarks>
  15480. <para>Use this method to prevent overwriting of an existing file by default.</para>
  15481. <para>This method works across disk volumes.</para>
  15482. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15483. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15484. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable
  15485. behavior.</para>
  15486. </remarks>
  15487. </summary>
  15488. <exception cref="T:System.ArgumentException"/>
  15489. <exception cref="T:System.ArgumentNullException"/>
  15490. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15491. <exception cref="T:System.IO.FileNotFoundException"/>
  15492. <exception cref="T:System.IO.IOException"/>
  15493. <exception cref="T:System.NotSupportedException"/>
  15494. <exception cref="T:System.UnauthorizedAccessException"/>
  15495. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15496. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15497. </member>
  15498. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions)">
  15499. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  15500. <returns><para>Returns a new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path when successfully moved,</para></returns>
  15501. <remarks>
  15502. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15503. <para>This method works across disk volumes.</para>
  15504. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15505. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15506. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable
  15507. behavior.</para>
  15508. </remarks>
  15509. </summary>
  15510. <exception cref="T:System.ArgumentException"/>
  15511. <exception cref="T:System.ArgumentNullException"/>
  15512. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15513. <exception cref="T:System.IO.FileNotFoundException"/>
  15514. <exception cref="T:System.IO.IOException"/>
  15515. <exception cref="T:System.NotSupportedException"/>
  15516. <exception cref="T:System.UnauthorizedAccessException"/>
  15517. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15518. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  15519. </member>
  15520. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.PathFormat)">
  15521. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  15522. <returns><para>Returns a new <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> instance with a fully qualified path when successfully moved,</para></returns>
  15523. <remarks>
  15524. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15525. <para>This method works across disk volumes.</para>
  15526. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15527. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15528. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable
  15529. behavior.</para>
  15530. </remarks>
  15531. </summary>
  15532. <exception cref="T:System.ArgumentException"/>
  15533. <exception cref="T:System.ArgumentNullException"/>
  15534. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15535. <exception cref="T:System.IO.FileNotFoundException"/>
  15536. <exception cref="T:System.IO.IOException"/>
  15537. <exception cref="T:System.NotSupportedException"/>
  15538. <exception cref="T:System.UnauthorizedAccessException"/>
  15539. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15540. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  15541. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15542. </member>
  15543. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object)">
  15544. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified,
  15545. <para>and the possibility of notifying the application of its progress through a callback function.</para>
  15546. <remarks>
  15547. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15548. <para>This method works across disk volumes.</para>
  15549. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15550. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15551. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15552. </remarks>
  15553. </summary>
  15554. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  15555. <exception cref="T:System.ArgumentException"/>
  15556. <exception cref="T:System.ArgumentNullException"/>
  15557. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15558. <exception cref="T:System.IO.FileNotFoundException"/>
  15559. <exception cref="T:System.IO.IOException"/>
  15560. <exception cref="T:System.NotSupportedException"/>
  15561. <exception cref="T:System.UnauthorizedAccessException"/>
  15562. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15563. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  15564. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  15565. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15566. </member>
  15567. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.MoveTo(System.String,Alphaleonis.Win32.Filesystem.MoveOptions,Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,Alphaleonis.Win32.Filesystem.PathFormat)">
  15568. <summary>[AlphaFS] Moves a specified file to a new location, providing the option to specify a new file name, <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> can be specified.
  15569. <remarks>
  15570. <para>Use this method to allow or prevent overwriting of an existing file.</para>
  15571. <para>This method works across disk volumes.</para>
  15572. <para>For example, the file c:\MyFile.txt can be moved to d:\public and renamed NewFile.txt.</para>
  15573. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15574. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15575. </remarks>
  15576. </summary>
  15577. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Move action.</returns>
  15578. <exception cref="T:System.ArgumentException"/>
  15579. <exception cref="T:System.ArgumentNullException"/>
  15580. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15581. <exception cref="T:System.IO.FileNotFoundException"/>
  15582. <exception cref="T:System.IO.IOException"/>
  15583. <exception cref="T:System.NotSupportedException"/>
  15584. <exception cref="T:System.UnauthorizedAccessException"/>
  15585. <param name="destinationPath">The path to move the file to, which can specify a different file name.</param>
  15586. <param name="moveOptions"><see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the directory is to be moved. This parameter can be <see langword="null"/>.</param>
  15587. <param name="progressHandler">A callback function that is called each time another portion of the directory has been moved. This parameter can be <see langword="null"/>.</param>
  15588. <param name="userProgressData">The argument to be passed to the callback function. This parameter can be <see langword="null"/>.</param>
  15589. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15590. </member>
  15591. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.CopyToMoveToCore(System.String,System.Boolean,System.Nullable{Alphaleonis.Win32.Filesystem.CopyOptions},System.Nullable{Alphaleonis.Win32.Filesystem.MoveOptions},Alphaleonis.Win32.Filesystem.CopyMoveProgressRoutine,System.Object,System.String@,Alphaleonis.Win32.Filesystem.PathFormat)">
  15592. <summary>Copy/move an existing file to a new file, allowing the overwriting of an existing file.
  15593. <remarks>
  15594. <para>Option <see cref="F:Alphaleonis.Win32.Filesystem.CopyOptions.NoBuffering"/> is recommended for very large file transfers.</para>
  15595. <para>Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.</para>
  15596. <para>If two files have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.</para>
  15597. </remarks>
  15598. </summary>
  15599. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.CopyMoveResult"/> class with the status of the Copy or Move action.</returns>
  15600. <param name="destinationPath"><para>A full path string to the destination directory</para></param>
  15601. <param name="preserveDates"><see langword="true"/> if original Timestamps must be preserved, <see langword="false"/> otherwise.</param>
  15602. <param name="copyOptions"><para>This parameter can be <see langword="null"/>. Use <see cref="T:Alphaleonis.Win32.Filesystem.CopyOptions"/> to specify how the file is to be copied.</para></param>
  15603. <param name="moveOptions"><para>This parameter can be <see langword="null"/>. Use <see cref="T:Alphaleonis.Win32.Filesystem.MoveOptions"/> that specify how the file is to be moved.</para></param>
  15604. <param name="progressHandler"><para>This parameter can be <see langword="null"/>. A callback function that is called each time another portion of the file has been copied.</para></param>
  15605. <param name="userProgressData"><para>This parameter can be <see langword="null"/>. The argument to be passed to the callback function.</para></param>
  15606. <param name="longFullPath">[out] Returns the retrieved long full path.</param>
  15607. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15608. <exception cref="T:System.ArgumentException"/>
  15609. <exception cref="T:System.ArgumentNullException"/>
  15610. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15611. <exception cref="T:System.IO.IOException"/>
  15612. <exception cref="T:System.NotSupportedException"/>
  15613. <exception cref="T:System.UnauthorizedAccessException"/>
  15614. </member>
  15615. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.AppendText">
  15616. <summary>Creates a <see cref="T:System.IO.StreamWriter"/> that appends text to the file represented by this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>.</summary>
  15617. <returns>A new <see cref="T:System.IO.StreamWriter"/></returns>
  15618. </member>
  15619. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.AppendText(System.Text.Encoding)">
  15620. <summary>Creates a <see cref="T:System.IO.StreamWriter"/> that appends text to the file represented by this instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>.</summary>
  15621. <param name="encoding">The character <see cref="T:System.Text.Encoding"/> to use.</param>
  15622. <returns>A new <see cref="T:System.IO.StreamWriter"/></returns>
  15623. </member>
  15624. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.#ctor(System.String)">
  15625. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> class, which acts as a wrapper for a file path.</summary>
  15626. <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>
  15627. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  15628. </member>
  15629. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.#ctor(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  15630. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> class, which acts as a wrapper for a file path.</summary>
  15631. <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>
  15632. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15633. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  15634. </member>
  15635. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  15636. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> class, which acts as a wrapper for a file path.</summary>
  15637. <param name="transaction">The transaction.</param>
  15638. <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>
  15639. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  15640. </member>
  15641. <member name="M:Alphaleonis.Win32.Filesystem.FileInfo.#ctor(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  15642. <summary>[AlphaFS] Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> class, which acts as a wrapper for a file path.</summary>
  15643. <param name="transaction">The transaction.</param>
  15644. <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>
  15645. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  15646. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  15647. </member>
  15648. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.Directory">
  15649. <summary>Gets an instance of the parent directory.</summary>
  15650. <value>A <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> object representing the parent directory of this file.</value>
  15651. <remarks>To get the parent directory as a string, use the DirectoryName property.</remarks>
  15652. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  15653. </member>
  15654. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.DirectoryName">
  15655. <summary>Gets a string representing the directory's full path.</summary>
  15656. <value>A string representing the directory's full path.</value>
  15657. <remarks>
  15658. <para>To get the parent directory as a DirectoryInfo object, use the Directory property.</para>
  15659. <para>When first called, FileInfo calls Refresh and caches information about the file.</para>
  15660. <para>On subsequent calls, you must call Refresh to get the latest copy of the information.</para>
  15661. </remarks>
  15662. <exception cref="T:System.ArgumentNullException"/>
  15663. </member>
  15664. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.Exists">
  15665. <summary>Gets a value indicating whether the file exists.</summary>
  15666. <value><see langword="true"/> if the file exists; otherwise, <see langword="false"/>.</value>
  15667. <remarks>
  15668. <para>The <see cref="P:Alphaleonis.Win32.Filesystem.FileInfo.Exists"/> property returns <see langword="false"/> if any error occurs while trying to determine if the specified file exists.</para>
  15669. <para>This can occur in situations that raise exceptions such as passing a file name with invalid characters or too many characters,</para>
  15670. <para>a failing or missing disk, or if the caller does not have permission to read the file.</para>
  15671. </remarks>
  15672. </member>
  15673. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.IsReadOnly">
  15674. <summary>Gets or sets a value that determines if the current file is read only.</summary>
  15675. <value><see langword="true"/> if the current file is read only; otherwise, <see langword="false"/>.</value>
  15676. <remarks>
  15677. <para>Use the IsReadOnly property to quickly determine or change whether the current file is read only.</para>
  15678. <para>When first called, FileInfo calls Refresh and caches information about the file.</para>
  15679. <para>On subsequent calls, you must call Refresh to get the latest copy of the information.</para>
  15680. </remarks>
  15681. <exception cref="T:System.IO.FileNotFoundException"/>
  15682. <exception cref="T:System.IO.IOException"/>
  15683. </member>
  15684. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.Length">
  15685. <summary>Gets the size, in bytes, of the current file.</summary>
  15686. <value>The size of the current file in bytes.</value>
  15687. <remarks>
  15688. <para>The value of the Length property is pre-cached</para>
  15689. <para>To get the latest value, call the Refresh method.</para>
  15690. </remarks>
  15691. <exception cref="T:System.IO.FileNotFoundException"/>
  15692. <exception cref="T:System.IO.IOException"/>
  15693. </member>
  15694. <member name="P:Alphaleonis.Win32.Filesystem.FileInfo.Name">
  15695. <summary>Gets the name of the file.</summary>
  15696. <value>The name of the file.</value>
  15697. <remarks>
  15698. <para>The name of the file includes the file extension.</para>
  15699. <para>When first called, <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> calls Refresh and caches information about the file.</para>
  15700. <para>On subsequent calls, you must call Refresh to get the latest copy of the information.</para>
  15701. <para>The name of the file includes the file extension.</para>
  15702. </remarks>
  15703. </member>
  15704. <member name="T:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes">
  15705. <summary>Specifies how the operating system should open a file.</summary>
  15706. </member>
  15707. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.None">
  15708. <summary>If you pass <see cref="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.None"/>, the set of attributes is unspecified. <see cref="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Normal"/> explicitly sets no attributes.</summary>
  15709. </member>
  15710. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.ReadOnly">
  15711. <summary>The file is read only. Applications can read the file, but cannot write to or delete it.</summary>
  15712. <remarks>Equals <see cref="F:System.IO.FileAttributes.ReadOnly"/>1</remarks>
  15713. </member>
  15714. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Hidden">
  15715. <summary>The file is hidden. Do not include it in an ordinary directory listing.</summary>
  15716. <remarks>Equals <see cref="F:System.IO.FileAttributes.Hidden"/>2</remarks>
  15717. </member>
  15718. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.System">
  15719. <summary>The file is part of or used exclusively by an operating system.</summary>
  15720. <remarks>Equals <see cref="F:System.IO.FileAttributes.System"/>4</remarks>
  15721. </member>
  15722. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Directory">
  15723. <summary>The handle that identifies a directory.</summary>
  15724. <remarks>Equals <see cref="F:System.IO.FileAttributes.Directory"/>16</remarks>
  15725. </member>
  15726. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Archive">
  15727. <summary>The file should be archived. Applications use this attribute to mark files for backup or removal.</summary>
  15728. <remarks>Equals <see cref="F:System.IO.FileAttributes.Archive"/>32</remarks>
  15729. </member>
  15730. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Device">
  15731. <summary>The file should be archived. Applications use this attribute to mark files for backup or removal.</summary>
  15732. <remarks>Equals <see cref="F:System.IO.FileAttributes.Device"/>64</remarks>
  15733. </member>
  15734. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Normal">
  15735. <summary>The file does not have other attributes set. This attribute is valid only if used alone.</summary>
  15736. <remarks>Equals <see cref="F:System.IO.FileAttributes.Normal"/>128</remarks>
  15737. </member>
  15738. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Temporary">
  15739. <summary>The file is being used for temporary storage.</summary>
  15740. <remarks>Equals <see cref="F:System.IO.FileAttributes.Temporary"/>256</remarks>
  15741. </member>
  15742. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.SparseFile">
  15743. <summary>A file that is a sparse file.</summary>
  15744. <remarks>Equals <see cref="F:System.IO.FileAttributes.SparseFile"/>512</remarks>
  15745. </member>
  15746. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.ReparsePoint">
  15747. <summary>A file or directory that has an associated reparse point, or a file that is a symbolic link.</summary>
  15748. <remarks>Equals <see cref="F:System.IO.FileAttributes.ReparsePoint"/>1024</remarks>
  15749. </member>
  15750. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Compressed">
  15751. <summary>A file or directory that is compressed. For a file, all of the data in the file is compressed. For a directory, compression is the default for newly created files and subdirectories.</summary>
  15752. <remarks>Equals <see cref="F:System.IO.FileAttributes.Compressed"/>2048</remarks>
  15753. </member>
  15754. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Offline">
  15755. <summary>The data of a file is not immediately available. This attribute indicates that file data is physically moved to offline storage. This attribute is used by Remote Storage, the hierarchical storage management software. Applications should not arbitrarily change this attribute.</summary>
  15756. <remarks>Equals <see cref="F:System.IO.FileAttributes.Offline"/>4096</remarks>
  15757. </member>
  15758. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.NotContentIndexed">
  15759. <summary>The file or directory is not to be indexed by the content indexing service.</summary>
  15760. <remarks>Equals <see cref="F:System.IO.FileAttributes.NotContentIndexed"/>8192</remarks>
  15761. </member>
  15762. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Encrypted">
  15763. <summary>The file or directory is encrypted. For a file, this means that all data in the file is encrypted. For a directory, this means that encryption is the default for newly created files and subdirectories.</summary>
  15764. <remarks>Equals <see cref="F:System.IO.FileOptions.Encrypted"/>16384</remarks>
  15765. </member>
  15766. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.IntegrityStream">
  15767. <summary>The directory or user data stream is configured with integrity (only supported on ReFS volumes). It is not included in an ordinary directory listing. The integrity setting persists with the file if it's renamed. If a file is copied the destination file will have integrity set if either the source file or destination directory have integrity set.</summary>
  15768. <remarks>This flag is not supported until Windows Server 2012.</remarks>
  15769. </member>
  15770. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.NoScrubData">
  15771. <summary>The user data stream not to be read by the background data integrity scanner (AKA scrubber). When set on a directory it only provides inheritance. This flag is only supported on Storage Spaces and ReFS volumes. It is not included in an ordinary directory listing.</summary>
  15772. <remarks>This flag is not supported until Windows Server 2012.</remarks>
  15773. </member>
  15774. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.FirstPipeInstance">
  15775. <summary>...</summary>
  15776. </member>
  15777. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.OpenNoRecall">
  15778. <summary>The file data is requested, but it should continue to be located in remote storage. It should not be transported back to local storage. This flag is for use by remote storage systems.</summary>
  15779. </member>
  15780. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.OpenReparsePoint">
  15781. <summary>Normal reparse point processing will not occur; an attempt to open the reparse point will be made. When a file is opened, a file handle is returned, whether or not the filter that controls the reparse point is operational. See MSDN documentation for more information.</summary>
  15782. </member>
  15783. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.PosixSemantics">
  15784. <summary>Access will occur according to POSIX rules. This includes allowing multiple files with names, differing only in case, for file systems that support that naming. Use care when using this option, because files created with this flag may not be accessible by applications that are written for MS-DOS or 16-bit Windows.</summary>
  15785. </member>
  15786. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.BackupSemantics">
  15787. <summary>The file is being opened or created for a backup or restore operation. The system ensures that the calling process overrides file security checks when the process has SE_BACKUP_NAME and SE_RESTORE_NAME privileges. You must set this flag to obtain a handle to a directory. A directory handle can be passed to some functions instead of a file handle.</summary>
  15788. </member>
  15789. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.DeleteOnClose">
  15790. <summary>The file is to be deleted immediately after all of its handles are closed, which includes the specified handle and any other open or duplicated handles. If there are existing open handles to a file, the call fails unless they were all opened with the <see cref="F:System.IO.FileShare.Delete"/> share mode. Subsequent open requests for the file fail, unless the <see cref="F:System.IO.FileShare.Delete"/> share mode is specified.</summary>
  15791. <remarks>Equals <see cref="F:System.IO.FileOptions.DeleteOnClose"/>67108864</remarks>
  15792. </member>
  15793. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.SequentialScan">
  15794. <summary>Access is intended to be sequential from beginning to end. The system can use this as a hint to optimize file caching.</summary>
  15795. <remarks>Equals <see cref="F:System.IO.FileOptions.SequentialScan"/>134217728</remarks>
  15796. </member>
  15797. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.RandomAccess">
  15798. <summary>Access is intended to be random. The system can use this as a hint to optimize file caching.</summary>
  15799. <remarks>Equals <see cref="F:System.IO.FileOptions.RandomAccess"/>268435456</remarks>
  15800. </member>
  15801. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.NoBuffering">
  15802. <summary>There are strict requirements for successfully working with files opened with the <see cref="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.NoBuffering"/> flag, for details see the section on "File Buffering" in the online MSDN documentation.</summary>
  15803. </member>
  15804. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.Overlapped">
  15805. <summary>The file or device is being opened or created for asynchronous I/O.</summary>
  15806. <remarks>Equals <see cref="F:System.IO.FileOptions.Asynchronous"/>1073741824</remarks>
  15807. </member>
  15808. <member name="F:Alphaleonis.Win32.Filesystem.ExtendedFileAttributes.WriteThrough">
  15809. <summary>Write operations will not go through any intermediate cache, they will go directly to disk.</summary>
  15810. <remarks>Equals .NET <see cref="F:System.IO.FileOptions.WriteThrough"/>-2147483648</remarks>
  15811. </member>
  15812. <member name="T:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo">
  15813. <summary>Class that retrieves file system entries (i.e. files and directories) using Win32 API FindFirst()/FindNext().</summary>
  15814. </member>
  15815. <member name="M:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.Enumerate``1">
  15816. <summary>Get an enumerator that returns all of the file system objects that match the wildcards that are in any of the directories to be searched.</summary>
  15817. <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance: FileSystemEntryInfo, DirectoryInfo, FileInfo or string (full path).</returns>
  15818. </member>
  15819. <member name="M:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.Get``1">
  15820. <summary>Gets a specific file system object.</summary>
  15821. <returns>
  15822. <para>The return type is based on C# inference. Possible return types are:</para>
  15823. <para> <see cref="T:System.String"/>- (full path), <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/>- (<see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> or <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/>), <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance</para>
  15824. <para>or null in case an Exception is raised and <see cref="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.ContinueOnException"/> is <see langword="true"/>.</para>
  15825. </returns>
  15826. </member>
  15827. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.AsFileSystemInfo">
  15828. <summary>Gets or sets the ability to return the object as a <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> instance.</summary>
  15829. <value><see langword="true"/> returns the object as a <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> instance.</value>
  15830. </member>
  15831. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.AsLongPath">
  15832. <summary>Gets or sets the ability to return the full path in long full path format.</summary>
  15833. <value><see langword="true"/> returns the full path in long full path format, <see langword="false"/> returns the full path in regular path format.</value>
  15834. </member>
  15835. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.AsString">
  15836. <summary>Gets or sets the ability to return the object instance as a <see cref="T:System.String"/>.</summary>
  15837. <value><see langword="true"/> returns the full path of the object as a <see cref="T:System.String"/></value>
  15838. </member>
  15839. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.FindExInfoLevel">
  15840. <summary>Gets the value indicating which <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS"/> to use.</summary>
  15841. </member>
  15842. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.ContinueOnException">
  15843. <summary>Gets or sets the ability to skip on access errors.</summary>
  15844. <value><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as ACLs protected directories or non-accessible reparse points.</value>
  15845. </member>
  15846. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.FileSystemObjectType">
  15847. <summary>Gets the file system object type.</summary>
  15848. <value>
  15849. <see langword="null"/> = Return files and directories.
  15850. <see langword="true"/> = Return only directories.
  15851. <see langword="false"/> = Return only files.
  15852. </value>
  15853. </member>
  15854. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.IsRelativePath">
  15855. <summary>Gets or sets if the path is an absolute or relative path.</summary>
  15856. <value>Gets a value indicating whether the specified path string contains absolute or relative path information.</value>
  15857. </member>
  15858. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.OriginalInputPath">
  15859. <summary>Gets or sets the initial path to the folder.</summary>
  15860. <value>The initial path to the file or folder in long path format.</value>
  15861. </member>
  15862. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.InputPath">
  15863. <summary>Gets or sets the path to the folder.</summary>
  15864. <value>The path to the file or folder in long path format.</value>
  15865. </member>
  15866. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.IsDirectory">
  15867. <summary>Gets or sets a value indicating which <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FINDEX_INFO_LEVELS"/> to use.</summary>
  15868. <value><see langword="true"/> indicates a folder object, <see langword="false"/> indicates a file object.</value>
  15869. </member>
  15870. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.LargeCache">
  15871. <summary>Gets the value indicating which <see cref="T:Alphaleonis.Win32.Filesystem.NativeMethods.FindExAdditionalFlags"/> to use.</summary>
  15872. </member>
  15873. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.Recursive">
  15874. <summary>Specifies whether the search should include only the current directory or should include all subdirectories.</summary>
  15875. <value><see langword="true"/> to all subdirectories.</value>
  15876. </member>
  15877. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.SearchPattern">
  15878. <summary>Search for file system object-name using a pattern.</summary>
  15879. <value>The path which has wildcard characters, for example, an asterisk (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll"/>) or a question mark (<see cref="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion"/>).</value>
  15880. </member>
  15881. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.SkipReparsePoints">
  15882. <summary><see langword="true"/> skips ReparsePoints, <see langword="false"/> will follow ReparsePoints.</summary>
  15883. </member>
  15884. <member name="P:Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.Transaction">
  15885. <summary>Get or sets the KernelTransaction instance.</summary>
  15886. <value>The transaction.</value>
  15887. </member>
  15888. <member name="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo">
  15889. <summary>Represents information about a file system entry.
  15890. <para>This class cannot be inherited.</para>
  15891. </summary>
  15892. </member>
  15893. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.#ctor(Alphaleonis.Win32.Filesystem.NativeMethods.WIN32_FIND_DATA)">
  15894. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> class.</summary>
  15895. <param name="findData">The NativeMethods.WIN32_FIND_DATA structure.</param>
  15896. </member>
  15897. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.AlternateFileName">
  15898. <summary>Gets the 8.3 version of the filename.</summary>
  15899. <value>the 8.3 version of the filename.</value>
  15900. </member>
  15901. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.Attributes">
  15902. <summary>Gets the attributes.</summary>
  15903. <value>The attributes.</value>
  15904. </member>
  15905. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.CreationTime">
  15906. <summary>Gets the time this entry was created.</summary>
  15907. <value>The time this entry was created.</value>
  15908. </member>
  15909. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.CreationTimeUtc">
  15910. <summary>Gets the time, in coordinated universal time (UTC), this entry was created.</summary>
  15911. <value>The time, in coordinated universal time (UTC), this entry was created.</value>
  15912. </member>
  15913. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.FileName">
  15914. <summary>Gets the name of the file.</summary>
  15915. <value>The name of the file.</value>
  15916. </member>
  15917. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.FileSize">
  15918. <summary>Gets the size of the file.</summary>
  15919. <value>The size of the file.</value>
  15920. </member>
  15921. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.FullPath">
  15922. <summary>The full path of the file system object.</summary>
  15923. </member>
  15924. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsCompressed">
  15925. <summary>Gets a value indicating whether this instance is compressed.</summary>
  15926. <value><see langword="true"/> if this instance is compressed; otherwise, <see langword="false"/>.</value>
  15927. <remarks>
  15928. It is not possible to change the compression status of a File object by using the SetAttributes method.
  15929. Instead, you must actually compress the file using either a compression tool or one of the classes in the <see cref="N:System.IO.Compression"/> namespace.
  15930. </remarks>
  15931. </member>
  15932. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsHidden">
  15933. <summary>Gets a value indicating whether this instance is hidden, and thus is not included in an ordinary directory listing.</summary>
  15934. <value><see langword="true"/> if this instance is hidden; otherwise, <see langword="false"/>.</value>
  15935. </member>
  15936. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsDirectory">
  15937. <summary>Gets a value indicating whether this instance represents a directory.</summary>
  15938. <value><see langword="true"/> if this instance represents a directory; otherwise, <see langword="false"/>.</value>
  15939. </member>
  15940. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsEncrypted">
  15941. <summary>Gets a value indicating whether this instance is encrypted (EFS).</summary>
  15942. <value><see langword="true"/> if this instance is encrypted (EFS); otherwise, <see langword="false"/>.</value>
  15943. <remarks>
  15944. For a file, this means that all data in the file is encrypted.
  15945. For a directory, this means that encryption is the default for newly created files and directories.
  15946. </remarks>
  15947. </member>
  15948. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsMountPoint">
  15949. <summary>Gets a value indicating whether this instance is a mount point.</summary>
  15950. <value><see langword="true"/> if this instance is a mount point; otherwise, <see langword="false"/>.</value>
  15951. </member>
  15952. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsOffline">
  15953. <summary>Gets a value indicating whether this instance is offline. The data of the file is not immediately available.</summary>
  15954. <value><see langword="true"/> if this instance is offline; otherwise, <see langword="false"/>.</value>
  15955. </member>
  15956. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsReadOnly">
  15957. <summary>Gets a value indicating whether this instance is read-only.</summary>
  15958. <value><see langword="true"/> if this instance is read-only; otherwise, <see langword="false"/>.</value>
  15959. </member>
  15960. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsReparsePoint">
  15961. <summary>Gets a value indicating whether this instance contains a reparse point, which is a block of user-defined data associated with a file or a directory.</summary>
  15962. <value><see langword="true"/> if this instance contains a reparse point; otherwise, <see langword="false"/>.</value>
  15963. </member>
  15964. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.IsSymbolicLink">
  15965. <summary>Gets a value indicating whether this instance is a symbolic link.</summary>
  15966. <value><see langword="true"/> if this instance is a symbolic link; otherwise, <see langword="false"/>.</value>
  15967. </member>
  15968. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.LastAccessTime">
  15969. <summary>Gets the time this entry was last accessed.</summary>
  15970. <value>The time this entry was last accessed.</value>
  15971. </member>
  15972. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.LastAccessTimeUtc">
  15973. <summary>Gets the time, in coordinated universal time (UTC), this entry was last accessed.</summary>
  15974. <value>The time, in coordinated universal time (UTC), this entry was last accessed.</value>
  15975. </member>
  15976. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.LastWriteTime">
  15977. <summary>Gets the time this entry was last modified.</summary>
  15978. <value>The time this entry was last modified.</value>
  15979. </member>
  15980. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.LastWriteTimeUtc">
  15981. <summary>Gets the time, in coordinated universal time (UTC), this entry was last modified.</summary>
  15982. <value>The time, in coordinated universal time (UTC), this entry was last modified.</value>
  15983. </member>
  15984. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.LongFullPath">
  15985. <summary>The full path of the file system object in Unicode (LongPath) format.</summary>
  15986. </member>
  15987. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.ReparsePointTag">
  15988. <summary>Gets the reparse point tag of this entry.</summary>
  15989. <value>The reparse point tag of this entry.</value>
  15990. </member>
  15991. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.Win32FindData">
  15992. <summary>Gets internal WIN32 FIND Data</summary>
  15993. </member>
  15994. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.ToString">
  15995. <summary>Returns the <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.FullPath"/> of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> instance.</summary>
  15996. <returns>The <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo.FullPath"/> instance as a string.</returns>
  15997. </member>
  15998. <member name="T:Alphaleonis.Win32.Filesystem.FileSystemInfo">
  15999. <summary>Provides the base class for both <see cref="T:Alphaleonis.Win32.Filesystem.FileInfo"/> and <see cref="T:Alphaleonis.Win32.Filesystem.DirectoryInfo"/> objects.</summary>
  16000. </member>
  16001. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.Delete">
  16002. <summary>Deletes a file or directory.</summary>
  16003. </member>
  16004. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.Refresh">
  16005. <summary>Refreshes the state of the object.</summary>
  16006. <remarks>
  16007. <para>FileSystemInfo.Refresh() takes a snapshot of the file from the current file system.</para>
  16008. <para>Refresh cannot correct the underlying file system even if the file system returns incorrect or outdated information.</para>
  16009. <para>This can happen on platforms such as Windows 98.</para>
  16010. <para>Calls must be made to Refresh() before attempting to get the attribute information, or the information will be
  16011. outdated.</para>
  16012. </remarks>
  16013. </member>
  16014. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.ToString">
  16015. <summary>Returns a string that represents the current object.</summary>
  16016. <remarks>
  16017. ToString is the major formatting method in the .NET Framework. It converts an object to its string representation so that it is
  16018. suitable for display.
  16019. </remarks>
  16020. <returns>A string that represents this instance.</returns>
  16021. </member>
  16022. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.Equals(System.Object)">
  16023. <summary>Determines whether the specified Object is equal to the current Object.</summary>
  16024. <param name="obj">Another object to compare to.</param>
  16025. <returns><see langword="true"/> if the specified Object is equal to the current Object; otherwise, <see langword="false"/>.</returns>
  16026. </member>
  16027. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.GetHashCode">
  16028. <summary>Serves as a hash function for a particular type.</summary>
  16029. <returns>A hash code for the current Object.</returns>
  16030. </member>
  16031. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.op_Equality(Alphaleonis.Win32.Filesystem.FileSystemInfo,Alphaleonis.Win32.Filesystem.FileSystemInfo)">
  16032. <summary>Implements the operator ==</summary>
  16033. <param name="left">A.</param>
  16034. <param name="right">B.</param>
  16035. <returns>The result of the operator.</returns>
  16036. </member>
  16037. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.op_Inequality(Alphaleonis.Win32.Filesystem.FileSystemInfo,Alphaleonis.Win32.Filesystem.FileSystemInfo)">
  16038. <summary>Implements the operator !=</summary>
  16039. <param name="left">A.</param>
  16040. <param name="right">B.</param>
  16041. <returns>The result of the operator.</returns>
  16042. </member>
  16043. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.RefreshEntryInfo">
  16044. <summary>Refreshes the state of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> EntryInfo instance.</summary>
  16045. <remarks>
  16046. <para>FileSystemInfo.RefreshEntryInfo() takes a snapshot of the file from the current file system.</para>
  16047. <para>Refresh cannot correct the underlying file system even if the file system returns incorrect or outdated information.</para>
  16048. <para>This can happen on platforms such as Windows 98.</para>
  16049. <para>Calls must be made to Refresh() before attempting to get the attribute information, or the information will be outdated.</para>
  16050. </remarks>
  16051. </member>
  16052. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.Reset">
  16053. <summary>[AlphaFS] Resets the state of the file system object to uninitialized.</summary>
  16054. </member>
  16055. <member name="M:Alphaleonis.Win32.Filesystem.FileSystemInfo.InitializeCore(System.Boolean,Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  16056. <summary>Initializes the specified file name.</summary>
  16057. <exception cref="T:System.ArgumentException"/>
  16058. <exception cref="T:System.NotSupportedException"/>
  16059. <param name="isFolder">Specifies that <paramref name="path"/> is a file or directory.</param>
  16060. <param name="transaction">The transaction.</param>
  16061. <param name="path">The full path and name of the file.</param>
  16062. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  16063. </member>
  16064. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Attributes">
  16065. <summary>
  16066. Gets or sets the attributes for the current file or directory.
  16067. </summary>
  16068. <remarks>
  16069. <para>The value of the CreationTime property is pre-cached</para>
  16070. <para>To get the latest value, call the Refresh method.</para>
  16071. </remarks>
  16072. <value><see cref="T:System.IO.FileAttributes"/> of the current <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/>.</value>
  16073. <exception cref="T:System.IO.FileNotFoundException"/>
  16074. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  16075. <exception cref="T:System.IO.IOException"/>
  16076. </member>
  16077. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.CreationTime">
  16078. <summary>Gets or sets the creation time of the current file or directory.</summary>
  16079. <remarks>
  16080. <para>The value of the CreationTime property is pre-cached To get the latest value, call the Refresh method.</para>
  16081. <para>This method may return an inaccurate value, because it uses native functions whose values may not be continuously updated by
  16082. the operating system.</para>
  16083. <para>If the file described in the FileSystemInfo object does not exist, this property will return
  16084. 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.</para>
  16085. <para>NTFS-formatted drives may cache file meta-info, such as file creation time, for a short period of time.
  16086. This process is known as file tunneling. As a result, it may be necessary to explicitly set the creation time of a file if you are
  16087. overwriting or replacing an existing file.</para>
  16088. </remarks>
  16089. <value>The creation date and time of the current <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> object.</value>
  16090. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  16091. <exception cref="T:System.IO.IOException"/>
  16092. </member>
  16093. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.CreationTimeUtc">
  16094. <summary>Gets or sets the creation time, in coordinated universal time (UTC), of the current file or directory.</summary>
  16095. <remarks>
  16096. <para>The value of the CreationTimeUtc property is pre-cached
  16097. To get the latest value, call the Refresh method.</para>
  16098. <para>This method may return an inaccurate value, because it uses native functions
  16099. whose values may not be continuously updated by the operating system.</para>
  16100. <para>To get the latest value, call the Refresh method.</para>
  16101. <para>If the file described in the FileSystemInfo object does not exist, this property will return
  16102. 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC).</para>
  16103. <para>NTFS-formatted drives may cache file meta-info, such as file creation time, for a short period of time.
  16104. This process is known as file tunneling. As a result, it may be necessary to explicitly set the creation time
  16105. of a file if you are overwriting or replacing an existing file.</para>
  16106. </remarks>
  16107. <value>The creation date and time in UTC format of the current <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> object.</value>
  16108. <exception cref="T:System.IO.DirectoryNotFoundException"/>
  16109. <exception cref="T:System.IO.IOException"/>
  16110. </member>
  16111. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Exists">
  16112. <summary>
  16113. Gets a value indicating whether the file or directory exists.
  16114. </summary>
  16115. <remarks>
  16116. <para>The <see cref="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Exists"/> property returns <see langword="false"/> if any error occurs while trying to determine if the
  16117. specified file or directory exists.</para>
  16118. <para>This can occur in situations that raise exceptions such as passing a directory- or file name with invalid characters or too
  16119. many characters,</para>
  16120. <para>a failing or missing disk, or if the caller does not have permission to read the file or directory.</para>
  16121. </remarks>
  16122. <value><see langword="true"/> if the file or directory exists; otherwise, <see langword="false"/>.</value>
  16123. </member>
  16124. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Extension">
  16125. <summary>
  16126. Gets the string representing the extension part of the file.
  16127. </summary>
  16128. <remarks>
  16129. <para>The Extension property returns the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> extension, including the period (.).</para>
  16130. <para>For example, for a file c:\NewFile.txt, this property returns ".txt".</para>
  16131. </remarks>
  16132. <value>A string containing the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> extension.</value>
  16133. </member>
  16134. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.FullName">
  16135. <summary>
  16136. Gets the full path of the directory or file.
  16137. </summary>
  16138. <value>A string containing the full path.</value>
  16139. </member>
  16140. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.LastAccessTime">
  16141. <summary>Gets or sets the time the current file or directory was last accessed.</summary>
  16142. <remarks>
  16143. <para>The value of the LastAccessTime property is pre-cached
  16144. To get the latest value, call the Refresh method.</para>
  16145. <para>This method may return an inaccurate value, because it uses native functions
  16146. whose values may not be continuously updated by the operating system.</para>
  16147. <para>If the file described in the FileSystemInfo object does not exist, this property will return
  16148. 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.</para>
  16149. </remarks>
  16150. <value>The time that the current file or directory was last accessed.</value>
  16151. <exception cref="T:System.IO.IOException"/>
  16152. </member>
  16153. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.LastAccessTimeUtc">
  16154. <summary>Gets or sets the time, in coordinated universal time (UTC), that the current file or directory was last accessed.</summary>
  16155. <remarks>
  16156. <para>The value of the LastAccessTimeUtc property is pre-cached.
  16157. To get the latest value, call the Refresh method.</para>
  16158. <para>This method may return an inaccurate value, because it uses native functions
  16159. whose values may not be continuously updated by the operating system.</para>
  16160. <para>If the file described in the FileSystemInfo object does not exist, this property will return
  16161. 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.</para>
  16162. </remarks>
  16163. <value>The UTC time that the current file or directory was last accessed.</value>
  16164. <exception cref="T:System.IO.IOException"/>
  16165. </member>
  16166. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.LastWriteTime">
  16167. <summary>Gets or sets the time when the current file or directory was last written to.</summary>
  16168. <remarks>
  16169. <para>The value of the LastWriteTime property is pre-cached.
  16170. To get the latest value, call the Refresh method.</para>
  16171. <para>This method may return an inaccurate value, because it uses native functions
  16172. whose values may not be continuously updated by the operating system.</para>
  16173. <para>If the file described in the FileSystemInfo object does not exist, this property will return
  16174. 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.</para>
  16175. </remarks>
  16176. <value>The time the current file was last written.</value>
  16177. <exception cref="T:System.IO.IOException"/>
  16178. </member>
  16179. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.LastWriteTimeUtc">
  16180. <summary>Gets or sets the time, in coordinated universal time (UTC), when the current file or directory was last written to.</summary>
  16181. <remarks>
  16182. <para>The value of the LastWriteTimeUtc property is pre-cached. To get the latest value, call the Refresh method.</para>
  16183. <para>This method may return an inaccurate value, because it uses native functions whose values may not be continuously updated by
  16184. the operating system.</para>
  16185. <para>If the file described in the FileSystemInfo object does not exist, this property will return 12:00 midnight, January 1, 1601
  16186. A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.</para>
  16187. </remarks>
  16188. <value>The UTC time when the current file was last written to.</value>
  16189. </member>
  16190. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Name">
  16191. <summary>
  16192. For files, gets the name of the file. For directories, gets the name of the last directory in the hierarchy if a hierarchy exists.
  16193. <para>Otherwise, the Name property gets the name of the directory.</para>
  16194. </summary>
  16195. <remarks>
  16196. <para>For a directory, Name returns only the name of the parent directory, such as Dir, not c:\Dir.</para>
  16197. <para>For a subdirectory, Name returns only the name of the subdirectory, such as Sub1, not c:\Dir\Sub1.</para>
  16198. <para>For a file, Name returns only the file name and file name extension, such as MyFile.txt, not c:\Dir\Myfile.txt.</para>
  16199. </remarks>
  16200. <value>
  16201. <para>A string that is the name of the parent directory, the name of the last directory in the hierarchy,</para>
  16202. <para>or the name of a file, including the file name extension.</para>
  16203. </value>
  16204. </member>
  16205. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.DisplayPath">
  16206. <summary>Returns the path as a string.</summary>
  16207. </member>
  16208. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.EntryInfo">
  16209. <summary>[AlphaFS] Gets the instance of the <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemEntryInfo"/> class.</summary>
  16210. </member>
  16211. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.IsDirectory">
  16212. <summary>[AlphaFS] The initial "IsDirectory" indicator that was passed to the constructor.</summary>
  16213. </member>
  16214. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.LongFullName">
  16215. <summary>The full path of the file system object in Unicode (LongPath) format.</summary>
  16216. </member>
  16217. <member name="P:Alphaleonis.Win32.Filesystem.FileSystemInfo.Transaction">
  16218. <summary>[AlphaFS] Represents the KernelTransaction that was passed to the constructor.</summary>
  16219. </member>
  16220. <member name="F:Alphaleonis.Win32.Filesystem.FileSystemInfo.FullPath">
  16221. <summary>Represents the fully qualified path of the file or directory.</summary>
  16222. <remarks>
  16223. <para>Classes derived from <see cref="T:Alphaleonis.Win32.Filesystem.FileSystemInfo"/> can use the FullPath field</para>
  16224. <para>to determine the full path of the object being manipulated.</para>
  16225. </remarks>
  16226. </member>
  16227. <member name="F:Alphaleonis.Win32.Filesystem.FileSystemInfo.OriginalPath">
  16228. <summary>The path originally specified by the user, whether relative or absolute.</summary>
  16229. </member>
  16230. <member name="T:Alphaleonis.Win32.Filesystem.GetFullPathOptions">
  16231. <summary>A bitfield of flags for specifying options for various internal operations that convert paths to full paths.</summary>
  16232. </member>
  16233. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.None">
  16234. <summary>No special options applies.</summary>
  16235. </member>
  16236. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.TrimEnd">
  16237. <summary>Remove any trailing whitespace from the path.</summary>
  16238. </member>
  16239. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.AddTrailingDirectorySeparator">
  16240. <summary>Add a trailing directory separator to the path (if one does not already exist).</summary>
  16241. </member>
  16242. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.RemoveTrailingDirectorySeparator">
  16243. <summary>Remove the trailing directory separator from the path (if one exists).</summary>
  16244. </member>
  16245. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.AsLongPath">
  16246. <summary>Return full path as long full path (Unicode format). Not valid for <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetRegularPath(System.String)"/>.</summary>
  16247. </member>
  16248. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.ContinueOnNonExist">
  16249. <summary>Prevents any exception from being thrown if a filesystem object does not exist. Not valid for <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetRegularPath(System.String)"/>.</summary>
  16250. </member>
  16251. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.CheckInvalidPathChars">
  16252. <summary>Check that the path contains only valid path-characters.</summary>
  16253. </member>
  16254. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.CheckAdditional">
  16255. <summary>Also check for wildcard (? and *) characters.</summary>
  16256. </member>
  16257. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.KeepDotOrSpace">
  16258. <summary>Do not trim the trailing dot or space.</summary>
  16259. </member>
  16260. <member name="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.FullCheck">
  16261. <summary>Performs both <see cref="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.CheckInvalidPathChars"/> and <see cref="F:Alphaleonis.Win32.Filesystem.GetFullPathOptions.CheckAdditional"/> checks.</summary>
  16262. </member>
  16263. <member name="T:Alphaleonis.Win32.Filesystem.Path">
  16264. <summary>Performs operations on String instances that contain file or directory path information. These operations are performed in a cross-platform manner.</summary>
  16265. </member>
  16266. <member name="M:Alphaleonis.Win32.Filesystem.Path.HasExtension(System.String)">
  16267. <summary>Determines whether a path includes a file name extension.</summary>
  16268. <returns><see langword="true"/> if the characters that follow the last directory separator (\\ or /) or volume separator (:) in the path include a period (.) followed by one or more characters; otherwise, <see langword="false"/>.</returns>
  16269. <exception cref="T:System.ArgumentException"/>
  16270. <param name="path">The path to search for an extension. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16271. </member>
  16272. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsPathRooted(System.String)">
  16273. <summary>Gets a value indicating whether the specified path string contains absolute or relative path information.</summary>
  16274. <returns><see langword="true"/> if <paramref name="path"/> contains a root; otherwise, <see langword="false"/>.</returns>
  16275. <remarks>
  16276. The IsPathRooted method returns <see langword="true"/> if the first character is a directory separator character such as
  16277. <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/>, or if the path starts with a drive letter and colon (<see cref="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparatorChar"/>).
  16278. For example, it returns true for path strings such as "\\MyDir\\MyFile.txt", "C:\\MyDir", or "C:MyDir".
  16279. It returns <see langword="false"/> for path strings such as "MyDir".
  16280. </remarks>
  16281. <remarks>This method does not verify that the path or file name exists.</remarks>
  16282. <exception cref="T:System.ArgumentException"/>
  16283. <exception cref="T:System.ArgumentNullException"/>
  16284. <param name="path">The path to test. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16285. </member>
  16286. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsPathRooted(System.String,System.Boolean)">
  16287. <summary>[AlphaFS] Gets a value indicating whether the specified path string contains absolute or relative path information.</summary>
  16288. <returns><see langword="true"/> if <paramref name="path"/> contains a root; otherwise, <see langword="false"/>.</returns>
  16289. <remarks>
  16290. The IsPathRooted method returns true if the first character is a directory separator character such as
  16291. <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/>, or if the path starts with a drive letter and colon (<see cref="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparatorChar"/>).
  16292. For example, it returns <see langword="true"/> for path strings such as "\\MyDir\\MyFile.txt", "C:\\MyDir", or "C:MyDir".
  16293. It returns <see langword="false"/> for path strings such as "MyDir".
  16294. </remarks>
  16295. <remarks>This method does not verify that the path or file name exists.</remarks>
  16296. <exception cref="T:System.ArgumentException"/>
  16297. <exception cref="T:System.ArgumentNullException"/>
  16298. <param name="path">The path to test. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16299. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16300. </member>
  16301. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsValidName(System.String)">
  16302. <summary>[AlphaFS] Check if file or folder name has any invalid characters.</summary>
  16303. <exception cref="T:System.ArgumentNullException"/>
  16304. <param name="name">File or folder name.</param>
  16305. <returns><see langword="true"/> if name contains any invalid characters. Otherwise <see langword="false"/></returns>
  16306. </member>
  16307. <member name="M:Alphaleonis.Win32.Filesystem.Path.CheckSupportedPathFormat(System.String,System.Boolean,System.Boolean)">
  16308. <summary>Checks that the given path format is supported.</summary>
  16309. <exception cref="T:System.ArgumentException"/>
  16310. <exception cref="T:System.NotSupportedException"/>
  16311. <param name="path">A path to the file or directory.</param>
  16312. <param name="checkInvalidPathChars">Checks that the path contains only valid path-characters.</param>
  16313. <param name="checkAdditional">.</param>
  16314. </member>
  16315. <member name="M:Alphaleonis.Win32.Filesystem.Path.CheckInvalidPathChars(System.String,System.Boolean,System.Boolean)">
  16316. <summary>Checks that the path contains only valid path-characters.</summary>
  16317. <exception cref="T:System.ArgumentNullException"/>
  16318. <exception cref="T:System.ArgumentException"/>
  16319. <param name="path">A path to the file or directory.</param>
  16320. <param name="checkAdditional"><see langword="true"/> also checks for ? and * characters.</param>
  16321. <param name="allowEmpty">When <see langword="false"/>, throws an <see cref="T:System.ArgumentException"/>.</param>
  16322. </member>
  16323. <member name="M:Alphaleonis.Win32.Filesystem.Path.DosDeviceToDosPath(System.String,System.String)">
  16324. <summary>Tranlates DosDevicePath, Volume GUID. For example: "\Device\HarddiskVolumeX\path\filename.ext" can translate to: "\path\filename.ext" or: "\\?\Volume{GUID}\path\filename.ext".</summary>
  16325. <returns>A translated dos path.</returns>
  16326. <param name="dosDevice">A DosDevicePath, for example: \Device\HarddiskVolumeX\path\filename.ext.</param>
  16327. <param name="deviceReplacement">Alternate path/device text, usually <c>string.Empty</c> or <see langword="null"/>.</param>
  16328. </member>
  16329. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsDVsc(System.Char,System.Nullable{System.Boolean})">
  16330. <summary>Check if <paramref name="c"/> is a directory- and/or volume-separator character.</summary>
  16331. <returns><see langword="true"/> if <paramref name="c"/> is a separator character.</returns>
  16332. <param name="c">The character to check.</param>
  16333. <param name="checkSeparatorChar">
  16334. If <see langword="null"/>, checks for all separator characters: <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/>,
  16335. <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparatorChar"/>
  16336. If <see langword="false"/>, only checks for: <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> and <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/>
  16337. If <see langword="true"/> only checks for: <see cref="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparatorChar"/>
  16338. </param>
  16339. </member>
  16340. <member name="M:Alphaleonis.Win32.Filesystem.Path.ChangeExtension(System.String,System.String)">
  16341. <summary>Changes the extension of a path string.</summary>
  16342. <returns>The modified path information.</returns>
  16343. <exception cref="T:System.ArgumentException"/>
  16344. <param name="path">The path information to modify. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16345. <param name="extension">The new extension (with or without a leading period). Specify <see langword="null"/> to remove an existing extension from path.</param>
  16346. </member>
  16347. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetDirectoryName(System.String)">
  16348. <summary>Returns the directory information for the specified path string.</summary>
  16349. <returns>
  16350. <para>Directory information for <paramref name="path"/>, or <see langword="null"/> if <paramref name="path"/> denotes a root directory or is
  16351. <see langword="null"/>.</para>
  16352. <para>Returns <see cref="F:System.String.Empty"/> if <paramref name="path"/> does not contain directory information.</para>
  16353. </returns>
  16354. <exception cref="T:System.ArgumentException"/>
  16355. <param name="path">The path of a file or directory.</param>
  16356. </member>
  16357. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetDirectoryName(System.String,System.Boolean)">
  16358. <summary>[AlphaFS] Returns the directory information for the specified path string.</summary>
  16359. <returns>
  16360. Directory information for <paramref name="path"/>, or <see langword="null"/> if <paramref name="path"/> denotes a root directory or is
  16361. <see langword="null"/>. Returns <see cref="F:System.String.Empty"/> if <paramref name="path"/> does not contain directory information.
  16362. </returns>
  16363. <exception cref="T:System.ArgumentException"/>
  16364. <param name="path">The path of a file or directory.</param>
  16365. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16366. </member>
  16367. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetDirectoryNameWithoutRoot(System.String)">
  16368. <summary>[AlphaFS] Returns the directory information for the specified path string without the root information, for example: "C:\Windows\system32" returns: "Windows".</summary>
  16369. <returns>The <paramref name="path"/>without the file name part and without the root information (if any), or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> denotes a root (such as "\", "C:", or * "\\server\share").</returns>
  16370. <param name="path">The path.</param>
  16371. </member>
  16372. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetDirectoryNameWithoutRootTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16373. <summary>[AlphaFS] Returns the directory information for the specified path string without the root information, for example: "C:\Windows\system32" returns: "Windows".</summary>
  16374. <returns>The <paramref name="path"/>without the file name part and without the root information (if any), or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> denotes a root (such as "\", "C:", or * "\\server\share").</returns>
  16375. <param name="transaction">The transaction.</param>
  16376. <param name="path">The path.</param>
  16377. </member>
  16378. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetExtension(System.String)">
  16379. <summary>Returns the extension of the specified path string.</summary>
  16380. <returns>
  16381. <para>The extension of the specified path (including the period "."), or null, or <see cref="F:System.String.Empty"/>.</para>
  16382. <para>If <paramref name="path"/> is null, this method returns null.</para>
  16383. <para>If <paramref name="path"/> does not have extension information,
  16384. this method returns <see cref="F:System.String.Empty"/>.</para>
  16385. </returns>
  16386. <exception cref="T:System.ArgumentException"/>
  16387. <exception cref="T:System.ArgumentNullException"/>
  16388. <param name="path">The path string from which to get the extension. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16389. </member>
  16390. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetExtension(System.String,System.Boolean)">
  16391. <summary>Returns the extension of the specified path string.</summary>
  16392. <returns>
  16393. <para>The extension of the specified path (including the period "."), or null, or <see cref="F:System.String.Empty"/>.</para>
  16394. <para>If <paramref name="path"/> is null, this method returns null.</para>
  16395. <para>If <paramref name="path"/> does not have extension information,
  16396. this method returns <see cref="F:System.String.Empty"/>.</para>
  16397. </returns>
  16398. <exception cref="T:System.ArgumentException"/>
  16399. <param name="path">The path string from which to get the extension. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16400. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16401. </member>
  16402. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFileName(System.String)">
  16403. <summary>Returns the file name and extension of the specified path string.</summary>
  16404. <returns>
  16405. The characters after the last directory character in <paramref name="path"/>. If the last character of <paramref name="path"/> is a
  16406. directory or volume separator character, this method returns <c>string.Empty</c>. If path is null, this method returns null.
  16407. </returns>
  16408. <exception cref="T:System.ArgumentException"/>
  16409. <param name="path">The path string from which to obtain the file name and extension. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16410. </member>
  16411. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFileName(System.String,System.Boolean)">
  16412. <summary>[AlphaFS] Returns the file name and extension of the specified path string.</summary>
  16413. <returns>
  16414. The characters after the last directory character in <paramref name="path"/>. If the last character of <paramref name="path"/> is a
  16415. directory or volume separator character, this method returns <c>string.Empty</c>. If path is null, this method returns null.
  16416. </returns>
  16417. <exception cref="T:System.ArgumentException"/>
  16418. <param name="path">The path string from which to obtain the file name and extension.</param>
  16419. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16420. </member>
  16421. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFileNameWithoutExtension(System.String)">
  16422. <summary>Returns the file name of the specified path string without the extension.</summary>
  16423. <returns>The string returned by GetFileName, minus the last period (.) and all characters following it.</returns>
  16424. <exception cref="T:System.ArgumentException"/>
  16425. <param name="path">The path of the file. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16426. </member>
  16427. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFileNameWithoutExtension(System.String,System.Boolean)">
  16428. <summary>[AlphaFS] Returns the file name of the specified path string without the extension.</summary>
  16429. <returns>The string returned by GetFileName, minus the last period (.) and all characters following it.</returns>
  16430. <exception cref="T:System.ArgumentException"/>
  16431. <param name="path">The path of the file. The path cannot contain any of the characters defined in <see cref="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars"/>.</param>
  16432. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16433. </member>
  16434. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidFileNameChars">
  16435. <summary>Gets an array containing the characters that are not allowed in file names.</summary>
  16436. <returns>An array containing the characters that are not allowed in file names.</returns>
  16437. </member>
  16438. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetInvalidPathChars">
  16439. <summary>Gets an array containing the characters that are not allowed in path names.</summary>
  16440. <returns>An array containing the characters that are not allowed in path names.</returns>
  16441. </member>
  16442. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetPathRoot(System.String)">
  16443. <summary>Gets the root directory information of the specified path.</summary>
  16444. <returns>
  16445. Returns the root directory of <paramref name="path"/>, such as "C:\",
  16446. or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/>,
  16447. or an empty string if <paramref name="path"/> does not contain root directory information.
  16448. </returns>
  16449. <exception cref="T:System.ArgumentException"/>
  16450. <param name="path">The path from which to obtain root directory information.</param>
  16451. </member>
  16452. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetPathRoot(System.String,System.Boolean)">
  16453. <summary>[AlphaFS] Gets the root directory information of the specified path.</summary>
  16454. <returns>
  16455. Returns the root directory of <paramref name="path"/>, such as "C:\",
  16456. or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/>,
  16457. or an empty string if <paramref name="path"/> does not contain root directory information.
  16458. </returns>
  16459. <exception cref="T:System.ArgumentException"/>
  16460. <param name="path">The path from which to obtain root directory information.</param>
  16461. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16462. </member>
  16463. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFinalPathNameByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  16464. <summary>[AlphaFS] Retrieves the final path for the specified file, formatted as <see cref="T:Alphaleonis.Win32.Filesystem.FinalPathFormats"/>.</summary>
  16465. <returns>The final path as a string.</returns>
  16466. <remarks>
  16467. A final path is the path that is returned when a path is fully resolved. For example, for a symbolic link named "C:\tmp\mydir" that
  16468. points to "D:\yourdir", the final path would be "D:\yourdir".
  16469. </remarks>
  16470. <param name="handle">Then handle to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> instance.</param>
  16471. </member>
  16472. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFinalPathNameByHandle(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.Filesystem.FinalPathFormats)">
  16473. <summary>[AlphaFS] Retrieves the final path for the specified file, formatted as <see cref="T:Alphaleonis.Win32.Filesystem.FinalPathFormats"/>.</summary>
  16474. <returns>The final path as a string.</returns>
  16475. <remarks>
  16476. A final path is the path that is returned when a path is fully resolved. For example, for a symbolic link named "C:\tmp\mydir" that
  16477. points to "D:\yourdir", the final path would be "D:\yourdir".
  16478. </remarks>
  16479. <param name="handle">Then handle to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> instance.</param>
  16480. <param name="finalPath">The final path, formatted as <see cref="T:Alphaleonis.Win32.Filesystem.FinalPathFormats"/></param>
  16481. </member>
  16482. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFinalPathNameByHandleCore(Microsoft.Win32.SafeHandles.SafeFileHandle,Alphaleonis.Win32.Filesystem.FinalPathFormats)">
  16483. <summary>Retrieves the final path for the specified file, formatted as <see cref="T:Alphaleonis.Win32.Filesystem.FinalPathFormats"/>.</summary>
  16484. <returns>The final path as a string.</returns>
  16485. <remarks>
  16486. A final path is the path that is returned when a path is fully resolved. For example, for a symbolic link named "C:\tmp\mydir" that
  16487. points to "D:\yourdir", the final path would be "D:\yourdir". The string that is returned by this function uses the
  16488. <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/> syntax.
  16489. </remarks>
  16490. <param name="handle">Then handle to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> instance.</param>
  16491. <param name="finalPath">The final path, formatted as <see cref="T:Alphaleonis.Win32.Filesystem.FinalPathFormats"/></param>
  16492. </member>
  16493. <member name="M:Alphaleonis.Win32.Filesystem.Path.Combine(System.String[])">
  16494. <summary>Combines an array of strings into a path.</summary>
  16495. <returns>The combined paths.</returns>
  16496. <exception cref="T:System.ArgumentException"/>
  16497. <exception cref="T:System.ArgumentNullException"/>
  16498. <param name="paths">An array of parts of the path.</param>
  16499. </member>
  16500. <member name="M:Alphaleonis.Win32.Filesystem.Path.CombineCore(System.Boolean,System.String[])">
  16501. <summary>Combines an array of strings into a path.</summary>
  16502. <returns>The combined paths.</returns>
  16503. <remarks>
  16504. <para>The parameters are not parsed if they have white space.</para>
  16505. <para>Therefore, if path2 includes white space (for example, " c:\\ "),</para>
  16506. <para>the Combine method appends path2 to path1 instead of returning only path2.</para>
  16507. </remarks>
  16508. <exception cref="T:System.ArgumentNullException"/>
  16509. <exception cref="T:System.ArgumentException"/>
  16510. <param name="checkInvalidPathChars"><see langword="true"/> will not check <paramref name="paths"/> for invalid path characters.</param>
  16511. <param name="paths">An array of parts of the path.</param>
  16512. </member>
  16513. <member name="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar">
  16514. <summary>AltDirectorySeparatorChar = '/' Provides a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
  16515. </member>
  16516. <member name="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar">
  16517. <summary>DirectorySeparatorChar = '\' Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
  16518. </member>
  16519. <member name="F:Alphaleonis.Win32.Filesystem.Path.PathSeparator">
  16520. <summary>PathSeparator = ';' A platform-specific separator character used to separate path strings in environment variables.</summary>
  16521. </member>
  16522. <member name="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparatorChar">
  16523. <summary>VolumeSeparatorChar = ':' Provides a platform-specific Volume Separator character.</summary>
  16524. </member>
  16525. <member name="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparator">
  16526. <summary>[AlphaFS] AltDirectorySeparatorChar = "/" Provides a platform-specific alternate string used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
  16527. </member>
  16528. <member name="F:Alphaleonis.Win32.Filesystem.Path.CurrentDirectoryPrefixChar">
  16529. <summary>[AlphaFS] CurrentDirectoryPrefix = '.' Provides a current directory character.</summary>
  16530. </member>
  16531. <member name="F:Alphaleonis.Win32.Filesystem.Path.CurrentDirectoryPrefix">
  16532. <summary>[AlphaFS] CurrentDirectoryPrefix = "." Provides a current directory string.</summary>
  16533. </member>
  16534. <member name="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparator">
  16535. <summary>[AlphaFS] DirectorySeparator = "\" Provides a platform-specific string used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
  16536. </member>
  16537. <member name="F:Alphaleonis.Win32.Filesystem.Path.ExtensionSeparatorChar">
  16538. <summary>[AlphaFS] ExtensionSeparatorChar = '.' Provides an Extension Separator character.</summary>
  16539. </member>
  16540. <member name="F:Alphaleonis.Win32.Filesystem.Path.ParentDirectoryPrefix">
  16541. <summary>[AlphaFS] ParentDirectoryPrefix = ".." Provides a parent directory string.</summary>
  16542. </member>
  16543. <member name="F:Alphaleonis.Win32.Filesystem.Path.StreamSeparatorChar">
  16544. <summary>[AlphaFS] StreamSeparator = ':' Provides a platform-specific Stream-name character.</summary>
  16545. </member>
  16546. <member name="F:Alphaleonis.Win32.Filesystem.Path.StreamSeparator">
  16547. <summary>[AlphaFS] StreamSeparator = ':' Provides a platform-specific Stream-name character.</summary>
  16548. </member>
  16549. <member name="F:Alphaleonis.Win32.Filesystem.Path.StreamDataLabel">
  16550. <summary>[AlphaFS] StreamDataLabel = ':$DATA' Provides a platform-specific Stream :$DATA label.</summary>
  16551. </member>
  16552. <member name="F:Alphaleonis.Win32.Filesystem.Path.StringTerminatorChar">
  16553. <summary>[AlphaFS] StringTerminatorChar = '\0' String Terminator Suffix.</summary>
  16554. </member>
  16555. <member name="F:Alphaleonis.Win32.Filesystem.Path.TrimEndChars">
  16556. <summary>[AlphaFS] Characters to trim from the SearchPattern.</summary>
  16557. </member>
  16558. <member name="F:Alphaleonis.Win32.Filesystem.Path.VolumeSeparator">
  16559. <summary>[AlphaFS] VolumeSeparatorChar = ':' Provides a platform-specific Volume Separator character.</summary>
  16560. </member>
  16561. <member name="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAll">
  16562. <summary>[AlphaFS] WildcardStarMatchAll = "*" Provides a match-all-items string.</summary>
  16563. </member>
  16564. <member name="F:Alphaleonis.Win32.Filesystem.Path.WildcardStarMatchAllChar">
  16565. <summary>[AlphaFS] WildcardStarMatchAll = '*' Provides a match-all-items character.</summary>
  16566. </member>
  16567. <member name="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestion">
  16568. <summary>[AlphaFS] WildcardQuestion = "?" Provides a replace-item string.</summary>
  16569. </member>
  16570. <member name="F:Alphaleonis.Win32.Filesystem.Path.WildcardQuestionChar">
  16571. <summary>[AlphaFS] WildcardQuestion = '?' Provides a replace-item string.</summary>
  16572. </member>
  16573. <member name="F:Alphaleonis.Win32.Filesystem.Path.UncPrefix">
  16574. <summary>[AlphaFS] UncPrefix = "\\" Provides standard Windows Path UNC prefix.</summary>
  16575. </member>
  16576. <member name="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix">
  16577. <summary>[AlphaFS] LongPathPrefix = "\\?\" Provides standard Windows Long Path prefix.</summary>
  16578. </member>
  16579. <member name="F:Alphaleonis.Win32.Filesystem.Path.LongPathUncPrefix">
  16580. <summary>[AlphaFS] LongPathUncPrefix = "\\?\UNC\" Provides standard Windows Long Path UNC prefix.</summary>
  16581. </member>
  16582. <member name="F:Alphaleonis.Win32.Filesystem.Path.GlobalRootPrefix">
  16583. <summary>[AlphaFS] GlobalRootPrefix = "\\?\GLOBALROOT\" Provides standard Windows Volume prefix.</summary>
  16584. </member>
  16585. <member name="F:Alphaleonis.Win32.Filesystem.Path.LogicalDrivePrefix">
  16586. <summary>[AlphaFS] MsDosNamespacePrefix = "\\.\" Provides standard logical drive prefix.</summary>
  16587. </member>
  16588. <member name="F:Alphaleonis.Win32.Filesystem.Path.SubstitutePrefix">
  16589. <summary>[AlphaFS] SubstitutePrefix = "\??\" Provides a SUBST.EXE Path prefix to a Logical Drive.</summary>
  16590. </member>
  16591. <member name="F:Alphaleonis.Win32.Filesystem.Path.VolumePrefix">
  16592. <summary>[AlphaFS] VolumePrefix = "\\?\Volume" Provides standard Windows Volume prefix.</summary>
  16593. </member>
  16594. <member name="F:Alphaleonis.Win32.Filesystem.Path.DevicePrefix">
  16595. <summary>[AlphaFS] DevicePrefix = "\Device\" Provides standard Windows Device prefix.</summary>
  16596. </member>
  16597. <member name="F:Alphaleonis.Win32.Filesystem.Path.DosDeviceLanmanPrefix">
  16598. <summary>[AlphaFS] DosDeviceLanmanPrefix = "\Device\LanmanRedirector\" Provides a MS-Dos Lanman Redirector Path UNC prefix to a network share.</summary>
  16599. </member>
  16600. <member name="F:Alphaleonis.Win32.Filesystem.Path.DosDeviceMupPrefix">
  16601. <summary>[AlphaFS] DosDeviceMupPrefix = "\Device\Mup\" Provides a MS-Dos Mup Redirector Path UNC prefix to a network share.</summary>
  16602. </member>
  16603. <member name="F:Alphaleonis.Win32.Filesystem.Path.DosDeviceUncPrefix">
  16604. <summary>[AlphaFS] DosDeviceUncPrefix = "\??\UNC\" Provides a SUBST.EXE Path UNC prefix to a network share.</summary>
  16605. </member>
  16606. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFullPath(System.String)">
  16607. <summary>Returns the absolute path for the specified path string.</summary>
  16608. <returns>The fully qualified location of path, such as "C:\MyFile.txt".</returns>
  16609. <remarks>
  16610. <para>GetFullPathName merges the name of the current drive and directory with a specified file name to determine the full path and file name of a specified file.</para>
  16611. <para>It also calculates the address of the file name portion of the full path and file name.</para>
  16612. <para>&#160;</para>
  16613. <para>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</para>
  16614. <para>The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0".</para>
  16615. <para>&#160;</para>
  16616. <para>MSDN: Multithreaded applications and shared library code should not use the GetFullPathName function and</para>
  16617. <para>should avoid using relative path names. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,</para>
  16618. <para>therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.</para>
  16619. <para>This limitation also applies to the SetCurrentDirectory and GetCurrentDirectory functions. The exception being when the application is guaranteed to be running in a single thread,</para>
  16620. <para>for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  16621. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  16622. </remarks>
  16623. <exception cref="T:System.ArgumentNullException"/>
  16624. <exception cref="T:System.ArgumentException"/>
  16625. <exception cref="T:System.NotSupportedException"/>
  16626. <param name="path">The file or directory for which to obtain absolute path information.</param>
  16627. </member>
  16628. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFullPath(System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16629. <summary>Returns the absolute path for the specified path string.</summary>
  16630. <returns>The fully qualified location of path, such as "C:\MyFile.txt".</returns>
  16631. <remarks>
  16632. <para>GetFullPathName merges the name of the current drive and directory with a specified file name to determine the full path and file name of a specified file.</para>
  16633. <para>It also calculates the address of the file name portion of the full path and file name.</para>
  16634. <para>&#160;</para>
  16635. <para>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</para>
  16636. <para>The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0".</para>
  16637. <para>&#160;</para>
  16638. <para>MSDN: Multithreaded applications and shared library code should not use the GetFullPathName function and</para>
  16639. <para>should avoid using relative path names. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,</para>
  16640. <para>therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.</para>
  16641. <para>This limitation also applies to the SetCurrentDirectory and GetCurrentDirectory functions. The exception being when the application is guaranteed to be running in a single thread,</para>
  16642. <para>for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  16643. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  16644. </remarks>
  16645. <exception cref="T:System.ArgumentNullException"/>
  16646. <exception cref="T:System.ArgumentException"/>
  16647. <exception cref="T:System.NotSupportedException"/>
  16648. <param name="path">The file or directory for which to obtain absolute path information.</param>
  16649. <param name="options">Options for controlling the full path retrieval.</param>
  16650. </member>
  16651. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFullPathTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16652. <summary>[AlphaFS] Returns the absolute path for the specified path string.</summary>
  16653. <returns>The fully qualified location of path, such as "C:\MyFile.txt".</returns>
  16654. <remarks>
  16655. <para>GetFullPathName merges the name of the current drive and directory with a specified file name to determine the full path and file name of a specified file.</para>
  16656. <para>It also calculates the address of the file name portion of the full path and file name.</para>
  16657. <para>&#160;</para>
  16658. <para>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</para>
  16659. <para>The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0".</para>
  16660. <para>&#160;</para>
  16661. <para>MSDN: Multithreaded applications and shared library code should not use the GetFullPathName function and</para>
  16662. <para>should avoid using relative path names. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,</para>
  16663. <para>therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.</para>
  16664. <para>This limitation also applies to the SetCurrentDirectory and GetCurrentDirectory functions. The exception being when the application is guaranteed to be running in a single thread,</para>
  16665. <para>for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  16666. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  16667. </remarks>
  16668. <exception cref="T:System.ArgumentException"/>
  16669. <exception cref="T:System.ArgumentNullException"/>
  16670. <exception cref="T:System.NotSupportedException"/>
  16671. <param name="transaction">The transaction.</param>
  16672. <param name="path">The file or directory for which to obtain absolute path information.</param>
  16673. </member>
  16674. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFullPathTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16675. <summary>[AlphaFS] Returns the absolute path for the specified path string.</summary>
  16676. <returns>The fully qualified location of path, such as "C:\MyFile.txt".</returns>
  16677. <remarks>
  16678. <para>GetFullPathName merges the name of the current drive and directory with a specified file name to determine the full path and file name of a specified file.</para>
  16679. <para>It also calculates the address of the file name portion of the full path and file name.</para>
  16680. <para>&#160;</para>
  16681. <para>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</para>
  16682. <para>The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0".</para>
  16683. <para>&#160;</para>
  16684. <para>MSDN: Multithreaded applications and shared library code should not use the GetFullPathName function and</para>
  16685. <para>should avoid using relative path names. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,</para>
  16686. <para>therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.</para>
  16687. <para>This limitation also applies to the SetCurrentDirectory and GetCurrentDirectory functions. The exception being when the application is guaranteed to be running in a single thread,</para>
  16688. <para>for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  16689. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  16690. </remarks>
  16691. <exception cref="T:System.ArgumentException"/>
  16692. <exception cref="T:System.ArgumentNullException"/>
  16693. <exception cref="T:System.NotSupportedException"/>
  16694. <param name="transaction">The transaction.</param>
  16695. <param name="path">The file or directory for which to obtain absolute path information.</param>
  16696. <param name="options">Options for controlling the full path retrieval.</param>
  16697. </member>
  16698. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetFullPathCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16699. <summary>Retrieves the absolute path for the specified <paramref name="path"/> string.</summary>
  16700. <returns>The fully qualified location of <paramref name="path"/>, such as "C:\MyFile.txt".</returns>
  16701. <remarks>
  16702. <para>GetFullPathName merges the name of the current drive and directory with a specified file name to determine the full path and file name of a specified file.</para>
  16703. <para>It also calculates the address of the file name portion of the full path and file name.</para>
  16704. <para>&#160;</para>
  16705. <para>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</para>
  16706. <para>The .NET Framework does not support direct access to physical disks through paths that are device names, such as "\\.\PHYSICALDRIVE0".</para>
  16707. <para>&#160;</para>
  16708. <para>MSDN: Multithreaded applications and shared library code should not use the GetFullPathName function and</para>
  16709. <para>should avoid using relative path names. The current directory state written by the SetCurrentDirectory function is stored as a global variable in each process,</para>
  16710. <para>therefore multithreaded applications cannot reliably use this value without possible data corruption from other threads that may also be reading or setting this value.</para>
  16711. <para>This limitation also applies to the SetCurrentDirectory and GetCurrentDirectory functions. The exception being when the application is guaranteed to be running in a single thread,</para>
  16712. <para>for example parsing file names from the command line argument string in the main thread prior to creating any additional threads.</para>
  16713. <para>Using relative path names in multithreaded applications or shared library code can yield unpredictable results and is not supported.</para>
  16714. </remarks>
  16715. <exception cref="T:System.ArgumentException"/>
  16716. <exception cref="T:System.ArgumentNullException"/>
  16717. <param name="transaction">The transaction.</param>
  16718. <param name="path">The file or directory for which to obtain absolute path information.</param>
  16719. <param name="options">Options for controlling the full path retrieval.</param>
  16720. </member>
  16721. <member name="M:Alphaleonis.Win32.Filesystem.Path.ApplyFullPathOptions(System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16722. <summary>Applies the <seealso cref="T:Alphaleonis.Win32.Filesystem.GetFullPathOptions"/> to <paramref name="path"/></summary>
  16723. <returns><paramref name="path"/> with applied <paramref name="options"/>.</returns>
  16724. <exception cref="T:System.ArgumentNullException"/>
  16725. <exception cref="T:System.ArgumentException"/>
  16726. <param name="path"></param>
  16727. <param name="options"></param>
  16728. </member>
  16729. <member name="M:Alphaleonis.Win32.Filesystem.Path.AddTrailingDirectorySeparator(System.String)">
  16730. <summary>[AlphaFS] Adds a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character to the string, when absent.</summary>
  16731. <returns>A text string with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character. The function returns <see langword="null"/> when <paramref name="path"/> is <see langword="null"/>.</returns>
  16732. <param name="path">A text string to which the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> is to be added, when absent.</param>
  16733. </member>
  16734. <member name="M:Alphaleonis.Win32.Filesystem.Path.AddTrailingDirectorySeparator(System.String,System.Boolean)">
  16735. <summary>[AlphaFS] Adds a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character to the string, when absent.</summary>
  16736. <returns>A text string with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character. The function returns <see langword="null"/> when <paramref name="path"/> is <see langword="null"/>.</returns>
  16737. <param name="path">A text string to which the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> is to be added, when absent.</param>
  16738. <param name="addAlternateSeparator">If <see langword="true"/> the <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character will be added instead.</param>
  16739. </member>
  16740. <member name="M:Alphaleonis.Win32.Filesystem.Path.RemoveTrailingDirectorySeparator(System.String)">
  16741. <summary>[AlphaFS] Removes the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character from the string, when present.</summary>
  16742. <returns>A text string where the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character has been removed. The function returns <see langword="null"/> when <paramref name="path"/> is <see langword="null"/>.</returns>
  16743. <param name="path">A text string from which the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> is to be removed, when present.</param>
  16744. </member>
  16745. <member name="M:Alphaleonis.Win32.Filesystem.Path.RemoveTrailingDirectorySeparator(System.String,System.Boolean)">
  16746. <summary>[AlphaFS] Removes the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character from the string, when present.</summary>
  16747. <returns>A text string where the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character has been removed. The function returns <see langword="null"/> when <paramref name="path"/> is <see langword="null"/>.</returns>
  16748. <param name="path">A text string from which the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> is to be removed, when present.</param>
  16749. <param name="removeAlternateSeparator">If <see langword="true"/> the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.AltDirectorySeparatorChar"/> character will be removed instead.</param>
  16750. </member>
  16751. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryName(System.String)">
  16752. <summary>[AlphaFS] Returns the directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16753. <returns>
  16754. <para>The suffixed directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16755. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> denotes a root (such as "\", "C:", or * "\\server\share").</para>
  16756. </returns>
  16757. <remarks>This method is similar to calling Path.GetDirectoryName() + Path.AddTrailingDirectorySeparator()</remarks>
  16758. <param name="path">The path.</param>
  16759. </member>
  16760. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryNameTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16761. <summary>[AlphaFS] Returns the directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16762. <returns>
  16763. <para>The suffixed directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16764. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> denotes a root (such as "\", "C:", or * "\\server\share").</para>
  16765. </returns>
  16766. <remarks>This method is similar to calling Path.GetDirectoryName() + Path.AddTrailingDirectorySeparator()</remarks>
  16767. <param name="transaction">The transaction.</param>
  16768. <param name="path">The path.</param>
  16769. </member>
  16770. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryNameWithoutRoot(System.String)">
  16771. <summary>[AlphaFS] Returns the directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16772. <returns>
  16773. <para>The directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16774. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> is <see langword="null"/>.</para>
  16775. </returns>
  16776. <param name="path">The path.</param>
  16777. </member>
  16778. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryNameWithoutRootTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16779. <summary>[AlphaFS] Returns the directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16780. <returns>
  16781. <para>The directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16782. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> is <see langword="null"/>.</para>
  16783. </returns>
  16784. <param name="transaction">The transaction.</param>
  16785. <param name="path">The path.</param>
  16786. </member>
  16787. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryNameCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16788. <summary>Returns the directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16789. <returns>
  16790. <para>The suffixed directory information for the specified <paramref name="path"/> with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16791. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> denotes a root (such as "\", "C:", or * "\\server\share").</para>
  16792. </returns>
  16793. <remarks>This method is similar to calling Path.GetDirectoryName() + Path.AddTrailingDirectorySeparator()</remarks>
  16794. <param name="transaction">The transaction.</param>
  16795. <param name="path">The path.</param>
  16796. </member>
  16797. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetSuffixedDirectoryNameWithoutRootCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16798. <summary>Returns the directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character.</summary>
  16799. <returns>
  16800. <para>The directory information for the specified <paramref name="path"/> without the root and with a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character,</para>
  16801. <para>or <see langword="null"/> if <paramref name="path"/> is <see langword="null"/> or if <paramref name="path"/> is <see langword="null"/>.</para>
  16802. </returns>
  16803. <param name="transaction">The transaction.</param>
  16804. <param name="path">The path.</param>
  16805. </member>
  16806. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetMappedConnectionName(System.String)">
  16807. <summary>[AlphaFS] Gets the connection name of the locally mapped drive.</summary>
  16808. <returns>The server and share as: \\servername\sharename.</returns>
  16809. <exception cref="T:System.ArgumentException"/>
  16810. <exception cref="T:System.ArgumentNullException"/>
  16811. <exception cref="T:System.IO.PathTooLongException"/>
  16812. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16813. <param name="path">The local path with drive name.</param>
  16814. </member>
  16815. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetMappedUncName(System.String)">
  16816. <summary>[AlphaFS] Gets the network share name from the locally mapped path.</summary>
  16817. <returns>The network share connection name of <paramref name="path"/>.</returns>
  16818. <exception cref="T:System.ArgumentException"/>
  16819. <exception cref="T:System.ArgumentNullException"/>
  16820. <exception cref="T:System.IO.PathTooLongException"/>
  16821. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16822. <param name="path">The local path with drive name.</param>
  16823. </member>
  16824. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsUncPath(System.String)">
  16825. <summary>[AlphaFS] Determines if a path string is a valid Universal Naming Convention (UNC) path.</summary>
  16826. <returns><see langword="true"/> if the specified path is a Universal Naming Convention (UNC) path, <see langword="false"/> otherwise.</returns>
  16827. <param name="path">The path to check.</param>
  16828. </member>
  16829. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsUncPath(System.String,System.Boolean)">
  16830. <summary>[AlphaFS] Determines if a path string is a valid Universal Naming Convention (UNC) path, optionally skip invalid path character check.</summary>
  16831. <returns><see langword="true"/> if the specified path is a Universal Naming Convention (UNC) path, <see langword="false"/> otherwise.</returns>
  16832. <param name="path">The path to check.</param>
  16833. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16834. </member>
  16835. <member name="M:Alphaleonis.Win32.Filesystem.Path.LocalToUnc(System.String)">
  16836. <summary>[AlphaFS] Converts a local path to a network share path.
  16837. <para>A Local path, e.g.: "C:\Windows" will be returned as: "\\MachineName\C$\Windows".</para>
  16838. <para>If a logical drive points to a network share path, the share path will be returned instead.</para>
  16839. </summary>
  16840. <returns>On successful conversion a UNC path is returned.
  16841. <para>If the conversion fails, <paramref name="localPath"/> is returned.</para>
  16842. <para>If <paramref name="localPath"/> is an empty string or <see langword="null"/>, <see langword="null"/> is returned.</para>
  16843. </returns>
  16844. <exception cref="T:System.ArgumentException"/>
  16845. <exception cref="T:System.IO.PathTooLongException"/>
  16846. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16847. <param name="localPath">A local path, e.g.: "C:\Windows".</param>
  16848. </member>
  16849. <member name="M:Alphaleonis.Win32.Filesystem.Path.LocalToUnc(System.String,System.Boolean)">
  16850. <summary>[AlphaFS] Converts a local path to a network share path, optionally returning it in a long path format.
  16851. <para>A Local path, e.g.: "C:\Windows" will be returned as: "\\MachineName\C$\Windows".</para>
  16852. <para>If a logical drive points to a network share path, the share path will be returned instead.</para>
  16853. </summary>
  16854. <returns>On successful conversion a UNC path is returned.
  16855. <para>If the conversion fails, <paramref name="localPath"/> is returned.</para>
  16856. <para>If <paramref name="localPath"/> is an empty string or <see langword="null"/>, <see langword="null"/> is returned.</para>
  16857. </returns>
  16858. <exception cref="T:System.ArgumentException"/>
  16859. <exception cref="T:System.IO.PathTooLongException"/>
  16860. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16861. <param name="localPath">A local path, e.g.: "C:\Windows".</param>
  16862. <param name="asLongPath"><see langword="true"/> returns the path in long path (Unicode) format, when <see langword="false"/> returns the path as a regular path.</param>
  16863. </member>
  16864. <member name="M:Alphaleonis.Win32.Filesystem.Path.LocalToUnc(System.String,System.Boolean,System.Boolean,System.Boolean)">
  16865. <summary>[AlphaFS] Converts a local path to a network share path, optionally returning it in a long path format and the ability to add or remove a trailing backslash.
  16866. <para>A Local path, e.g.: "C:\Windows" will be returned as: "\\MachineName\C$\Windows".</para>
  16867. <para>If a logical drive points to a network share path, the share path will be returned instead.</para>
  16868. </summary>
  16869. <returns>On successful conversion a UNC path is returned.
  16870. <para>If the conversion fails, <paramref name="localPath"/> is returned.</para>
  16871. <para>If <paramref name="localPath"/> is an empty string or <see langword="null"/>, <see langword="null"/> is returned.</para>
  16872. </returns>
  16873. <exception cref="T:System.ArgumentException"/>
  16874. <exception cref="T:System.IO.PathTooLongException"/>
  16875. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16876. <param name="localPath">A local path, e.g.: "C:\Windows".</param>
  16877. <param name="asLongPath"><see langword="true"/> returns the path in long path (Unicode) format, when <see langword="false"/> returns the path as a regular path.</param>
  16878. <param name="addTrailingDirectorySeparator"><see langword="true"/> adds a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character to <paramref name="localPath"/>, when absent.</param>
  16879. <param name="removeTrailingDirectorySeparator"><see langword="true"/> removes the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character from <paramref name="localPath"/>, when present.</param>
  16880. </member>
  16881. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsUncPathCore(System.String,System.Boolean,System.Boolean)">
  16882. <summary>[AlphaFS] Determines if a path string is a valid Universal Naming Convention (UNC) path, optionally skip invalid path character check.</summary>
  16883. <returns><see langword="true"/> if the specified path is a Universal Naming Convention (UNC) path, <see langword="false"/> otherwise.</returns>
  16884. <param name="path">The path to check.</param>
  16885. <param name="isRegularPath">When <see langword="true"/> indicates that <paramref name="path"/> is already in regular path format.</param>
  16886. <param name="checkInvalidPathChars"><see langword="true"/> will check <paramref name="path"/> for invalid path characters.</param>
  16887. </member>
  16888. <member name="M:Alphaleonis.Win32.Filesystem.Path.LocalToUncCore(System.String,System.Boolean,System.Boolean,System.Boolean)">
  16889. <summary>Converts a local path to a network share path.
  16890. <para>A Local path, e.g.: "C:\Windows" will be returned as: "\\MachineName\C$\Windows".</para>
  16891. <para>If a logical drive points to a network share path, the share path will be returned instead.</para>
  16892. </summary>
  16893. <returns>On successful conversion a UNC path is returned.
  16894. <para>If the conversion fails, <paramref name="localPath"/> is returned.</para>
  16895. <para>If <paramref name="localPath"/> is an empty string or <see langword="null"/>, <see langword="null"/> is returned.</para>
  16896. </returns>
  16897. <exception cref="T:System.ArgumentException"/>
  16898. <exception cref="T:System.IO.PathTooLongException"/>
  16899. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  16900. <param name="localPath">A local path, e.g.: "C:\Windows".</param>
  16901. <param name="asLongPath"><see langword="true"/> returns the path in long path (Unicode) format, when <see langword="false"/> returns the path as a regular path.</param>
  16902. <param name="addTrailingDirectorySeparator"><see langword="true"/> adds a trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character to <paramref name="localPath"/>, when absent.</param>
  16903. <param name="removeTrailingDirectorySeparator"><see langword="true"/> removes the trailing <see cref="F:Alphaleonis.Win32.Filesystem.Path.DirectorySeparatorChar"/> character from <paramref name="localPath"/>, when present.</param>
  16904. </member>
  16905. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetLongPath(System.String)">
  16906. <summary>Makes an extended long path from the specified <paramref name="path"/> by prefixing <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/>.</summary>
  16907. <returns>The <paramref name="path"/> prefixed with a <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/>, the minimum required full path is: "C:\".</returns>
  16908. <remarks>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</remarks>
  16909. <exception cref="T:System.ArgumentNullException"/>
  16910. <exception cref="T:System.ArgumentException"/>
  16911. <param name="path">The path to the file or directory, this can also be an UNC path.</param>
  16912. </member>
  16913. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetLongFrom83ShortPath(System.String)">
  16914. <summary>[AlphaFS] Converts the specified existing path to its regular long form.</summary>
  16915. <param name="path">An existing path to a folder or file.</param>
  16916. <returns>The regular full path.</returns>
  16917. </member>
  16918. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetLongFrom83ShortPathTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16919. <summary>[AlphaFS] Converts the specified existing path to its regular long form.</summary>
  16920. <param name="transaction">The transaction.</param>
  16921. <param name="path">An existing path to a folder or file.</param>
  16922. <returns>The regular full path.</returns>
  16923. </member>
  16924. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetRegularPath(System.String)">
  16925. <summary>[AlphaFS] Gets the regular path from long prefixed one. i.e.: "\\?\C:\Temp\file.txt" to C:\Temp\file.txt" or: "\\?\UNC\Server\share\file.txt" to "\\Server\share\file.txt".</summary>
  16926. <returns>Regular form path string.</returns>
  16927. <remarks>This method does not handle paths with volume names, eg. \\?\Volume{GUID}\Folder\file.txt.</remarks>
  16928. <param name="path">The path.</param>
  16929. </member>
  16930. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetShort83Path(System.String)">
  16931. <summary>[AlphaFS] Retrieves the short path form of the specified path.</summary>
  16932. <returns>A path that has the 8.3 path form.</returns>
  16933. <remarks>Will fail on NTFS volumes with disabled 8.3 name generation.</remarks>
  16934. <remarks>The path must actually exist to be able to get the short path name.</remarks>
  16935. <param name="path">An existing path to a folder or file.</param>
  16936. </member>
  16937. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetShort83PathTransacted(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String)">
  16938. <summary>[AlphaFS] Retrieves the short path form of the specified path.</summary>
  16939. <returns>A path that has the 8.3 path form.</returns>
  16940. <remarks>Will fail on NTFS volumes with disabled 8.3 name generation.</remarks>
  16941. <remarks>The path must actually exist to be able to get the short path name.</remarks>
  16942. <param name="transaction">The transaction.</param>
  16943. <param name="path">An existing path to a folder or file.</param>
  16944. </member>
  16945. <member name="M:Alphaleonis.Win32.Filesystem.Path.IsLongPath(System.String)">
  16946. <summary>[AlphaFS] Determines whether the specified path starts with a <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathUncPrefix"/>.</summary>
  16947. <returns><see langword="true"/> if the specified path has a long path (UNC) prefix, <see langword="false"/> otherwise.</returns>
  16948. <param name="path">The path to the file or directory.</param>
  16949. </member>
  16950. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetLongPathCore(System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16951. <summary>Makes an extended long path from the specified <paramref name="path"/> by prefixing <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/>.</summary>
  16952. <returns>The <paramref name="path"/> prefixed with a <see cref="F:Alphaleonis.Win32.Filesystem.Path.LongPathPrefix"/>, the minimum required full path is: "C:\".</returns>
  16953. <remarks>This method does not verify that the resulting path and file name are valid, or that they see an existing file on the associated volume.</remarks>
  16954. <exception cref="T:System.ArgumentNullException"/>
  16955. <exception cref="T:System.ArgumentException"/>
  16956. <param name="path">The path to the file or directory, this can also be an UNC path.</param>
  16957. <param name="options">Options for controlling the full path retrieval.</param>
  16958. </member>
  16959. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetLongShort83PathCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,System.Boolean)">
  16960. <summary>Retrieves the short path form, or the regular long form of the specified <paramref name="path"/>.</summary>
  16961. <returns>If <paramref name="getShort"/> is <see langword="true"/>, a path of the 8.3 form otherwise the regular long form.</returns>
  16962. <remarks>
  16963. <para>Will fail on NTFS volumes with disabled 8.3 name generation.</para>
  16964. <para>The path must actually exist to be able to get the short- or long path name.</para>
  16965. </remarks>
  16966. <param name="transaction">The transaction.</param>
  16967. <param name="path">An existing path to a folder or file.</param>
  16968. <param name="getShort"><see langword="true"/> to retrieve the short path form, <see langword="false"/> to retrieve the regular long form from the 8.3 <paramref name="path"/>.</param>
  16969. </member>
  16970. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetRegularPathCore(System.String,Alphaleonis.Win32.Filesystem.GetFullPathOptions,System.Boolean)">
  16971. <summary>Gets the regular path from a long path.</summary>
  16972. <returns>
  16973. <para>Returns the regular form of a long <paramref name="path"/>.</para>
  16974. <para>For example: "\\?\C:\Temp\file.txt" to: "C:\Temp\file.txt", or: "\\?\UNC\Server\share\file.txt" to: "\\Server\share\file.txt".</para>
  16975. </returns>
  16976. <remarks>
  16977. MSDN: String.TrimEnd Method notes to Callers: http://msdn.microsoft.com/en-us/library/system.string.trimend%28v=vs.110%29.aspx
  16978. </remarks>
  16979. <exception cref="T:System.ArgumentNullException"/>
  16980. <exception cref="T:System.ArgumentException"/>
  16981. <param name="path">The path.</param>
  16982. <param name="options">Options for controlling the full path retrieval.</param>
  16983. <param name="allowEmpty">When <see langword="false"/>, throws an <see cref="T:System.ArgumentException"/>.</param>
  16984. </member>
  16985. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetExtendedLengthPathCore(Alphaleonis.Win32.Filesystem.KernelTransaction,System.String,Alphaleonis.Win32.Filesystem.PathFormat,Alphaleonis.Win32.Filesystem.GetFullPathOptions)">
  16986. <summary>Gets the path as a long full path.</summary>
  16987. <returns>The path as an extended length path.</returns>
  16988. <exception cref="T:System.ArgumentException"/>
  16989. <param name="transaction">The transaction.</param>
  16990. <param name="sourcePath">Full pathname of the source path to convert.</param>
  16991. <param name="pathFormat">The path format to use.</param>
  16992. <param name="options">Options for controlling the operation. Note that on .NET 3.5 the TrimEnd option has no effect.</param>
  16993. </member>
  16994. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetRandomFileName">
  16995. <summary>Returns a random folder name or file name.</summary>
  16996. <returns>A random folder name or file name.</returns>
  16997. </member>
  16998. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetTempFileName">
  16999. <summary>Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.</summary>
  17000. <returns>The full path of the temporary file.</returns>
  17001. </member>
  17002. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetTempPath">
  17003. <summary>Returns the path of the current user's temporary folder.</summary>
  17004. <returns>The path to the temporary folder, ending with a backslash.</returns>
  17005. </member>
  17006. <member name="M:Alphaleonis.Win32.Filesystem.Path.GetTempPath(System.String)">
  17007. <summary>[AlphaFS] Returns the path of the current user's temporary folder.</summary>
  17008. <param name="combinePath">The folder name to append to the temporary folder.</param>
  17009. <returns>The path to the temporary folder, combined with <paramref name="combinePath"/>.</returns>
  17010. </member>
  17011. <member name="T:Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle">
  17012. <summary>Represents a wrapper class for a handle used by the CM_Connect_Machine/CM_Disconnect_Machine Win32 API functions.</summary>
  17013. </member>
  17014. <member name="M:Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle.#ctor">
  17015. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeCmConnectMachineHandle"/> class.</summary>
  17016. </member>
  17017. <member name="T:Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle">
  17018. <summary>Represents a wrapper class for a handle used by the FindFirstFile/FindNextFile Win32 API functions.</summary>
  17019. </member>
  17020. <member name="M:Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle.#ctor">
  17021. <summary>Constructor that prevents a default instance of this class from being created.</summary>
  17022. </member>
  17023. <member name="M:Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle.#ctor(System.IntPtr,System.Boolean)">
  17024. <summary>Constructor that prevents a default instance of this class from being created.</summary>
  17025. <param name="handle">The handle.</param>
  17026. <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent
  17027. reliable release (not recommended).</param>
  17028. </member>
  17029. <member name="M:Alphaleonis.Win32.Filesystem.SafeEncryptedFileRawHandle.ReleaseHandle">
  17030. <summary>When overridden in a derived class, executes the code required to free the handle.</summary>
  17031. <returns><see langword="true"/> if the handle is released successfully; otherwise, in the event of a catastrophic failure, <see langword="false"/>. In this case, it generates a ReleaseHandleFailed Managed Debugging Assistant.</returns>
  17032. </member>
  17033. <member name="T:Alphaleonis.Win32.Filesystem.Shell32Info">
  17034. <summary>Contains Shell32 information about a file.</summary>
  17035. </member>
  17036. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.#ctor(System.String)">
  17037. <summary>Initializes a Shell32Info instance.
  17038. <remarks>Shell32 is limited to MAX_PATH length.</remarks>
  17039. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  17040. </summary>
  17041. <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>
  17042. </member>
  17043. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.#ctor(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  17044. <summary>Initializes a Shell32Info instance.
  17045. <remarks>Shell32 is limited to MAX_PATH length.</remarks>
  17046. <remarks>This constructor does not check if a file exists. This constructor is a placeholder for a string that is used to access the file in subsequent operations.</remarks>
  17047. </summary>
  17048. <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>
  17049. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  17050. </member>
  17051. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.GetIcon(Alphaleonis.Win32.Filesystem.Shell32.FileAttributes)">
  17052. <summary>Gets an <see cref="T:System.IntPtr"/> handle to the Shell icon that represents the file.</summary>
  17053. <param name="iconAttributes">Icon size <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.SmallIcon"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.LargeIcon"/>. Can also be combined with <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.AddOverlays"/> and others.</param>
  17054. <returns>An <see cref="T:System.IntPtr"/> handle to the Shell icon that represents the file.</returns>
  17055. <remarks>Caller is responsible for destroying this handle with DestroyIcon() when no longer needed.</remarks>
  17056. </member>
  17057. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.GetVerbCommand(System.String)">
  17058. <summary>Gets the Shell command association from the registry.</summary>
  17059. <param name="shellVerb">The shell verb.</param>
  17060. <returns>
  17061. Returns the associated file- or protocol-related Shell command from the registry or <c>string.Empty</c> if no association can be
  17062. found.
  17063. </returns>
  17064. </member>
  17065. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.Refresh">
  17066. <summary>Refreshes the state of the object.</summary>
  17067. </member>
  17068. <member name="M:Alphaleonis.Win32.Filesystem.Shell32Info.ToString">
  17069. <summary>Returns the path as a string.</summary>
  17070. <returns>The path.</returns>
  17071. </member>
  17072. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.Association">
  17073. <summary>Gets the Shell file or protocol association from the registry.</summary>
  17074. </member>
  17075. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.Attributes">
  17076. <summary>The attributes of the file object.</summary>
  17077. </member>
  17078. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.Command">
  17079. <summary>Gets the Shell command association from the registry.</summary>
  17080. </member>
  17081. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.ContentType">
  17082. <summary>Gets the Shell command association from the registry.</summary>
  17083. </member>
  17084. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.DdeApplication">
  17085. <summary>Gets the Shell DDE association from the registry.</summary>
  17086. </member>
  17087. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.DefaultIcon">
  17088. <summary>Gets the Shell default icon association from the registry.</summary>
  17089. </member>
  17090. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.FullPath">
  17091. <summary>Represents the fully qualified path of the file.</summary>
  17092. </member>
  17093. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.FriendlyAppName">
  17094. <summary>Gets the Shell friendly application name association from the registry.</summary>
  17095. </member>
  17096. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.FriendlyDocName">
  17097. <summary>Gets the Shell friendly document name association from the registry.</summary>
  17098. </member>
  17099. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.Initialized">
  17100. <summary>Reflects the initialization state of the instance.</summary>
  17101. </member>
  17102. <member name="P:Alphaleonis.Win32.Filesystem.Shell32Info.OpenWithAppName">
  17103. <summary>Gets the Shell "Open With" command association from the registry.</summary>
  17104. </member>
  17105. <member name="T:Alphaleonis.Win32.Filesystem.CopyMoveResult">
  17106. <summary>Class for CopyMoveResult that contains the results for the Copy or Move action.</summary>
  17107. </member>
  17108. <member name="M:Alphaleonis.Win32.Filesystem.CopyMoveResult.#ctor(System.String,System.String,System.Boolean,System.Int32)">
  17109. <summary>Create a CopyMoveResult class instance for the Copy or Move action.</summary>
  17110. <param name="source">Indicates the source file or directory.</param>
  17111. <param name="destination">Indicates the destination file or directory.</param>
  17112. <param name="isCanceled">Indicates if the action was canceled.</param>
  17113. <param name="errorCode">The error code encountered during the Copy or Move action.</param>
  17114. </member>
  17115. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.ErrorCode">
  17116. <summary>The error code encountered during the Copy or Move action.</summary>
  17117. <value>0 (zero) indicates success.</value>
  17118. </member>
  17119. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.ErrorMessage">
  17120. <summary>The error message from the <see cref="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.ErrorCode"/> that was encountered during the Copy or Move action.</summary>
  17121. <value>A message describing the error.</value>
  17122. </member>
  17123. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.IsCanceled">
  17124. <summary>When true indicates that the Copy or Move action was canceled.</summary>
  17125. <value><see langword="true"/> when the Copy/Move action was canceled. Otherwise <see langword="false"/>.</value>
  17126. </member>
  17127. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.Source">
  17128. <summary>Indicates the source file or directory.</summary>
  17129. </member>
  17130. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.Destination">
  17131. <summary>Indicates the destination file or directory.</summary>
  17132. </member>
  17133. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.TotalFolders">
  17134. <summary>The total number of folders copied.</summary>
  17135. </member>
  17136. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.TotalFiles">
  17137. <summary>The total number of files copied.</summary>
  17138. </member>
  17139. <member name="P:Alphaleonis.Win32.Filesystem.CopyMoveResult.TotalBytes">
  17140. <summary>The total number of bytes copied.</summary>
  17141. </member>
  17142. <member name="T:Alphaleonis.Win32.Filesystem.LinkTargetInfo">
  17143. <summary>Information about the target of a symbolic link or mount point.</summary>
  17144. </member>
  17145. <member name="P:Alphaleonis.Win32.Filesystem.LinkTargetInfo.PrintName">
  17146. <summary>The print name.</summary>
  17147. </member>
  17148. <member name="P:Alphaleonis.Win32.Filesystem.LinkTargetInfo.SubstituteName">
  17149. <summary>The substitute name.</summary>
  17150. </member>
  17151. <member name="T:Alphaleonis.Win32.Filesystem.MoveOptions">
  17152. <summary>Used by MoveFileXxx.Flags that specify how a file or directory is to be moved.</summary>
  17153. </member>
  17154. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.None">
  17155. <summary>No MoveOptions used, this fails when the file name already exists.</summary>
  17156. </member>
  17157. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.ReplaceExisting">
  17158. <summary>MOVE_FILE_REPLACE_EXISTSING
  17159. <para>If the destination file name already exists, the function replaces its contents with the contents of the source file.</para>
  17160. <para>This value cannot be used if lpNewFileName or lpExistingFileName names a directory.</para>
  17161. <para>This value cannot be used if either source or destination names a directory.</para>
  17162. </summary>
  17163. </member>
  17164. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed">
  17165. <summary>MOVE_FILE_COPY_ALLOWED
  17166. <para>If the file is to be moved to a different volume, the function simulates the move by using the CopyFile and DeleteFile functions.</para>
  17167. <para>This value cannot be used with <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.DelayUntilReboot"/>.</para>
  17168. </summary>
  17169. </member>
  17170. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.DelayUntilReboot">
  17171. <summary>MOVE_FILE_DELAY_UNTIL_REBOOT
  17172. <para>
  17173. The system does not move the file until the operating system is restarted.
  17174. The system moves the file immediately after AUTOCHK is executed, but before creating any paging files.
  17175. </para>
  17176. <para>
  17177. Consequently, this parameter enables the function to delete paging files from previous startups.
  17178. This value can only be used if the process is in the context of a user who belongs to the administrators group or the LocalSystem account.
  17179. </para>
  17180. <para>This value cannot be used with <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.CopyAllowed"/>.</para>
  17181. </summary>
  17182. </member>
  17183. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.WriteThrough">
  17184. <summary>MOVE_FILE_WRITE_THROUGH
  17185. <para>The function does not return until the file has actually been moved on the disk.</para>
  17186. <para>
  17187. Setting this value guarantees that a move performed as a copy and delete operation is flushed to disk before the function returns.
  17188. The flush occurs at the end of the copy operation.
  17189. </para>
  17190. <para>This value has no effect if <see cref="F:Alphaleonis.Win32.Filesystem.MoveOptions.DelayUntilReboot"/> is set.</para>
  17191. </summary>
  17192. </member>
  17193. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.CreateHardlink">
  17194. <summary>MOVE_FILE_CREATE_HARDLINK
  17195. <para>Reserved for future use.</para>
  17196. </summary>
  17197. </member>
  17198. <member name="F:Alphaleonis.Win32.Filesystem.MoveOptions.FailIfNotTrackable">
  17199. <summary>MOVE_FILE_FAIL_IF_NOT_TRACKABLE
  17200. <para>The function fails if the source file is a link source, but the file cannot be tracked after the move.</para>
  17201. <para>This situation can occur if the destination is a volume formatted with the FAT file system.</para>
  17202. </summary>
  17203. </member>
  17204. <member name="T:Alphaleonis.Win32.Filesystem.NotAReparsePointException">
  17205. <summary>The file or directory was not a reparse point.</summary>
  17206. </member>
  17207. <member name="M:Alphaleonis.Win32.Filesystem.NotAReparsePointException.#ctor">
  17208. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.NotAReparsePointException"/> class.</summary>
  17209. </member>
  17210. <member name="M:Alphaleonis.Win32.Filesystem.NotAReparsePointException.#ctor(System.String)">
  17211. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.NotAReparsePointException"/> class.</summary>
  17212. <param name="message">The message.</param>
  17213. </member>
  17214. <member name="M:Alphaleonis.Win32.Filesystem.NotAReparsePointException.#ctor(System.String,System.Exception)">
  17215. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.NotAReparsePointException"/> class.</summary>
  17216. <param name="message">The message.</param>
  17217. <param name="innerException">The inner exception.</param>
  17218. </member>
  17219. <member name="M:Alphaleonis.Win32.Filesystem.NotAReparsePointException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17220. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.NotAReparsePointException"/> class.</summary>
  17221. <param name="info">The info.</param>
  17222. <param name="context">The context.</param>
  17223. </member>
  17224. <member name="T:Alphaleonis.Win32.Filesystem.Shell32">
  17225. <summary>Provides access to a file system object, using Shell32.</summary>
  17226. </member>
  17227. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes">
  17228. <summary>Provides information for the IQueryAssociations interface methods, used by Shell32.</summary>
  17229. </member>
  17230. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.None">
  17231. <summary>None.</summary>
  17232. </member>
  17233. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitNoRemapClsid">
  17234. <summary>Instructs not to map CLSID values to ProgID values.</summary>
  17235. </member>
  17236. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitByExeName">
  17237. <summary>Identifies the value of the supplied file parameter (3rd parameter of function GetFileAssociation()) as an executable file name.</summary>
  17238. <remarks>If this flag is not set, the root key will be set to the ProgID associated with the .exe key instead of the executable file's ProgID.</remarks>
  17239. </member>
  17240. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitDefaultToStar">
  17241. <summary>Specifies that when an IQueryAssociation method does not find the requested value under the root key, it should attempt to retrieve the comparable value from the * subkey.</summary>
  17242. </member>
  17243. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitDefaultToFolder">
  17244. <summary>Specifies that when an IQueryAssociation method does not find the requested value under the root key, it should attempt to retrieve the comparable value from the Folder subkey.</summary>
  17245. </member>
  17246. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.NoUserSettings">
  17247. <summary>Specifies that only HKEY_CLASSES_ROOT should be searched, and that HKEY_CURRENT_USER should be ignored.</summary>
  17248. </member>
  17249. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.NoTruncate">
  17250. <summary>Specifies that the return string should not be truncated. Instead, return an error value and the required size for the complete string.</summary>
  17251. </member>
  17252. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.Verify">
  17253. <summary>
  17254. Instructs IQueryAssociations methods to verify that data is accurate.
  17255. This setting allows IQueryAssociations methods to read data from the user's hard disk for verification.
  17256. For example, they can check the friendly name in the registry against the one stored in the .exe file.
  17257. </summary>
  17258. <remarks>Setting this flag typically reduces the efficiency of the method.</remarks>
  17259. </member>
  17260. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.RemapRunDll">
  17261. <summary>
  17262. Instructs IQueryAssociations methods to ignore Rundll.exe and return information about its target.
  17263. Typically IQueryAssociations methods return information about the first .exe or .dll in a command string.
  17264. If a command uses Rundll.exe, setting this flag tells the method to ignore Rundll.exe and return information about its target.
  17265. </summary>
  17266. </member>
  17267. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.NoFixUps">
  17268. <summary>Instructs IQueryAssociations methods not to fix errors in the registry, such as the friendly name of a function not matching the one found in the .exe file.</summary>
  17269. </member>
  17270. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.IgnoreBaseClass">
  17271. <summary>Specifies that the BaseClass value should be ignored.</summary>
  17272. </member>
  17273. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitIgnoreUnknown">
  17274. <summary>Specifies that the "Unknown" ProgID should be ignored; instead, fail.</summary>
  17275. <remarks>Introduced in Windows 7.</remarks>
  17276. </member>
  17277. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.InitFixedProgId">
  17278. <summary>Specifies that the supplied ProgID should be mapped using the system defaults, rather than the current user defaults.</summary>
  17279. <remarks>Introduced in Windows 8.</remarks>
  17280. </member>
  17281. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.IsProtocol">
  17282. <summary>Specifies that the value is a protocol, and should be mapped using the current user defaults.</summary>
  17283. <remarks>Introduced in Windows 8.</remarks>
  17284. </member>
  17285. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.AssociationString">
  17286. <summary>ASSOCSTR enumeration - Used by the AssocQueryString() function to define the type of string that is to be returned.</summary>
  17287. </member>
  17288. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.None">
  17289. <summary>None.</summary>
  17290. </member>
  17291. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.Command">
  17292. <summary>A command string associated with a Shell verb.</summary>
  17293. </member>
  17294. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.Executable">
  17295. <summary>
  17296. An executable from a Shell verb command string.
  17297. For example, this string is found as the (Default) value for a subkey such as HKEY_CLASSES_ROOT\ApplicationName\shell\Open\command.
  17298. If the command uses Rundll.exe, set the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes.RemapRunDll"/> flag in the attributes parameter of IQueryAssociations::GetString to retrieve the target executable.
  17299. </summary>
  17300. </member>
  17301. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.FriendlyDocName">
  17302. <summary>The friendly name of a document type.</summary>
  17303. </member>
  17304. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.FriendlyAppName">
  17305. <summary>The friendly name of an executable file.</summary>
  17306. </member>
  17307. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.NoOpen">
  17308. <summary>Ignore the information associated with the open subkey.</summary>
  17309. </member>
  17310. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.ShellNewValue">
  17311. <summary>Look under the ShellNew subkey.</summary>
  17312. </member>
  17313. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DdeCommand">
  17314. <summary>A template for DDE commands.</summary>
  17315. </member>
  17316. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DdeIfExec">
  17317. <summary>The DDE command to use to create a process.</summary>
  17318. </member>
  17319. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DdeApplication">
  17320. <summary>The application name in a DDE broadcast.</summary>
  17321. </member>
  17322. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DdeTopic">
  17323. <summary>The topic name in a DDE broadcast.</summary>
  17324. </member>
  17325. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.InfoTip">
  17326. <summary>
  17327. Corresponds to the InfoTip registry value.
  17328. Returns an info tip for an item, or list of properties in the form of an IPropertyDescriptionList from which to create an info tip, such as when hovering the cursor over a file name.
  17329. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
  17330. </summary>
  17331. </member>
  17332. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.QuickTip">
  17333. <summary>
  17334. Corresponds to the QuickTip registry value. This is the same as <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.InfoTip"/>, except that it always returns a list of property names in the form of an IPropertyDescriptionList.
  17335. The difference between this value and <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.InfoTip"/> is that this returns properties that are safe for any scenario that causes slow property retrieval, such as offline or slow networks.
  17336. Some of the properties returned from <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.InfoTip"/> might not be appropriate for slow property retrieval scenarios.
  17337. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
  17338. </summary>
  17339. </member>
  17340. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.TileInfo">
  17341. <summary>
  17342. Corresponds to the TileInfo registry value. Contains a list of properties to be displayed for a particular file type in a Windows Explorer window that is in tile view.
  17343. This is the same as <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.InfoTip"/>, but, like <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.QuickTip"/>, it also returns a list of property names in the form of an IPropertyDescriptionList.
  17344. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
  17345. </summary>
  17346. </member>
  17347. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.ContentType">
  17348. <summary>
  17349. Describes a general type of MIME file association, such as image and bmp,
  17350. so that applications can make general assumptions about a specific file type.
  17351. </summary>
  17352. </member>
  17353. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DefaultIcon">
  17354. <summary>
  17355. Returns the path to the icon resources to use by default for this association.
  17356. Positive numbers indicate an index into the dll's resource table, while negative numbers indicate a resource ID.
  17357. An example of the syntax for the resource is "c:\myfolder\myfile.dll,-1".
  17358. </summary>
  17359. </member>
  17360. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.ShellExtension">
  17361. <summary>
  17362. For an object that has a Shell extension associated with it,
  17363. you can use this to retrieve the CLSID of that Shell extension object by passing a string representation
  17364. of the IID of the interface you want to retrieve as the pwszExtra parameter of IQueryAssociations::GetString.
  17365. For example, if you want to retrieve a handler that implements the IExtractImage interface,
  17366. you would specify "{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}", which is the IID of IExtractImage.
  17367. </summary>
  17368. </member>
  17369. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DropTarget">
  17370. <summary>
  17371. For a verb invoked through COM and the IDropTarget interface, you can use this flag to retrieve the IDropTarget object's CLSID.
  17372. This CLSID is registered in the DropTarget subkey.
  17373. The verb is specified in the supplied file parameter in the call to IQueryAssociations::GetString.
  17374. </summary>
  17375. </member>
  17376. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.DelegateExecute">
  17377. <summary>
  17378. For a verb invoked through COM and the IExecuteCommand interface, you can use this flag to retrieve the IExecuteCommand object's CLSID.
  17379. This CLSID is registered in the verb's command subkey as the DelegateExecute entry.
  17380. The verb is specified in the supplied file parameter in the call to IQueryAssociations::GetString.
  17381. </summary>
  17382. </member>
  17383. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.SupportedUriProtocols">
  17384. <summary>(No description available on MSDN)</summary>
  17385. <remarks>Introduced in Windows 8.</remarks>
  17386. </member>
  17387. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.AssociationString.Max">
  17388. <summary>The maximum defined <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.AssociationString"/> value, used for validation purposes.</summary>
  17389. </member>
  17390. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes">
  17391. <summary>Shell32 FileAttributes structure, used to retrieve the different types of a file system object.</summary>
  17392. </member>
  17393. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.LargeIcon">
  17394. <summary>0x000000000 - Get file system object large icon.</summary>
  17395. <remarks>The <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> flag must also be set.</remarks>
  17396. </member>
  17397. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.SmallIcon">
  17398. <summary>0x000000001 - Get file system object small icon.</summary>
  17399. <remarks>The <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> flag must also be set.</remarks>
  17400. </member>
  17401. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.OpenIcon">
  17402. <summary>0x000000002 - Get file system object open icon.</summary>
  17403. <remarks>A container object displays an open icon to indicate that the container is open.</remarks>
  17404. <remarks>The <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> and/or <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.SysIconIndex"/> flag must also be set.</remarks>
  17405. </member>
  17406. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.ShellIconSize">
  17407. <summary>0x000000004 - Get file system object Shell-sized icon.</summary>
  17408. <remarks>If this attribute is not specified the function sizes the icon according to the system metric values.</remarks>
  17409. </member>
  17410. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Pidl">
  17411. <summary>0x000000008 - Get file system object by its PIDL.</summary>
  17412. <remarks>Indicate that the given file contains the address of an ITEMIDLIST structure rather than a path name.</remarks>
  17413. </member>
  17414. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.UseFileAttributes">
  17415. <summary>0x000000010 - Indicates that the given file should not be accessed. Rather, it should act as if the given file exists and use the supplied attributes.</summary>
  17416. <remarks>This flag cannot be combined with the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Attributes"/>, <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.ExeType"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Pidl"/> attributes.</remarks>
  17417. </member>
  17418. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.AddOverlays">
  17419. <summary>0x000000020 - Apply the appropriate overlays to the file's icon.</summary>
  17420. <remarks>The <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> flag must also be set.</remarks>
  17421. </member>
  17422. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.OverlayIndex">
  17423. <summary>0x000000040 - Returns the index of the overlay icon.</summary>
  17424. <remarks>The value of the overlay index is returned in the upper eight bits of the iIcon member of the structure specified by psfi.</remarks>
  17425. </member>
  17426. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon">
  17427. <summary>0x000000100 - Retrieve the handle to the icon that represents the file and the index of the icon within the system image list. The handle is copied to the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.IconHandle"/> member of the structure, and the index is copied to the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.IconIndex"/> member.</summary>
  17428. </member>
  17429. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.DisplayName">
  17430. <summary>0x000000200 - Retrieve the display name for the file. The name is copied to the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.DisplayName"/> member of the structure.</summary>
  17431. <remarks>The returned display name uses the long file name, if there is one, rather than the 8.3 form of the file name.</remarks>
  17432. </member>
  17433. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.TypeName">
  17434. <summary>0x000000400 - Retrieve the string that describes the file's type.</summary>
  17435. </member>
  17436. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Attributes">
  17437. <summary>0x000000800 - Retrieve the item attributes. The attributes are copied to the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.Attributes"/> member of the structure.</summary>
  17438. <remarks>Will touch every file, degrading performance.</remarks>
  17439. </member>
  17440. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.IconLocation">
  17441. <summary>0x000001000 - Retrieve the name of the file that contains the icon representing the file specified by pszPath. The name of the file containing the icon is copied to the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.DisplayName"/> member of the structure. The icon's index is copied to that structure's <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.IconIndex"/> member.</summary>
  17442. </member>
  17443. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.ExeType">
  17444. <summary>0x000002000 - Retrieve the type of the executable file if pszPath identifies an executable file.</summary>
  17445. <remarks>This flag cannot be specified with any other attributes.</remarks>
  17446. </member>
  17447. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.SysIconIndex">
  17448. <summary>0x000004000 - Retrieve the index of a system image list icon.</summary>
  17449. </member>
  17450. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.LinkOverlay">
  17451. <summary>0x000008000 - Add the link overlay to the file's icon.</summary>
  17452. <remarks>The <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> flag must also be set.</remarks>
  17453. </member>
  17454. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Selected">
  17455. <summary>0x000010000 - Blend the file's icon with the system highlight color.</summary>
  17456. </member>
  17457. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.AttributesSpecified">
  17458. <summary>0x000020000 - Modify <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Attributes"/> to indicate that <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.Attributes"/> contains specific attributes that are desired.</summary>
  17459. <remarks>This flag cannot be specified with the <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.Icon"/> attribute. Will touch every file, degrading performance.</remarks>
  17460. </member>
  17461. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.FileInfo">
  17462. <summary>SHFILEINFO structure, contains information about a file system object.</summary>
  17463. </member>
  17464. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.IconHandle">
  17465. <summary>A handle to the icon that represents the file.</summary>
  17466. <remarks>Caller is responsible for destroying this handle with DestroyIcon() when no longer needed.</remarks>
  17467. </member>
  17468. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.IconIndex">
  17469. <summary>The index of the icon image within the system image list.</summary>
  17470. </member>
  17471. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.Attributes">
  17472. <summary>An array of values that indicates the attributes of the file object.</summary>
  17473. </member>
  17474. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.DisplayName">
  17475. <summary>The name of the file as it appears in the Windows Shell, or the path and file name of the file that contains the icon representing the file.</summary>
  17476. </member>
  17477. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.FileInfo.TypeName">
  17478. <summary>The type of file.</summary>
  17479. </member>
  17480. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf">
  17481. <summary>SFGAO - Attributes that can be retrieved from a file system object.</summary>
  17482. </member>
  17483. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.None">
  17484. <summary>0x00000000 - None.</summary>
  17485. </member>
  17486. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.CanCopy">
  17487. <summary>0x00000001 - The specified items can be copied.</summary>
  17488. </member>
  17489. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.CanMove">
  17490. <summary>0x00000002 - The specified items can be moved.</summary>
  17491. </member>
  17492. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.CanLink">
  17493. <summary>0x00000004 - Shortcuts can be created for the specified items.</summary>
  17494. </member>
  17495. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Storage">
  17496. <summary>0x00000008 - The specified items can be bound to an IStorage object through IShellFolder::BindToObject. For more information about namespace manipulation capabilities, see IStorage.</summary>
  17497. </member>
  17498. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.CanRename">
  17499. <summary>0x00000010 - The specified items can be renamed. Note that this value is essentially a suggestion; not all namespace clients allow items to be renamed. However, those that do must have this attribute set.</summary>
  17500. </member>
  17501. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.CanDelete">
  17502. <summary>0x00000020 - The specified items can be deleted.</summary>
  17503. </member>
  17504. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.HasPropSheet">
  17505. <summary>0x00000040 - The specified items have property sheets.</summary>
  17506. </member>
  17507. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.DropTarget">
  17508. <summary>0x00000100 - The specified items are drop targets.</summary>
  17509. </member>
  17510. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.System">
  17511. <summary>0x00001000 - The specified items are system items.</summary>
  17512. <remarks>Windows 7 and later.</remarks>
  17513. </member>
  17514. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Encrypted">
  17515. <summary>0x00002000 - The specified items are encrypted and might require special presentation.</summary>
  17516. </member>
  17517. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.IsSlow">
  17518. <summary>0x00004000 - Accessing the item (through IStream or other storage interfaces) is expected to be a slow operation.</summary>
  17519. </member>
  17520. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Ghosted">
  17521. <summary>0x00008000 - The specified items are shown as dimmed and unavailable to the user.</summary>
  17522. </member>
  17523. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Link">
  17524. <summary>0x00010000 - The specified items are shortcuts.</summary>
  17525. </member>
  17526. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Share">
  17527. <summary>0x00020000 - The specified objects are shared.</summary>
  17528. </member>
  17529. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.ReadOnly">
  17530. <summary>0x00040000 - The specified items are read-only. In the case of folders, this means that new items cannot be created in those folders.</summary>
  17531. </member>
  17532. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Hidden">
  17533. <summary>0x00080000 - The item is hidden and should not be displayed unless the Show hidden files and folders option is enabled in Folder Settings.</summary>
  17534. </member>
  17535. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.NonEnumerated">
  17536. <summary>0x00100000 - The items are nonenumerated items and should be hidden. They are not returned through an enumerator such as that created by the IShellFolder::EnumObjects method.</summary>
  17537. </member>
  17538. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.NewContent">
  17539. <summary>0x00200000 - The items contain new content, as defined by the particular application.</summary>
  17540. </member>
  17541. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Stream">
  17542. <summary>0x00400000 - Indicates that the item has a stream associated with it.</summary>
  17543. </member>
  17544. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.StorageAncestor">
  17545. <summary>0x00800000 - Children of this item are accessible through IStream or IStorage.</summary>
  17546. </member>
  17547. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Validate">
  17548. <summary>0x01000000 - When specified as input, instructs the folder to validate that the items contained in a folder or Shell item array exist.</summary>
  17549. </member>
  17550. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Removable">
  17551. <summary>0x02000000 - The specified items are on removable media or are themselves removable devices.</summary>
  17552. </member>
  17553. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Compressed">
  17554. <summary>0x04000000 - The specified items are compressed.</summary>
  17555. </member>
  17556. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Browsable">
  17557. <summary>0x08000000 - The specified items can be hosted inside a web browser or Windows Explorer frame.</summary>
  17558. </member>
  17559. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.FileSysAncestor">
  17560. <summary>0x10000000 - The specified folders are either file system folders or contain at least one descendant (child, grandchild, or later) that is a file system folder.</summary>
  17561. </member>
  17562. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.Folder">
  17563. <summary>0x20000000 - The specified items are folders.</summary>
  17564. </member>
  17565. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.FileSystem">
  17566. <summary>0x40000000 - The specified folders or files are part of the file system (that is, they are files, directories, or root directories).</summary>
  17567. </member>
  17568. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.GetAttributesOf.HasSubFolder">
  17569. <summary>0x80000000 - The specified folders have subfolders.</summary>
  17570. </member>
  17571. <member name="T:Alphaleonis.Win32.Filesystem.Shell32.UrlType">
  17572. <summary>Used by method UrlIs() to define a URL type.</summary>
  17573. </member>
  17574. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsUrl">
  17575. <summary>Is the URL valid?</summary>
  17576. </member>
  17577. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsOpaque">
  17578. <summary>Is the URL opaque?</summary>
  17579. </member>
  17580. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsNoHistory">
  17581. <summary>Is the URL a URL that is not typically tracked in navigation history?</summary>
  17582. </member>
  17583. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsFileUrl">
  17584. <summary>Is the URL a file URL?</summary>
  17585. </member>
  17586. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsAppliable">
  17587. <summary>Attempt to determine a valid scheme for the URL.</summary>
  17588. </member>
  17589. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsDirectory">
  17590. <summary>Does the URL string end with a directory?</summary>
  17591. </member>
  17592. <member name="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsHasQuery">
  17593. <summary>Does the URL have an appended query string?</summary>
  17594. </member>
  17595. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.DestroyIcon(System.IntPtr)">
  17596. <summary>Destroys an icon and frees any memory the icon occupied.</summary>
  17597. <param name="iconHandle">An <see cref="T:System.IntPtr"/> handle to an icon.</param>
  17598. </member>
  17599. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileAssociation(System.String)">
  17600. <summary>Gets the file or protocol that is associated with <paramref name="path"/> from the registry.</summary>
  17601. <param name="path">A path to the file.</param>
  17602. <returns>The associated file- or protocol-related string from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17603. </member>
  17604. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileContentType(System.String)">
  17605. <summary>Gets the content-type that is associated with <paramref name="path"/> from the registry.</summary>
  17606. <param name="path">A path to the file.</param>
  17607. <returns>The associated file- or protocol-related content-type from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17608. </member>
  17609. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileDefaultIcon(System.String)">
  17610. <summary>Gets the default icon that is associated with <paramref name="path"/> from the registry.</summary>
  17611. <param name="path">A path to the file.</param>
  17612. <returns>The associated file- or protocol-related default icon from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17613. </member>
  17614. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileFriendlyAppName(System.String)">
  17615. <summary>Gets the friendly application name that is associated with <paramref name="path"/> from the registry.</summary>
  17616. <param name="path">A path to the file.</param>
  17617. <returns>The associated file- or protocol-related friendly application name from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17618. </member>
  17619. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileFriendlyDocName(System.String)">
  17620. <summary>Gets the friendly document name that is associated with <paramref name="path"/> from the registry.</summary>
  17621. <param name="path">A path to the file.</param>
  17622. <returns>The associated file- or protocol-related friendly document name from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17623. </member>
  17624. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileIcon(System.String,Alphaleonis.Win32.Filesystem.Shell32.FileAttributes)">
  17625. <summary>Gets an <see cref="T:System.IntPtr"/> handle to the Shell icon that represents the file.</summary>
  17626. <remarks>Caller is responsible for destroying this handle with DestroyIcon() when no longer needed.</remarks>
  17627. <param name="filePath">
  17628. The path to the file system object which should not exceed maximum path length. Both absolute and
  17629. relative paths are valid.
  17630. </param>
  17631. <param name="iconAttributes">
  17632. Icon size <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.SmallIcon"/> or <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.LargeIcon"/>. Can also be combined
  17633. with <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes.AddOverlays"/> and others.
  17634. </param>
  17635. <returns>An <see cref="T:System.IntPtr"/> handle to the Shell icon that represents the file, or IntPtr.Zero on failure.</returns>
  17636. </member>
  17637. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileInfo(System.String,System.IO.FileAttributes,Alphaleonis.Win32.Filesystem.Shell32.FileAttributes,System.Boolean)">
  17638. <summary>Retrieves information about an object in the file system, such as a file, folder, directory, or drive root.</summary>
  17639. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.FileInfo"/> struct instance.</returns>
  17640. <remarks>
  17641. <para>You should call this function from a background thread.</para>
  17642. <para>Failure to do so could cause the UI to stop responding.</para>
  17643. <para>Unicode path are supported.</para>
  17644. </remarks>
  17645. <param name="filePath">The path to the file system object which should not exceed the maximum path length. Both absolute and relative paths are valid.</param>
  17646. <param name="attributes">A <see cref="T:System.IO.FileAttributes"/> attribute.</param>
  17647. <param name="fileAttributes">One ore more <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes"/> attributes.</param>
  17648. <param name="continueOnException">
  17649. <para><see langword="true"/> suppress any Exception that might be thrown as a result from a failure,</para>
  17650. <para>such as ACLs protected directories or non-accessible reparse points.</para>
  17651. </param>
  17652. </member>
  17653. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetShell32Info(System.String)">
  17654. <summary>Retrieves an instance of <see cref="T:Alphaleonis.Win32.Filesystem.Shell32Info"/> containing information about the specified file.</summary>
  17655. <param name="path">A path to the file.</param>
  17656. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32Info"/> class instance.</returns>
  17657. </member>
  17658. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetShell32Info(System.String,Alphaleonis.Win32.Filesystem.PathFormat)">
  17659. <summary>Retrieves an instance of <see cref="T:Alphaleonis.Win32.Filesystem.Shell32Info"/> containing information about the specified file.</summary>
  17660. <param name="path">A path to the file.</param>
  17661. <param name="pathFormat">Indicates the format of the path parameter(s).</param>
  17662. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32Info"/> class instance.</returns>
  17663. </member>
  17664. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileOpenWithAppName(System.String)">
  17665. <summary>Gets the "Open With" command that is associated with <paramref name="path"/> from the registry.</summary>
  17666. <param name="path">A path to the file.</param>
  17667. <returns>The associated file- or protocol-related "Open With" command from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17668. </member>
  17669. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileVerbCommand(System.String)">
  17670. <summary>Gets the Shell command that is associated with <paramref name="path"/> from the registry.</summary>
  17671. <param name="path">A path to the file.</param>
  17672. <returns>The associated file- or protocol-related Shell command from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17673. </member>
  17674. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.PathCreateFromUrl(System.String)">
  17675. <summary>Converts a file URL to a Microsoft MS-DOS path.</summary>
  17676. <param name="urlPath">The file URL.</param>
  17677. <returns>
  17678. <para>The Microsoft MS-DOS path. If no path can be created, <c>string.Empty</c> is returned.</para>
  17679. <para>If <paramref name="urlPath"/> is <see langword="null"/>, <see langword="null"/> will also be returned.</para>
  17680. </returns>
  17681. </member>
  17682. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.PathCreateFromUrlAlloc(System.String)">
  17683. <summary>Creates a path from a file URL.</summary>
  17684. <param name="urlPath">The URL.</param>
  17685. <returns>
  17686. <para>The file path. If no path can be created, <c>string.Empty</c> is returned.</para>
  17687. <para>If <paramref name="urlPath"/> is <see langword="null"/>, <see langword="null"/> will also be returned.</para>
  17688. </returns>
  17689. </member>
  17690. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.PathFileExists(System.String)">
  17691. <summary>Determines whether a path to a file system object such as a file or folder is valid.</summary>
  17692. <param name="path">The full path of maximum length the maximum path length to the object to verify.</param>
  17693. <returns><see langword="true"/> if the file exists; <see langword="false"/> otherwise</returns>
  17694. </member>
  17695. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.UrlIs(System.String,Alphaleonis.Win32.Filesystem.Shell32.UrlType)">
  17696. <summary>Tests whether a URL is a specified type.</summary>
  17697. <param name="url">The URL.</param>
  17698. <param name="urlType"></param>
  17699. <returns>
  17700. For all but one of the URL types, UrlIs returns <see langword="true"/> if the URL is the specified type, or <see langword="false"/> otherwise.
  17701. If UrlIs is set to <see cref="F:Alphaleonis.Win32.Filesystem.Shell32.UrlType.IsAppliable"/>, UrlIs will attempt to determine the URL scheme.
  17702. If the function is able to determine a scheme, it returns <see langword="true"/>, or <see langword="false"/> otherwise.
  17703. </returns>
  17704. </member>
  17705. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.UrlCreateFromPath(System.String)">
  17706. <summary>Converts a Microsoft MS-DOS path to a canonicalized URL.</summary>
  17707. <param name="path">The full MS-DOS path of maximum length <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.MaxPath"/>.</param>
  17708. <returns>
  17709. <para>The URL. If no URL can be created <c>string.Empty</c> is returned.</para>
  17710. <para>If <paramref name="path"/> is <see langword="null"/>, <see langword="null"/> will also be returned.</para>
  17711. </returns>
  17712. </member>
  17713. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.UrlIsFileUrl(System.String)">
  17714. <summary>Tests a URL to determine if it is a file URL.</summary>
  17715. <param name="url">The URL.</param>
  17716. <returns><see langword="true"/> if the URL is a file URL, or <see langword="false"/> otherwise.</returns>
  17717. </member>
  17718. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.UrlIsNoHistory(System.String)">
  17719. <summary>Returns whether a URL is a URL that browsers typically do not include in navigation history.</summary>
  17720. <param name="url">The URL.</param>
  17721. <returns><see langword="true"/> if the URL is a URL that is not included in navigation history, or <see langword="false"/> otherwise.</returns>
  17722. </member>
  17723. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.UrlIsOpaque(System.String)">
  17724. <summary>Returns whether a URL is opaque.</summary>
  17725. <param name="url">The URL.</param>
  17726. <returns><see langword="true"/> if the URL is opaque, or <see langword="false"/> otherwise.</returns>
  17727. </member>
  17728. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileAssociationCore(System.String,Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes,Alphaleonis.Win32.Filesystem.Shell32.AssociationString)">
  17729. <summary>Searches for and retrieves a file or protocol association-related string from the registry.</summary>
  17730. <param name="path">A path to a file.</param>
  17731. <param name="attributes">One or more <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.AssociationAttributes"/> attributes. Only one "InitXXX" attribute can be used.</param>
  17732. <param name="associationType">A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.AssociationString"/> attribute.</param>
  17733. <returns>The associated file- or protocol-related string from the registry or <c>string.Empty</c> if no association can be found.</returns>
  17734. <exception cref="T:System.ArgumentNullException"/>
  17735. </member>
  17736. <member name="M:Alphaleonis.Win32.Filesystem.Shell32.GetFileInfoCore(System.String,System.IO.FileAttributes,Alphaleonis.Win32.Filesystem.Shell32.FileAttributes,System.Boolean,System.Boolean)">
  17737. <summary>Retrieve information about an object in the file system, such as a file, folder, directory, or drive root.</summary>
  17738. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.FileInfo"/> struct instance.</returns>
  17739. <remarks>
  17740. <para>You should call this function from a background thread.</para>
  17741. <para>Failure to do so could cause the UI to stop responding.</para>
  17742. <para>Unicode path are not supported.</para>
  17743. </remarks>
  17744. <param name="path">The path to the file system object which should not exceed the maximum path length in length. Both absolute and relative paths are valid.</param>
  17745. <param name="attributes">A <see cref="T:System.IO.FileAttributes"/> attribute.</param>
  17746. <param name="fileAttributes">A <see cref="T:Alphaleonis.Win32.Filesystem.Shell32.FileAttributes"/> attribute.</param>
  17747. <param name="checkInvalidPathChars">Checks that the path contains only valid path-characters.</param>
  17748. <param name="continueOnException">
  17749. <para><see langword="true"/> suppress any Exception that might be thrown as a result from a failure,</para>
  17750. <para>such as ACLs protected directories or non-accessible reparse points.</para>
  17751. </param>
  17752. </member>
  17753. <member name="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTarget">
  17754. <summary>Indicates whether the link target is a file or directory.</summary>
  17755. <remarks>Used by Win32 API CreateSymbolicLink()/CreateSymbolicLinkTransacted()</remarks>
  17756. </member>
  17757. <member name="F:Alphaleonis.Win32.Filesystem.SymbolicLinkTarget.File">
  17758. <summary>The link target is a file.</summary>
  17759. </member>
  17760. <member name="F:Alphaleonis.Win32.Filesystem.SymbolicLinkTarget.Directory">
  17761. <summary>The link target is a directory.</summary>
  17762. </member>
  17763. <member name="T:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo">
  17764. <summary>Represents information about a symbolic link.</summary>
  17765. </member>
  17766. <member name="P:Alphaleonis.Win32.Filesystem.SymbolicLinkTargetInfo.LinkType">
  17767. <summary>Gets the type of the link.</summary>
  17768. <value>The type of the link.</value>
  17769. </member>
  17770. <member name="T:Alphaleonis.Win32.Filesystem.SymbolicLinkType">
  17771. <summary>Specifies the type of a symbolic link.</summary>
  17772. </member>
  17773. <member name="F:Alphaleonis.Win32.Filesystem.SymbolicLinkType.Absolute">
  17774. <summary>The symbolic link is absolute.</summary>
  17775. </member>
  17776. <member name="F:Alphaleonis.Win32.Filesystem.SymbolicLinkType.Relative">
  17777. <summary>The symbolic link is relative.</summary>
  17778. </member>
  17779. <member name="T:Alphaleonis.Win32.Filesystem.TransactionalConflictException">
  17780. <summary>The function attempted to use a name that is reserved for use by another transaction.</summary>
  17781. </member>
  17782. <member name="M:Alphaleonis.Win32.Filesystem.TransactionalConflictException.#ctor">
  17783. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionalConflictException"/> class.</summary>
  17784. </member>
  17785. <member name="M:Alphaleonis.Win32.Filesystem.TransactionalConflictException.#ctor(System.String)">
  17786. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionalConflictException"/> class.</summary>
  17787. <param name="message">The message.</param>
  17788. </member>
  17789. <member name="M:Alphaleonis.Win32.Filesystem.TransactionalConflictException.#ctor(System.String,System.Exception)">
  17790. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionalConflictException"/> class.</summary>
  17791. <param name="message">The message.</param>
  17792. <param name="innerException">The inner exception.</param>
  17793. </member>
  17794. <member name="M:Alphaleonis.Win32.Filesystem.TransactionalConflictException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17795. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionalConflictException"/> class.</summary>
  17796. <param name="info">The info.</param>
  17797. <param name="context">The context.</param>
  17798. </member>
  17799. <member name="T:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException">
  17800. <summary>The function attempted to use a name that is reserved for use by another transaction.</summary>
  17801. </member>
  17802. <member name="M:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException.#ctor">
  17803. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException"/> class.</summary>
  17804. </member>
  17805. <member name="M:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException.#ctor(System.String)">
  17806. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException"/> class.</summary>
  17807. <param name="message">The message.</param>
  17808. </member>
  17809. <member name="M:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException.#ctor(System.String,System.Exception)">
  17810. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException"/> class.</summary>
  17811. <param name="message">The message.</param>
  17812. <param name="innerException">The inner exception.</param>
  17813. </member>
  17814. <member name="M:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17815. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnrecognizedReparsePointException"/> class.</summary>
  17816. <param name="info">The info.</param>
  17817. <param name="context">The context.</param>
  17818. </member>
  17819. <member name="T:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException">
  17820. <summary>The remote server or share does not support transacted file operations.</summary>
  17821. </member>
  17822. <member name="M:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException.#ctor">
  17823. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException"/> class.</summary>
  17824. </member>
  17825. <member name="M:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException.#ctor(System.String)">
  17826. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException"/> class.</summary>
  17827. <param name="message">The message.</param>
  17828. </member>
  17829. <member name="M:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException.#ctor(System.String,System.Exception)">
  17830. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException"/> class.</summary>
  17831. <param name="message">The message.</param>
  17832. <param name="innerException">The inner exception.</param>
  17833. </member>
  17834. <member name="M:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17835. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.UnsupportedRemoteTransactionException"/> class.</summary>
  17836. <param name="info">The object that holds the serialized object data.</param>
  17837. <param name="context">The contextual information about the source or destination.</param>
  17838. </member>
  17839. <member name="T:Alphaleonis.Win32.Filesystem.InvalidTransactionException">
  17840. <summary>The transaction handle associated with this operation is not valid.</summary>
  17841. </member>
  17842. <member name="M:Alphaleonis.Win32.Filesystem.InvalidTransactionException.#ctor">
  17843. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.InvalidTransactionException"/> class.</summary>
  17844. </member>
  17845. <member name="M:Alphaleonis.Win32.Filesystem.InvalidTransactionException.#ctor(System.String)">
  17846. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.InvalidTransactionException"/> class.</summary>
  17847. <param name="message">The message.</param>
  17848. </member>
  17849. <member name="M:Alphaleonis.Win32.Filesystem.InvalidTransactionException.#ctor(System.String,System.Exception)">
  17850. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.InvalidTransactionException"/> class.</summary>
  17851. <param name="message">The message.</param>
  17852. <param name="innerException">The inner exception.</param>
  17853. </member>
  17854. <member name="M:Alphaleonis.Win32.Filesystem.InvalidTransactionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17855. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.InvalidTransactionException"/> class.</summary>
  17856. <param name="info">The data for serializing or deserializing the object.</param>
  17857. <param name="context">The source and destination for the object.</param>
  17858. </member>
  17859. <member name="T:Alphaleonis.Win32.Filesystem.KernelTransaction">
  17860. <summary>A KTM transaction object for use with the transacted operations in <see cref="N:Alphaleonis.Win32.Filesystem"/></summary>
  17861. </member>
  17862. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.#ctor(System.Transactions.Transaction)">
  17863. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.KernelTransaction"/> class, internally using the specified <see cref="T:System.Transactions.Transaction"/>.
  17864. This method allows the usage of methods accepting a <see cref="T:Alphaleonis.Win32.Filesystem.KernelTransaction"/> with an instance of <see cref="T:System.Transactions.Transaction"/>.
  17865. </summary>
  17866. <param name="transaction">The transaction to use for any transactional operations.</param>
  17867. </member>
  17868. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.#ctor">
  17869. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.KernelTransaction"/> class with a default security descriptor, infinite timeout and no description.</summary>
  17870. </member>
  17871. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.#ctor(System.Int32,System.String)">
  17872. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.KernelTransaction"/> class with a default security descriptor.</summary>
  17873. <param name="timeout"><para>The time, in milliseconds, when the transaction will be aborted if it has not already reached the prepared state.</para></param>
  17874. <param name="description">A user-readable description of the transaction. This parameter may be <see langword="null"/>.</param>
  17875. </member>
  17876. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.#ctor(System.Security.AccessControl.ObjectSecurity,System.Int32,System.String)">
  17877. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.KernelTransaction"/> class.</summary>
  17878. <param name="securityDescriptor">The <see cref="T:System.Security.AccessControl.ObjectSecurity"/> security descriptor.</param>
  17879. <param name="timeout"><para>The time, in milliseconds, when the transaction will be aborted if it has not already reached the prepared state.</para>
  17880. <para>Specify 0 to provide an infinite timeout.</para></param>
  17881. <param name="description">A user-readable description of the transaction. This parameter may be <see langword="null"/>.</param>
  17882. </member>
  17883. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.Commit">
  17884. <summary>Requests that the specified transaction be committed.</summary>
  17885. <exception cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/>
  17886. <exception cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException"/>
  17887. <exception cref="T:System.ComponentModel.Win32Exception"/>
  17888. </member>
  17889. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.Rollback">
  17890. <summary>Requests that the specified transaction be rolled back. This function is synchronous.</summary>
  17891. <exception cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/>
  17892. <exception cref="T:System.ComponentModel.Win32Exception"/>
  17893. </member>
  17894. <member name="P:Alphaleonis.Win32.Filesystem.KernelTransaction.SafeHandle">
  17895. <summary>Gets the safe handle.</summary>
  17896. <value>The safe handle.</value>
  17897. </member>
  17898. <member name="M:Alphaleonis.Win32.Filesystem.KernelTransaction.Dispose">
  17899. <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
  17900. </member>
  17901. <member name="T:Alphaleonis.Win32.Filesystem.SafeFindFileHandle">
  17902. <summary>Represents a wrapper class for a handle used by the FindFirstFile/FindNextFile Win32 API functions.</summary>
  17903. </member>
  17904. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindFileHandle.#ctor">
  17905. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindFileHandle"/> class.</summary>
  17906. </member>
  17907. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindFileHandle.#ctor(System.IntPtr,System.Boolean)">
  17908. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindFileHandle"/> class.</summary>
  17909. <param name="handle">The handle.</param>
  17910. <param name="callerHandle"><see langword="true"/> [owns handle].</param>
  17911. </member>
  17912. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindFileHandle.ReleaseHandle">
  17913. <summary>When overridden in a derived class, executes the code required to free the handle.</summary>
  17914. <returns><see langword="true"/> if the handle is released successfully; otherwise, in the event of a catastrophic failure, <see langword="false"/>. In this case, it generates a ReleaseHandleFailed Managed Debugging Assistant.</returns>
  17915. </member>
  17916. <member name="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle">
  17917. <summary>Represents a wrapper class for a handle used by the FindFirstVolumeMountPoint/FindVolumeMountPointClose methods of the Win32 API.</summary>
  17918. </member>
  17919. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle.#ctor">
  17920. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle"/> class.</summary>
  17921. </member>
  17922. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle.#ctor(System.IntPtr,System.Boolean)">
  17923. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle"/> class.</summary>
  17924. <param name="handle">The handle.</param>
  17925. <param name="callerHandle"><see langword="true"/> [owns handle].</param>
  17926. </member>
  17927. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeMountPointHandle.ReleaseHandle">
  17928. <summary>When overridden in a derived class, executes the code required to free the handle.</summary>
  17929. <returns><see langword="true"/> if the handle is released successfully; otherwise, in the event of a catastrophic failure, <see langword="false"/>.
  17930. </returns>
  17931. </member>
  17932. <member name="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle">
  17933. <summary>Represents a wrapper class for a handle used by the FindFirstVolume/FindNextVolume methods of the Win32 API.</summary>
  17934. </member>
  17935. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle.#ctor">
  17936. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle"/> class.</summary>
  17937. </member>
  17938. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle.#ctor(System.IntPtr,System.Boolean)">
  17939. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle"/> class.</summary>
  17940. <param name="handle">The handle.</param>
  17941. <param name="callerHandle"><see langword="true"/> [owns handle].</param>
  17942. </member>
  17943. <member name="M:Alphaleonis.Win32.Filesystem.SafeFindVolumeHandle.ReleaseHandle">
  17944. <summary>When overridden in a derived class, executes the code required to free the handle.</summary>
  17945. <returns><see langword="true"/> if the handle is released successfully; otherwise, in the event of a catastrophic failure, <see langword="false"/>. In this case, it generates a ReleaseHandleFailed Managed Debugging Assistant.
  17946. </returns>
  17947. </member>
  17948. <member name="T:Alphaleonis.Win32.Filesystem.SafeKernelTransactionHandle">
  17949. <summary>Provides a concrete implementation of SafeHandle supporting transactions.</summary>
  17950. </member>
  17951. <member name="M:Alphaleonis.Win32.Filesystem.SafeKernelTransactionHandle.#ctor">
  17952. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.SafeKernelTransactionHandle"/> class.</summary>
  17953. </member>
  17954. <member name="M:Alphaleonis.Win32.Filesystem.SafeKernelTransactionHandle.ReleaseHandle">
  17955. <summary>When overridden in a derived class, executes the code required to free the handle.</summary>
  17956. <returns><see langword="true"/> if the handle is released successfully; otherwise, in the event of a catastrophic failure, <see langword="false"/>. In this case, it generates a ReleaseHandleFailed Managed Debugging Assistant.</returns>
  17957. </member>
  17958. <member name="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException">
  17959. <summary>It is too late to perform the requested operation, since the Transaction has already been aborted.</summary>
  17960. </member>
  17961. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException.#ctor">
  17962. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException"/> class.</summary>
  17963. </member>
  17964. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException.#ctor(System.String)">
  17965. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException"/> class.</summary>
  17966. <param name="message">The message.</param>
  17967. </member>
  17968. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException.#ctor(System.String,System.Exception)">
  17969. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException"/> class.</summary>
  17970. <param name="message">The message.</param>
  17971. <param name="innerException">The inner exception.</param>
  17972. </member>
  17973. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17974. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyAbortedException"/> class.</summary>
  17975. <param name="info">The info.</param>
  17976. <param name="context">The context.</param>
  17977. </member>
  17978. <member name="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException">
  17979. <summary>It is too late to perform the requested operation, since the Transaction has already been committed.</summary>
  17980. </member>
  17981. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException.#ctor">
  17982. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/> class.</summary>
  17983. </member>
  17984. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException.#ctor(System.String)">
  17985. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/> class.</summary>
  17986. <param name="message">The message.</param>
  17987. </member>
  17988. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException.#ctor(System.String,System.Exception)">
  17989. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/> class.</summary>
  17990. <param name="message">The message.</param>
  17991. <param name="innerException">The inner exception.</param>
  17992. </member>
  17993. <member name="M:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  17994. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionAlreadyCommittedException"/> class.</summary>
  17995. <param name="info">The object that holds the serialized object data.</param>
  17996. <param name="context">The contextual information about the source or destination.</param>
  17997. </member>
  17998. <member name="T:Alphaleonis.Win32.Filesystem.TransactionException">
  17999. <summary>The exception that is thrown when an attempt to create a file or directory that already exists was made.</summary>
  18000. </member>
  18001. <member name="M:Alphaleonis.Win32.Filesystem.TransactionException.#ctor">
  18002. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionException"/> class.</summary>
  18003. </member>
  18004. <member name="M:Alphaleonis.Win32.Filesystem.TransactionException.#ctor(System.String)">
  18005. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionException"/> class.</summary>
  18006. <param name="message">The message.</param>
  18007. </member>
  18008. <member name="M:Alphaleonis.Win32.Filesystem.TransactionException.#ctor(System.String,System.Exception)">
  18009. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionException"/> class.</summary>
  18010. <param name="message">The message.</param>
  18011. <param name="innerException">The inner exception.</param>
  18012. </member>
  18013. <member name="M:Alphaleonis.Win32.Filesystem.TransactionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  18014. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Filesystem.TransactionException"/> class.</summary>
  18015. <param name="info">The data for serializing or deserializing the object.</param>
  18016. <param name="context">The source and destination for the object.</param>
  18017. </member>
  18018. <member name="T:Alphaleonis.Win32.Filesystem.Volume">
  18019. <summary>Static class providing utility methods for working with Microsoft Windows devices and volumes.</summary>
  18020. </member>
  18021. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DefineDosDevice(System.String,System.String)">
  18022. <summary>Defines, redefines, or deletes MS-DOS device names.</summary>
  18023. <param name="deviceName">An MS-DOS device name string specifying the device the function is defining, redefining, or deleting.</param>
  18024. <param name="targetPath">An MS-DOS path that will implement this device.</param>
  18025. </member>
  18026. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DefineDosDevice(System.String,System.String,Alphaleonis.Win32.Filesystem.DosDeviceAttributes)">
  18027. <summary>Defines, redefines, or deletes MS-DOS device names.</summary>
  18028. <param name="deviceName">
  18029. An MS-DOS device name string specifying the device the function is defining, redefining, or deleting.
  18030. </param>
  18031. <param name="targetPath">
  18032. &gt;An MS-DOS path that will implement this device. If <paramref name="deviceAttributes"/> parameter has the
  18033. <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath"/> flag specified, <paramref name="targetPath"/> is used as is.
  18034. </param>
  18035. <param name="deviceAttributes">
  18036. The controllable aspects of the DefineDosDevice function, <see cref="T:Alphaleonis.Win32.Filesystem.DosDeviceAttributes"/> flags which will be combined with the
  18037. default.
  18038. </param>
  18039. </member>
  18040. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteDosDevice(System.String)">
  18041. <summary>Deletes an MS-DOS device name.</summary>
  18042. <param name="deviceName">An MS-DOS device name specifying the device to delete.</param>
  18043. </member>
  18044. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteDosDevice(System.String,System.String)">
  18045. <summary>Deletes an MS-DOS device name.</summary>
  18046. <param name="deviceName">An MS-DOS device name string specifying the device to delete.</param>
  18047. <param name="targetPath">
  18048. A pointer to a path string that will implement this device. The string is an MS-DOS path string unless the
  18049. <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath"/> flag is specified, in which case this string is a path string.
  18050. </param>
  18051. </member>
  18052. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteDosDevice(System.String,System.String,System.Boolean)">
  18053. <summary>Deletes an MS-DOS device name.</summary>
  18054. <param name="deviceName">An MS-DOS device name string specifying the device to delete.</param>
  18055. <param name="targetPath">
  18056. A pointer to a path string that will implement this device. The string is an MS-DOS path string unless the
  18057. <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath"/> flag is specified, in which case this string is a path string.
  18058. </param>
  18059. <param name="exactMatch">
  18060. Only delete MS-DOS device on an exact name match. If <paramref name="exactMatch"/> is <see langword="true"/>,
  18061. <paramref name="targetPath"/> must be the same path used to create the mapping.
  18062. </param>
  18063. </member>
  18064. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteDosDevice(System.String,System.String,Alphaleonis.Win32.Filesystem.DosDeviceAttributes,System.Boolean)">
  18065. <summary>Deletes an MS-DOS device name.</summary>
  18066. <param name="deviceName">An MS-DOS device name string specifying the device to delete.</param>
  18067. <param name="targetPath">
  18068. A pointer to a path string that will implement this device. The string is an MS-DOS path string unless the
  18069. <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath"/> flag is specified, in which case this string is a path string.
  18070. </param>
  18071. <param name="deviceAttributes">
  18072. The controllable aspects of the DefineDosDevice function <see cref="T:Alphaleonis.Win32.Filesystem.DosDeviceAttributes"/> flags which will be combined with the
  18073. default.
  18074. </param>
  18075. <param name="exactMatch">
  18076. Only delete MS-DOS device on an exact name match. If <paramref name="exactMatch"/> is <see langword="true"/>,
  18077. <paramref name="targetPath"/> must be the same path used to create the mapping.
  18078. </param>
  18079. </member>
  18080. <member name="M:Alphaleonis.Win32.Filesystem.Volume.QueryAllDosDevices">
  18081. <summary>Retrieves a list of all existing MS-DOS device names.</summary>
  18082. <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> with one or more existing MS-DOS device names.</returns>
  18083. </member>
  18084. <member name="M:Alphaleonis.Win32.Filesystem.Volume.QueryAllDosDevices(System.String)">
  18085. <summary>Retrieves a list of all existing MS-DOS device names.</summary>
  18086. <param name="deviceName">
  18087. (Optional, default: <see langword="null"/>) An MS-DOS device name string specifying the target of the query. This parameter can be
  18088. "sort". In that case a sorted list of all existing MS-DOS device names is returned. This parameter can be <see langword="null"/>.
  18089. In that case, the <see cref="M:Alphaleonis.Win32.Filesystem.Volume.QueryDosDevice(System.String,System.String[])"/> function will store a list of all existing MS-DOS device names into the buffer.
  18090. </param>
  18091. <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> with or more existing MS-DOS device names.</returns>
  18092. </member>
  18093. <member name="M:Alphaleonis.Win32.Filesystem.Volume.QueryDosDevice(System.String,System.String[])">
  18094. <summary>
  18095. Retrieves information about MS-DOS device names. The function can obtain the current mapping for a particular MS-DOS device name.
  18096. The function can also obtain a list of all existing MS-DOS device names.
  18097. </summary>
  18098. <param name="deviceName">
  18099. An MS-DOS device name string, or part of, specifying the target of the query. This parameter can be <see langword="null"/>. In that
  18100. case, the QueryDosDevice function will store a list of all existing MS-DOS device names into the buffer.
  18101. </param>
  18102. <param name="options">
  18103. (Optional, default: <see langword="false"/>) If options[0] = <see langword="true"/> a sorted list will be returned.
  18104. </param>
  18105. <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> with one or more existing MS-DOS device names.</returns>
  18106. </member>
  18107. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetDriveFormat(System.String)">
  18108. <summary>Gets the name of the file system, such as NTFS or FAT32.</summary>
  18109. <remarks>Use DriveFormat to determine what formatting a drive uses.</remarks>
  18110. <param name="drivePath">
  18111. A path to a drive. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18112. </param>
  18113. <returns>The name of the file system on the specified drive or <see langword="null"/> on failure or if not available.</returns>
  18114. </member>
  18115. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetDriveNameForNtDeviceName(System.String)">
  18116. <summary>Gets the drive letter from an MS-DOS device name. For example: "\Device\HarddiskVolume2" returns "C:\".</summary>
  18117. <param name="deviceName">An MS-DOS device name.</param>
  18118. <returns>The drive letter from an MS-DOS device name.</returns>
  18119. </member>
  18120. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetCurrentDriveType">
  18121. <summary>
  18122. Determines, based on the root of the current directory, whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network
  18123. drive.
  18124. </summary>
  18125. <returns>A <see cref="T:System.IO.DriveType"/> object.</returns>
  18126. </member>
  18127. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetDriveType(System.String)">
  18128. <summary>Determines whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network drive.</summary>
  18129. <param name="drivePath">A path to a drive. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\"</param>
  18130. <returns>A <see cref="T:System.IO.DriveType"/> object.</returns>
  18131. </member>
  18132. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetDiskFreeSpace(System.String)">
  18133. <summary>
  18134. Retrieves information about the amount of space that is available on a disk volume, which is the total amount of space, the total
  18135. amount of free space, and the total amount of free space available to the user that is associated with the calling thread.
  18136. </summary>
  18137. <remarks>The calling application must have FILE_LIST_DIRECTORY access rights for this directory.</remarks>
  18138. <param name="drivePath">
  18139. A path to a drive. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18140. </param>
  18141. <returns>A <see ref="Alphaleonis.Win32.Filesystem.DiskSpaceInfo"/> class instance.</returns>
  18142. </member>
  18143. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetDiskFreeSpace(System.String,System.Nullable{System.Boolean})">
  18144. <summary>
  18145. Retrieves information about the amount of space that is available on a disk volume, which is the total amount of space, the total
  18146. amount of free space, and the total amount of free space available to the user that is associated with the calling thread.
  18147. </summary>
  18148. <remarks>The calling application must have FILE_LIST_DIRECTORY access rights for this directory.</remarks>
  18149. <param name="drivePath">
  18150. A path to a drive. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18151. </param>
  18152. <param name="spaceInfoType">
  18153. <see langword="null"/> gets both size- and disk cluster information. <see langword="true"/> Get only disk cluster information,
  18154. <see langword="false"/> Get only size information.
  18155. </param>
  18156. <returns>A <see ref="Alphaleonis.Win32.Filesystem.DiskSpaceInfo"/> class instance.</returns>
  18157. </member>
  18158. <member name="M:Alphaleonis.Win32.Filesystem.Volume.IsReady(System.String)">
  18159. <summary>Gets a value indicating whether a drive is ready.</summary>
  18160. <param name="drivePath">
  18161. A path to a drive. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18162. </param>
  18163. <returns><see langword="true"/> if <paramref name="drivePath"/> is ready; otherwise, <see langword="false"/>.</returns>
  18164. </member>
  18165. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteCurrentVolumeLabel">
  18166. <summary>Deletes the label of the file system volume that is the root of the current directory.
  18167. </summary>
  18168. </member>
  18169. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteVolumeLabel(System.String)">
  18170. <summary>Deletes the label of a file system volume.</summary>
  18171. <exception cref="T:System.ArgumentNullException"/>
  18172. <param name="rootPathName">The root directory of a file system volume. This is the volume the function will remove the label.</param>
  18173. </member>
  18174. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteVolumeMountPoint(System.String)">
  18175. <summary>Deletes a Drive letter or mounted folder.</summary>
  18176. <remarks>Deleting a mounted folder does not cause the underlying directory to be deleted.</remarks>
  18177. <remarks>
  18178. If the <paramref name="volumeMountPoint"/> parameter is a directory that is not a mounted folder, the function does nothing. The
  18179. directory is not deleted.
  18180. </remarks>
  18181. <remarks>
  18182. It's not an error to attempt to unmount a volume from a volume mount point when there is no volume actually mounted at that volume
  18183. mount point.
  18184. </remarks>
  18185. <param name="volumeMountPoint">The Drive letter or mounted folder to be deleted. For example, X:\ or Y:\MountX\.</param>
  18186. </member>
  18187. <member name="M:Alphaleonis.Win32.Filesystem.Volume.EnumerateVolumeMountPoints(System.String)">
  18188. <summary>
  18189. Returns an enumerable collection of <see cref="T:System.String"/> of all mounted folders (volume mount points) on the specified volume.
  18190. </summary>
  18191. <exception cref="T:System.ArgumentNullException"/>
  18192. <exception cref="T:System.ArgumentException"/>
  18193. <param name="volumeGuid">A <see cref="T:System.String"/> containing the volume <see cref="T:System.Guid"/>.</param>
  18194. <returns>An enumerable collection of <see cref="T:System.String"/> of all volume mount points on the specified volume.</returns>
  18195. </member>
  18196. <member name="M:Alphaleonis.Win32.Filesystem.Volume.EnumerateVolumePathNames(System.String)">
  18197. <summary>
  18198. Returns an enumerable collection of <see cref="T:System.String"/> drive letters and mounted folder paths for the specified volume.
  18199. </summary>
  18200. <exception cref="T:System.ArgumentNullException"/>
  18201. <exception cref="T:System.ArgumentException"/>
  18202. <param name="volumeGuid">A volume <see cref="T:System.Guid"/> path: \\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\.</param>
  18203. <returns>An enumerable collection of <see cref="T:System.String"/> containing the path names for the specified volume.</returns>
  18204. </member>
  18205. <member name="M:Alphaleonis.Win32.Filesystem.Volume.EnumerateVolumes">
  18206. <summary>Returns an enumerable collection of <see cref="T:System.String"/> volumes on the computer.</summary>
  18207. <returns>An enumerable collection of <see cref="T:System.String"/> volume names on the computer.</returns>
  18208. </member>
  18209. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetUniqueVolumeNameForPath(System.String)">
  18210. <summary>
  18211. Get the unique volume name for the given path.
  18212. </summary>
  18213. <exception cref="T:System.ArgumentNullException"/>
  18214. <param name="volumePathName">
  18215. A path string. Both absolute and relative file and directory names, for example "..", is acceptable in this path. If you specify a
  18216. relative file or directory name without a volume qualifier, GetUniqueVolumeNameForPath returns the Drive letter of the current
  18217. volume.
  18218. </param>
  18219. <returns>
  18220. <para>Returns the unique volume name in the form: "\\?\Volume{GUID}\",</para>
  18221. <para>or <see langword="null"/> on error or if unavailable.</para>
  18222. </returns>
  18223. </member>
  18224. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeDeviceName(System.String)">
  18225. <summary>Retrieves the Win32 Device name from the Volume name.</summary>
  18226. <exception cref="T:System.ArgumentNullException"/>
  18227. <param name="volumeName">Name of the Volume.</param>
  18228. <returns>
  18229. The Win32 Device name from the Volume name (for example: "\Device\HarddiskVolume2"), or <see langword="null"/> on error or if
  18230. unavailable.
  18231. </returns>
  18232. </member>
  18233. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeDisplayName(System.String)">
  18234. <summary>Gets the shortest display name for the specified <paramref name="volumeName"/>.</summary>
  18235. <remarks>This method basically returns the shortest string returned by <see cref="M:Alphaleonis.Win32.Filesystem.Volume.EnumerateVolumePathNames(System.String)"/></remarks>
  18236. <param name="volumeName">A volume <see cref="T:System.Guid"/> path: \\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\.</param>
  18237. <returns>
  18238. The shortest display name for the specified volume found, or <see langword="null"/> if no display names were found.
  18239. </returns>
  18240. </member>
  18241. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeGuid(System.String)">
  18242. <summary>
  18243. Retrieves a volume <see cref="T:System.Guid"/> path for the volume that is associated with the specified volume mount point (drive letter,
  18244. volume GUID path, or mounted folder).
  18245. </summary>
  18246. <exception cref="T:System.ArgumentNullException"/>
  18247. <param name="volumeMountPoint">
  18248. The path of a mounted folder (for example, "Y:\MountX\") or a drive letter (for example, "X:\").
  18249. </param>
  18250. <returns>The unique volume name of the form: "\\?\Volume{GUID}\".</returns>
  18251. </member>
  18252. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeGuidForNtDeviceName(System.String)">
  18253. <summary>
  18254. Tranlates DosDevicePath to a Volume GUID. For example: "\Device\HarddiskVolumeX\path\filename.ext" can translate to: "\path\
  18255. filename.ext" or: "\\?\Volume{GUID}\path\filename.ext".
  18256. </summary>
  18257. <param name="dosDevice">A DosDevicePath, for example: \Device\HarddiskVolumeX\path\filename.ext.</param>
  18258. <returns>A translated dos path.</returns>
  18259. </member>
  18260. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeInfo(System.String)">
  18261. <summary>Retrieves information about the file system and volume associated with the specified root file or directorystream.</summary>
  18262. <param name="volumePath">A path that contains the root directory.</param>
  18263. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.VolumeInfo"/> instance describing the volume associatied with the specified root directory.</returns>
  18264. </member>
  18265. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeInfo(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  18266. <summary>Retrieves information about the file system and volume associated with the specified root file or directorystream.</summary>
  18267. <param name="volumeHandle">An instance to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> handle.</param>
  18268. <returns>A <see cref="T:Alphaleonis.Win32.Filesystem.VolumeInfo"/> instance describing the volume associatied with the specified root directory.</returns>
  18269. </member>
  18270. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumeLabel(System.String)">
  18271. <summary>Retrieve the label of a file system volume.</summary>
  18272. <param name="volumePath">
  18273. A path to a volume. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18274. </param>
  18275. <returns>
  18276. The the label of the file system volume. This function can return <c>string.Empty</c> since a volume label is generally not
  18277. mandatory.
  18278. </returns>
  18279. </member>
  18280. <member name="M:Alphaleonis.Win32.Filesystem.Volume.GetVolumePathName(System.String)">
  18281. <summary>Retrieves the volume mount point where the specified path is mounted.</summary>
  18282. <exception cref="T:System.ArgumentNullException"/>
  18283. <param name="path">The path to the volume, for example: "C:\Windows".</param>
  18284. <returns>
  18285. <para>Returns the nearest volume root path for a given directory.</para>
  18286. <para>The volume path name, for example: "C:\Windows" returns: "C:\".</para>
  18287. </returns>
  18288. </member>
  18289. <member name="M:Alphaleonis.Win32.Filesystem.Volume.IsSameVolume(System.String,System.String)">
  18290. <summary>Determines whether the volume of two file system objects is the same.</summary>
  18291. <param name="path1">The first filesystem ojbect with full path information.</param>
  18292. <param name="path2">The second file system object with full path information.</param>
  18293. <returns><see langword="true"/> if both filesytem objects reside on the same volume, <see langword="false"/> otherwise.</returns>
  18294. </member>
  18295. <member name="M:Alphaleonis.Win32.Filesystem.Volume.IsVolume(System.String)">
  18296. <summary>Determines whether the specified volume name is a defined volume on the current computer.</summary>
  18297. <param name="volumeMountPoint">
  18298. A path to a volume. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\".
  18299. </param>
  18300. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  18301. </member>
  18302. <member name="M:Alphaleonis.Win32.Filesystem.Volume.SetCurrentVolumeLabel(System.String)">
  18303. <summary>Sets the label of the file system volume that is the root of the current directory.</summary>
  18304. <exception cref="T:System.ArgumentNullException"/>
  18305. <param name="volumeName">A name for the volume.</param>
  18306. </member>
  18307. <member name="M:Alphaleonis.Win32.Filesystem.Volume.SetVolumeLabel(System.String,System.String)">
  18308. <summary>Sets the label of a file system volume.</summary>
  18309. <param name="volumePath">
  18310. <para>A path to a volume. For example: "C:\", "\\server\share", or "\\?\Volume{c0580d5e-2ad6-11dc-9924-806e6f6e6963}\"</para>
  18311. <para>If this parameter is <see langword="null"/>, the function uses the current drive.</para>
  18312. </param>
  18313. <param name="volumeName">
  18314. <para>A name for the volume.</para>
  18315. <para>If this parameter is <see langword="null"/>, the function deletes any existing label</para>
  18316. <para>from the specified volume and does not assign a new label.</para>
  18317. </param>
  18318. </member>
  18319. <member name="M:Alphaleonis.Win32.Filesystem.Volume.SetVolumeMountPoint(System.String,System.String)">
  18320. <summary>Associates a volume with a Drive letter or a directory on another volume.</summary>
  18321. <exception cref="T:System.ArgumentNullException"/>
  18322. <exception cref="T:System.ArgumentException"/>
  18323. <param name="volumeMountPoint">
  18324. The user-mode path to be associated with the volume. This may be a Drive letter (for example, "X:\")
  18325. or a directory on another volume (for example, "Y:\MountX\").
  18326. </param>
  18327. <param name="volumeGuid">A <see cref="T:System.String"/> containing the volume <see cref="T:System.Guid"/>.</param>
  18328. </member>
  18329. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DefineDosDeviceCore(System.Boolean,System.String,System.String,Alphaleonis.Win32.Filesystem.DosDeviceAttributes,System.Boolean)">
  18330. <summary>Defines, redefines, or deletes MS-DOS device names.</summary>
  18331. <exception cref="T:System.ArgumentNullException"/>
  18332. <param name="isDefine">
  18333. <see langword="true"/> defines a new MS-DOS device. <see langword="false"/> deletes a previously defined MS-DOS device.
  18334. </param>
  18335. <param name="deviceName">
  18336. An MS-DOS device name string specifying the device the function is defining, redefining, or deleting.
  18337. </param>
  18338. <param name="targetPath">
  18339. A pointer to a path string that will implement this device. The string is an MS-DOS path string unless the
  18340. <see cref="F:Alphaleonis.Win32.Filesystem.DosDeviceAttributes.RawTargetPath"/> flag is specified, in which case this string is a path string.
  18341. </param>
  18342. <param name="deviceAttributes">
  18343. The controllable aspects of the DefineDosDevice function, <see cref="T:Alphaleonis.Win32.Filesystem.DosDeviceAttributes"/> flags which will be combined with the
  18344. default.
  18345. </param>
  18346. <param name="exactMatch">
  18347. Only delete MS-DOS device on an exact name match. If <paramref name="exactMatch"/> is <see langword="true"/>,
  18348. <paramref name="targetPath"/> must be the same path used to create the mapping.
  18349. </param>
  18350. <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
  18351. </member>
  18352. <member name="M:Alphaleonis.Win32.Filesystem.Volume.DeleteVolumeMountPointCore(System.String,System.Boolean)">
  18353. <summary>Deletes a Drive letter or mounted folder.</summary>
  18354. <remarks>
  18355. <para>It's not an error to attempt to unmount a volume from a volume mount point when there is no volume actually mounted at that volume mount point.</para>
  18356. <para>Deleting a mounted folder does not cause the underlying directory to be deleted.</para>
  18357. </remarks>
  18358. <exception cref="T:System.ArgumentNullException"/>
  18359. <param name="volumeMountPoint">The Drive letter or mounted folder to be deleted. For example, X:\ or Y:\MountX\.</param>
  18360. <param name="continueOnException">
  18361. <see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.
  18362. </param>
  18363. <returns>If completed successfully returns <see cref="F:Alphaleonis.Win32.Win32Errors.ERROR_SUCCESS"/>, otherwise the last error number.</returns>
  18364. </member>
  18365. <member name="T:Alphaleonis.Win32.Filesystem.VolumeInfo">
  18366. <summary>Contains information about a filesystem Volume.</summary>
  18367. </member>
  18368. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.#ctor(System.String)">
  18369. <summary>Initializes a VolumeInfo instance.</summary>
  18370. <exception cref="T:System.ArgumentNullException"/>
  18371. <exception cref="T:System.ArgumentException"/>
  18372. <param name="volumeName">A valid drive path or drive letter. This can be either uppercase or lowercase, 'a' to 'z' or a network share in the format: \\server\share.</param>
  18373. </member>
  18374. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.#ctor(System.String,System.Boolean,System.Boolean)">
  18375. <summary>Initializes a VolumeInfo instance.</summary>
  18376. <param name="driveName">A valid drive path or drive letter. This can be either uppercase or lowercase, 'a' to 'z' or a network share in the format: "\\server\share".</param>
  18377. <param name="refresh">Refreshes the state of the object.</param>
  18378. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  18379. </member>
  18380. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle)">
  18381. <summary>Initializes a VolumeInfo instance.</summary>
  18382. <param name="volumeHandle">An instance to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> handle.</param>
  18383. </member>
  18384. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Boolean,System.Boolean)">
  18385. <summary>Initializes a VolumeInfo instance.</summary>
  18386. <param name="volumeHandle">An instance to a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle"/> handle.</param>
  18387. <param name="refresh">Refreshes the state of the object.</param>
  18388. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  18389. </member>
  18390. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.Refresh">
  18391. <summary>Refreshes the state of the object.</summary>
  18392. </member>
  18393. <member name="M:Alphaleonis.Win32.Filesystem.VolumeInfo.ToString">
  18394. <summary>Returns the full path of the volume.</summary>
  18395. <returns>A string that represents this instance.</returns>
  18396. </member>
  18397. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.CasePreservedNames">
  18398. <summary>The specified volume supports preserved case of file names when it places a name on disk.</summary>
  18399. </member>
  18400. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.CaseSensitiveSearch">
  18401. <summary>The specified volume supports case-sensitive file names.</summary>
  18402. </member>
  18403. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.Compression">
  18404. <summary>The specified volume supports file-based compression.</summary>
  18405. </member>
  18406. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.FileSystemName">
  18407. <summary>Gets the name of the file system, for example, the FAT file system or the NTFS file system.</summary>
  18408. <value>The name of the file system.</value>
  18409. </member>
  18410. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.FullPath">
  18411. <summary>The full path to the volume.</summary>
  18412. </member>
  18413. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.Guid">
  18414. <summary>The volume GUID.</summary>
  18415. </member>
  18416. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.MaximumComponentLength">
  18417. <summary>Gets the maximum length of a file name component that the file system supports.</summary>
  18418. <value>The maximum length of a file name component that the file system supports.</value>
  18419. </member>
  18420. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.Name">
  18421. <summary>Gets the label of the volume.</summary>
  18422. <returns>The label of the volume.</returns>
  18423. <remarks>This property is the label assigned to the volume, such "MyDrive"</remarks>
  18424. </member>
  18425. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.NamedStreams">
  18426. <summary>The specified volume supports named streams.</summary>
  18427. </member>
  18428. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.PersistentAcls">
  18429. <summary>The specified volume preserves and enforces access control lists (ACL).</summary>
  18430. </member>
  18431. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.ReadOnlyVolume">
  18432. <summary>The specified volume is read-only.</summary>
  18433. </member>
  18434. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SequentialWriteOnce">
  18435. <summary>The specified volume supports a single sequential write.</summary>
  18436. </member>
  18437. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SerialNumber">
  18438. <summary>Gets the volume serial number that the operating system assigns when a hard disk is formatted.</summary>
  18439. <value>The volume serial number that the operating system assigns when a hard disk is formatted.</value>
  18440. </member>
  18441. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsEncryption">
  18442. <summary>The specified volume supports the Encrypted File System (EFS).</summary>
  18443. </member>
  18444. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsExtendedAttributes">
  18445. <summary>The specified volume supports extended attributes.</summary>
  18446. </member>
  18447. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsHardLinks">
  18448. <summary>The specified volume supports hard links.</summary>
  18449. </member>
  18450. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsObjectIds">
  18451. <summary>The specified volume supports object identifiers.</summary>
  18452. </member>
  18453. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsOpenByFileId">
  18454. <summary>The file system supports open by FileID.</summary>
  18455. </member>
  18456. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsRemoteStorage">
  18457. <summary>The specified volume supports remote storage. (This property does not appear on MSDN)</summary>
  18458. </member>
  18459. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsReparsePoints">
  18460. <summary>The specified volume supports re-parse points.</summary>
  18461. </member>
  18462. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsSparseFiles">
  18463. <summary>The specified volume supports sparse files.</summary>
  18464. </member>
  18465. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsTransactions">
  18466. <summary>The specified volume supports transactions.</summary>
  18467. </member>
  18468. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.SupportsUsnJournal">
  18469. <summary>The specified volume supports update sequence number (USN) journals.</summary>
  18470. </member>
  18471. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.UnicodeOnDisk">
  18472. <summary>The specified volume supports Unicode in file names as they appear on disk.</summary>
  18473. </member>
  18474. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.VolumeIsCompressed">
  18475. <summary>The specified volume is a compressed volume, for example, a DoubleSpace volume.</summary>
  18476. </member>
  18477. <member name="P:Alphaleonis.Win32.Filesystem.VolumeInfo.VolumeQuotas">
  18478. <summary>The specified volume supports disk quotas.</summary>
  18479. </member>
  18480. <member name="T:Alphaleonis.Win32.Network.DfsInfo">
  18481. <summary>Contains information about a Distributed File System (DFS) root or link. This class cannot be inherited.
  18482. <para>This structure contains the name, status, GUID, time-out, number of targets, and information about each target of the root or link.</para>
  18483. </summary>
  18484. </member>
  18485. <member name="M:Alphaleonis.Win32.Network.DfsInfo.#ctor">
  18486. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> class which acts as a wrapper for a DFS root or link target.</summary>
  18487. </member>
  18488. <member name="M:Alphaleonis.Win32.Network.DfsInfo.#ctor(Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9)">
  18489. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> class, which acts as a wrapper for a DFS root or link target.</summary>
  18490. <param name="structure">An initialized <see cref="T:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9"/> instance.</param>
  18491. </member>
  18492. <member name="M:Alphaleonis.Win32.Network.DfsInfo.ToString">
  18493. <summary>Returns the Universal Naming Convention (UNC) path of the DFS root or link.</summary>
  18494. <returns>A string that represents this instance.</returns>
  18495. </member>
  18496. <member name="P:Alphaleonis.Win32.Network.DfsInfo.DirectoryInfo">
  18497. <summary>The <see cref="P:Alphaleonis.Win32.Network.DfsInfo.DirectoryInfo"/> instance of the DFS root or link.</summary>
  18498. </member>
  18499. <member name="P:Alphaleonis.Win32.Network.DfsInfo.Comment">
  18500. <summary>The comment of the DFS root or link.</summary>
  18501. </member>
  18502. <member name="P:Alphaleonis.Win32.Network.DfsInfo.EntryPath">
  18503. <summary>The Universal Naming Convention (UNC) path of the DFS root or link.</summary>
  18504. </member>
  18505. <member name="P:Alphaleonis.Win32.Network.DfsInfo.Guid">
  18506. <summary>Specifies the GUID of the DFS root or link.</summary>
  18507. </member>
  18508. <member name="P:Alphaleonis.Win32.Network.DfsInfo.StorageInfoCollection">
  18509. <summary>The collection of DFS targets of the DFS root or link.</summary>
  18510. </member>
  18511. <member name="P:Alphaleonis.Win32.Network.DfsInfo.State">
  18512. <summary>An <see cref="T:Alphaleonis.Win32.Network.DfsVolumeStates"/> enum that specifies a set of bit flags that describe the DFS root or link.</summary>
  18513. </member>
  18514. <member name="P:Alphaleonis.Win32.Network.DfsInfo.Timeout">
  18515. <summary>Specifies the time-out, in seconds, of the DFS root or link.</summary>
  18516. </member>
  18517. <member name="P:Alphaleonis.Win32.Network.DfsInfo.PropertyFlags">
  18518. <summary>Specifies a set of flags that describe specific properties of a DFS namespace, root, or link.</summary>
  18519. </member>
  18520. <member name="P:Alphaleonis.Win32.Network.DfsInfo.MetadataSize">
  18521. <summary>For domain-based DFS namespaces, this member specifies the size of the corresponding Active Directory data blob, in bytes.
  18522. For stand-alone DFS namespaces, this field specifies the size of the metadata stored in the registry,
  18523. including the key names and value names, in addition to the specific data items associated with them. This field is valid for DFS roots only.
  18524. </summary>
  18525. </member>
  18526. <member name="P:Alphaleonis.Win32.Network.DfsInfo.SecurityDescriptor">
  18527. <summary>Pointer to a SECURITY_DESCRIPTOR structure that specifies a self-relative security descriptor to be associated with the DFS link's reparse point.
  18528. This field is valid for DFS links only.
  18529. </summary>
  18530. </member>
  18531. <member name="T:Alphaleonis.Win32.Network.DfsStorageInfo">
  18532. <summary>Contains information about a DFS root or link target in a DFS namespace or from the cache maintained by the DFS client.
  18533. <para>This class cannot be inherited.</para>
  18534. </summary>
  18535. </member>
  18536. <member name="M:Alphaleonis.Win32.Network.DfsStorageInfo.#ctor">
  18537. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Network.DfsStorageInfo"/> class, which acts as a wrapper for a DFS root or link target.</summary>
  18538. </member>
  18539. <member name="M:Alphaleonis.Win32.Network.DfsStorageInfo.#ctor(Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1)">
  18540. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Network.DfsStorageInfo"/> class, which acts as a wrapper for a DFS root or link target.</summary>
  18541. <param name="structure">An initialized <see cref="T:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1"/> instance.</param>
  18542. </member>
  18543. <member name="M:Alphaleonis.Win32.Network.DfsStorageInfo.ToString">
  18544. <summary>The share name of the DFS root target or link target.</summary>
  18545. <returns>A string that represents this instance.</returns>
  18546. </member>
  18547. <member name="P:Alphaleonis.Win32.Network.DfsStorageInfo.ServerName">
  18548. <summary>The server name of the DFS root target or link target.</summary>
  18549. </member>
  18550. <member name="P:Alphaleonis.Win32.Network.DfsStorageInfo.ShareName">
  18551. <summary>The share name of the DFS root target or link target.</summary>
  18552. </member>
  18553. <member name="P:Alphaleonis.Win32.Network.DfsStorageInfo.State">
  18554. <summary>An <see cref="T:Alphaleonis.Win32.Network.DfsStorageStates"/> enum of the DFS root target or link target.</summary>
  18555. </member>
  18556. <member name="P:Alphaleonis.Win32.Network.DfsStorageInfo.TargetPriorityClass">
  18557. <summary>Contains a DFS target's priority class and rank.</summary>
  18558. </member>
  18559. <member name="P:Alphaleonis.Win32.Network.DfsStorageInfo.TargetPriorityRank">
  18560. <summary>Specifies the priority rank value of the target. The default value is 0, which indicates the highest priority rank within a priority class.</summary>
  18561. </member>
  18562. <member name="T:Alphaleonis.Win32.Network.DfsPropertyFlags">
  18563. <summary>A set of bit flags that describe specific properties of a DFS namespace, root, or link.</summary>
  18564. </member>
  18565. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.None">
  18566. <summary>No property flag.</summary>
  18567. </member>
  18568. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.InsiteReferrals">
  18569. <summary>DFS_PROPERTY_FLAG_INSITE_REFERRALS
  18570. <para>
  18571. Scope: Domain roots, stand-alone roots, and links.
  18572. If this flag is set at the DFS root, it applies to all links; otherwise, the value of this flag is considered for each individual link.
  18573. </para>
  18574. <para>
  18575. When this flag is set, a DFS referral response from a DFS server for a DFS root or link with the "INSITE" option enabled contains only
  18576. those targets which are in the same site as the DFS client requesting the referral.
  18577. Targets in the two global priority classes are always returned, regardless of their site location.
  18578. </para>
  18579. </summary>
  18580. </member>
  18581. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.RootScalability">
  18582. <summary>DFS_PROPERTY_FLAG_ROOT_SCALABILITY
  18583. <para>
  18584. Scope: The entire DFS namespace for a domain-based DFS namespace only.
  18585. </para>
  18586. <para>
  18587. By default, a DFS root target server polls the PDS to detect changes to the DFS metadata.
  18588. To prevent heavy server load on the PDC, root scalability can be enabled for the DFS namespace.
  18589. Setting this flag will cause the DFS server to poll the nearest domain controller instead of the PDC for DFS metadata changes for the common namespace.
  18590. Note that any changes made to the metadata must still occur on the PDC, however.
  18591. </para>
  18592. </summary>
  18593. </member>
  18594. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.SiteCosting">
  18595. <summary>DFS_PROPERTY_FLAG_SITE_COSTING
  18596. <para>
  18597. Scope: The entire DFS namespace for both domain-based and stand-alone DFS namespaces.
  18598. </para>
  18599. <para>
  18600. By default, targets returned in a referral response from a DFS server to a DFS client for a DFS root or link
  18601. consists of two groups: targets in the same site as the client, and targets outside the site.
  18602. </para>
  18603. <para>
  18604. If site-costing is enabled for the Active Directory, the response can have more than two groups,
  18605. with each group containing targets with the same site cost for the specific DFS client requesting the referral.
  18606. The groups are ordered by increasing site cost. For more information about how site-costing is used to prioritize targets.
  18607. </para>
  18608. </summary>
  18609. </member>
  18610. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.TargetFailback">
  18611. <summary>DFS_PROPERTY_FLAG_TARGET_FAILBACK
  18612. <para>
  18613. Scope: Domain-based DFS roots, stand-alone DFS roots, and DFS links.
  18614. If this flag is set at the DFS root, it applies to all links; otherwise, the value of this flag is considered for each individual link.
  18615. </para>
  18616. <para>
  18617. When this flag is set, optimal target failback is enabled for V4 DFS clients,
  18618. allowing them to fail back to an optimal target after failing over to a non-optimal one.
  18619. The target failback setting is provided to the DFS client in a V4 referral response by a DFS server.
  18620. </para>
  18621. </summary>
  18622. </member>
  18623. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.ClusterEnabled">
  18624. <summary>DFS_PROPERTY_FLAG_CLUSTER_ENABLED
  18625. <para>Scope: Stand-alone DFS roots and links only.</para>
  18626. <para>The DFS root is clustered to provide high availability for storage failover.</para>
  18627. </summary>
  18628. </member>
  18629. <member name="F:Alphaleonis.Win32.Network.DfsPropertyFlags.AccessBasedDirectoryEnumeration">
  18630. <summary>DFS_PROPERTY_FLAG_ABDE
  18631. <para>Scope: Domain-based DFS roots and stand-alone DFS roots.</para>
  18632. <para>When this flag is set, Access-Based Directory Enumeration (ABDE) mode support is enabled on the entire DFS root target share of the DFS namespace.</para>
  18633. </summary>
  18634. </member>
  18635. <member name="T:Alphaleonis.Win32.Network.DfsTargetPriorityClass">
  18636. <summary>Defines the set of possible DFS target priority class settings.</summary>
  18637. </member>
  18638. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsInvalidPriorityClass">
  18639. <summary>The priority class is not valid.</summary>
  18640. </member>
  18641. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsSiteCostNormalPriorityClass">
  18642. <summary>The middle or "normal" site cost priority class for a DFS target.</summary>
  18643. </member>
  18644. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsGlobalHighPriorityClass">
  18645. <summary>The highest priority class for a DFS target. Targets assigned this class receive global preference.</summary>
  18646. </member>
  18647. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsSiteCostHighPriorityClass">
  18648. <summary>The highest site cost priority class for a DFS target. Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client.</summary>
  18649. </member>
  18650. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsSiteCostLowPriorityClass">
  18651. <summary>The lowest site cost priority class for a DFS target. Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client.</summary>
  18652. </member>
  18653. <member name="F:Alphaleonis.Win32.Network.DfsTargetPriorityClass.DfsGlobalLowPriorityClass">
  18654. <summary>The lowest level of priority class for a DFS target. Targets assigned this class receive the least preference globally.</summary>
  18655. </member>
  18656. <member name="T:Alphaleonis.Win32.Network.ShareInfoLevel">
  18657. <summary>The <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> information level.</summary>
  18658. </member>
  18659. <member name="F:Alphaleonis.Win32.Network.ShareInfoLevel.None">
  18660. <summary>No specific information level used.</summary>
  18661. </member>
  18662. <member name="F:Alphaleonis.Win32.Network.ShareInfoLevel.Info1">
  18663. <summary>Contains information about the shared resource, including the name and type of the resource, and a comment associated with the resource.</summary>
  18664. </member>
  18665. <member name="F:Alphaleonis.Win32.Network.ShareInfoLevel.Info2">
  18666. <summary>Contains information about the shared resource, including the name, type, and permissions of the resource, comments associated with the resource,
  18667. the maximum number of concurrent connections, the number of current connections, the local path for the resource, and a password for the current connection.
  18668. </summary>
  18669. </member>
  18670. <member name="F:Alphaleonis.Win32.Network.ShareInfoLevel.Info503">
  18671. <summary>Contains information about the shared resource, including the server name, name of the resource, type, and permissions,
  18672. the number of connections, and other pertinent information.
  18673. </summary>
  18674. </member>
  18675. <member name="F:Alphaleonis.Win32.Network.ShareInfoLevel.Info1005">
  18676. <summary>Contains information about the shared resource.</summary>
  18677. </member>
  18678. <member name="T:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage">
  18679. <summary>NETRESOURCE structure.
  18680. <para>ResourceUsage: A set of bit flags describing how the resource can be used.</para>
  18681. </summary>
  18682. <remarks>Note that this member can be specified only if the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.ResourceScope"/> member is equal to <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.GlobalNet"/>.</remarks>
  18683. </member>
  18684. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Connectable">
  18685. <summary>RESOURCEUSAGE_CONNECTABLE
  18686. <para>The resource is a connectable resource.</para>
  18687. <para>The name pointed to by the lpRemoteName member can be passed to the WNetAddConnection function to make a network connection.</para>
  18688. </summary>
  18689. </member>
  18690. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Container">
  18691. <summary>RESOURCEUSAGE_CONTAINER
  18692. <para>The resource is a container resource.</para>
  18693. <para>The name pointed to by the lpRemoteName member can be passed to the WNetAddConnection function to make a network connection.</para>
  18694. </summary>
  18695. </member>
  18696. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.NoLocalDevice">
  18697. <summary>RESOURCEUSAGE_NOLOCALDEVICE
  18698. <para>The resource is not a local device.</para>
  18699. </summary>
  18700. </member>
  18701. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Sibling">
  18702. <summary>RESOURCEUSAGE_SIBLING
  18703. <para>The resource is a sibling.</para>
  18704. <para>This value is not used by Windows.</para>
  18705. </summary>
  18706. </member>
  18707. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Attached">
  18708. <summary>RESOURCEUSAGE_ATTACHED
  18709. <para>The resource must be attached.</para>
  18710. <para>This value specifies that a function to enumerate this resource should fail</para>
  18711. <para>if the caller is not authenticated, even if the network permits enumeration without authentication.</para>
  18712. </summary>
  18713. </member>
  18714. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.All">
  18715. <summary>RESOURCEUSAGE_ALL
  18716. <para>Setting this value is equivalent to setting: <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Connectable"/>, <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Container"/>, and <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage.Attached"/>.</para>
  18717. </summary>
  18718. </member>
  18719. <member name="T:Alphaleonis.Win32.Network.NativeMethods.ResourceType">
  18720. <summary>NETRESOURCE structure.
  18721. <para>ResourceType: The type of resource.</para>
  18722. <remarks>
  18723. <para>If a network provider cannot distinguish between</para>
  18724. <para>print and disk resources, it can enumerate all resources.</para>
  18725. </remarks>
  18726. </summary>
  18727. </member>
  18728. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceType.Any">
  18729. <summary>RESOURCETYPE_ANY
  18730. <para>ResourceType: All resources.</para>
  18731. <remarks>
  18732. <para>If a network provider cannot distinguish between print and disk resources, it can enumerate all resources.</para>
  18733. <para>This value cannot be combined with <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceType.Disk"/> or <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceType.Print"/>.</para>
  18734. </remarks>
  18735. </summary>
  18736. </member>
  18737. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceType.Disk">
  18738. <summary>RESOURCETYPE_DISK
  18739. <para>All disk resources.</para>
  18740. </summary>
  18741. </member>
  18742. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceType.Print">
  18743. <summary>RESOURCETYPE_PRINT
  18744. <para>All print resources.</para>
  18745. </summary>
  18746. </member>
  18747. <member name="T:Alphaleonis.Win32.Network.NativeMethods.ResourceScope">
  18748. <summary>NETRESOURCE structure.
  18749. <para>ResourceScope: The scope of the enumeration.</para>
  18750. </summary>
  18751. </member>
  18752. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Connected">
  18753. <summary>RESOURCE_CONNECTED
  18754. <para>Enumerate all currently connected resources.</para>
  18755. <para>The function ignores the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage"/> parameter.</para>
  18756. </summary>
  18757. </member>
  18758. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.GlobalNet">
  18759. <summary>RESOURCE_GLOBALNET
  18760. <para>Enumerate all resources on the network.</para>
  18761. </summary>
  18762. </member>
  18763. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Remembered">
  18764. <summary>RESOURCE_REMEMBERED
  18765. <para>Enumerate all remembered (persistent) connections.</para>
  18766. <para>The function ignores the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage"/> parameter.</para>
  18767. </summary>
  18768. </member>
  18769. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Recent">
  18770. <summary>RESOURCE_RECENT</summary>
  18771. </member>
  18772. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Context">
  18773. <summary>RESOURCE_CONTEXT
  18774. <para>Enumerate only resources in the network context of the caller. Specify this value for a Network Neighborhood view.</para>
  18775. <para>The function ignores the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.ResourceUsage"/> parameter.</para>
  18776. </summary>
  18777. </member>
  18778. <member name="T:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType">
  18779. <summary>The display options for the network object in a network browsing user interface.</summary>
  18780. </member>
  18781. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Generic">
  18782. <summary>RESOURCEDISPLAYTYPE_GENERIC
  18783. <para>The method used to display the object does not matter.</para>
  18784. </summary>
  18785. </member>
  18786. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Domain">
  18787. <summary>RESOURCEDISPLAYTYPE_DOMAIN
  18788. <para>The object should be displayed as a domain.</para>
  18789. </summary>
  18790. </member>
  18791. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Server">
  18792. <summary>RESOURCEDISPLAYTYPE_SERVER
  18793. <para>The object should be displayed as a server.</para>
  18794. </summary>
  18795. </member>
  18796. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Share">
  18797. <summary>RESOURCEDISPLAYTYPE_SHARE
  18798. <para>The object should be displayed as a share</para>
  18799. </summary>
  18800. </member>
  18801. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.File">
  18802. <summary>RESOURCEDISPLAYTYPE_FILE
  18803. <para>The object should be displayed as a file.</para>
  18804. </summary>
  18805. </member>
  18806. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Group">
  18807. <summary>RESOURCEDISPLAYTYPE_GROUP
  18808. <para>The object should be displayed as a group.</para>
  18809. </summary>
  18810. </member>
  18811. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Network">
  18812. <summary>RESOURCEDISPLAYTYPE_NETWORK
  18813. <para>The object should be displayed as a network.</para>
  18814. </summary>
  18815. </member>
  18816. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Root">
  18817. <summary>RESOURCEDISPLAYTYPE_ROOT
  18818. <para>The object should be displayed as a logical root for the entire network.</para>
  18819. </summary>
  18820. </member>
  18821. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.ShareAdmin">
  18822. <summary>RESOURCEDISPLAYTYPE_SHAREADMIN
  18823. <para>The object should be displayed as a administrative share.</para>
  18824. </summary>
  18825. </member>
  18826. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Directory">
  18827. <summary>RESOURCEDISPLAYTYPE_DIRECTORY
  18828. <para>The object should be displayed as a directory.</para>
  18829. </summary>
  18830. </member>
  18831. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.Tree">
  18832. <summary>RESOURCEDISPLAYTYPE_TREE
  18833. <para>The object should be displayed as a tree.</para>
  18834. </summary>
  18835. </member>
  18836. <member name="F:Alphaleonis.Win32.Network.NativeMethods.ResourceDisplayType.NdsContainer">
  18837. <summary>RESOURCEDISPLAYTYPE_NDSCONTAINER
  18838. <para>The object should be displayed as a Netware Directory Service container.</para>
  18839. </summary>
  18840. </member>
  18841. <member name="T:Alphaleonis.Win32.Network.NativeMethods.Connect">
  18842. <summary>Used by function WNetUseConnection(); Set of bit flags describing the connection. This parameter can be any combination of the following values.</summary>
  18843. </member>
  18844. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.None">
  18845. <summary>No Connect options are used.</summary>
  18846. </member>
  18847. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.UpdateProfile">
  18848. <summary>This flag instructs the operating system to store the network resource connection. If this bit flag is set, the operating system automatically attempts to restore the connection when the user logs on. The system remembers only successful connections that redirect local devices. It does not remember connections that are unsuccessful or deviceless connections.</summary>
  18849. </member>
  18850. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.Interactive">
  18851. <summary>If this flag is set, the operating system may interact with the user for authentication purposes.</summary>
  18852. </member>
  18853. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.Prompt">
  18854. <summary>This flag instructs the system not to use any default settings for user names or passwords without offering the user the opportunity to supply an alternative. This flag is ignored unless <see cref="F:Alphaleonis.Win32.Network.NativeMethods.Connect.Interactive"/> is also set.</summary>
  18855. </member>
  18856. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.Redirect">
  18857. <summary>This flag forces the redirection of a local device when making the connection.</summary>
  18858. </member>
  18859. <member name="F:Alphaleonis.Win32.Network.NativeMethods.Connect.SaveCredentialManager">
  18860. <summary>If this flag is set, and the operating system prompts for a credential, the credential should be saved by the credential manager. If the credential manager is disabled for the caller's logon session, or if the network provider does not support saving credentials, this flag is ignored. This flag is also ignored unless you set the "CommandLine" flag.</summary>
  18861. </member>
  18862. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors">
  18863. <summary>Contains the name and type (domain-based or stand-alone) of a DFS namespace.</summary>
  18864. <remarks>Minimum supported client: Windows XP with SP1 [desktop apps only]</remarks>
  18865. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  18866. </member>
  18867. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors.Unknown">
  18868. <summary></summary>
  18869. </member>
  18870. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors.Standalone">
  18871. <summary>DFS_VOLUME_FLAVOR_STANDALONE
  18872. <para>Specifies a stand-alone DFS namespace.</para>
  18873. </summary>
  18874. </member>
  18875. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors.AdBlob">
  18876. <summary>DFS_VOLUME_FLAVOR_AD_BLOB
  18877. <para>Specifies a domain-based DFS namespace.</para>
  18878. </summary>
  18879. </member>
  18880. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors.All">
  18881. <summary>DFS_VOLUME_FLAVORS bitmask (0x00000300)
  18882. <para>Used to extract the DFS namespace flavor.</para>
  18883. </summary>
  18884. </member>
  18885. <member name="M:Alphaleonis.Win32.Network.NativeMethods.WNetCancelConnection(System.String,Alphaleonis.Win32.Network.NativeMethods.Connect,System.Boolean)">
  18886. <summary>The WNetCancelConnection function cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.</summary>
  18887. <returns>
  18888. If the function succeeds, the return value is <see cref="F:Alphaleonis.Win32.Win32Errors.NO_ERROR"/>
  18889. If the function fails, the return value is a system error code.
  18890. </returns>
  18891. <remarks>
  18892. <para>Minimum supported client: Windows 2000 Professional [desktop apps only]</para>
  18893. <para>Minimum supported server: Windows 2000 Server [desktop apps only]</para>
  18894. </remarks>
  18895. </member>
  18896. <member name="M:Alphaleonis.Win32.Network.NativeMethods.WNetGetUniversalName(System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.UInt32@)">
  18897. <summary>The WNetGetUniversalName function takes a drive-based path for a network resource and returns an information structure that contains a more universal form of the name.</summary>
  18898. <returns>
  18899. If the function succeeds, the return value is <see cref="F:Alphaleonis.Win32.Win32Errors.NO_ERROR"/>
  18900. If the function fails, the return value is a system error code.
  18901. </returns>
  18902. <remarks>
  18903. <para>Minimum supported client: Windows 2000 Professional [desktop apps only]</para>
  18904. <para>Minimum supported server: Windows 2000 Server [desktop apps only]</para>
  18905. </remarks>
  18906. </member>
  18907. <member name="M:Alphaleonis.Win32.Network.NativeMethods.WNetUseConnection(System.IntPtr,Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE@,System.String,System.String,Alphaleonis.Win32.Network.NativeMethods.Connect,System.Text.StringBuilder,System.UInt32@,System.UInt32@)">
  18908. <summary>The WNetUseConnection function creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  18909. <returns>
  18910. If the function succeeds, the return value is <see cref="F:Alphaleonis.Win32.Win32Errors.NO_ERROR"/>
  18911. If the function fails, the return value is a system error code.
  18912. </returns>
  18913. <remarks>
  18914. <para>Minimum supported client: Windows 2000 Professional [desktop apps only]</para>
  18915. <para>Minimum supported server: Windows 2000 Server [desktop apps only]</para>
  18916. </remarks>
  18917. </member>
  18918. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetConnectionEnum(System.String,System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@,System.Int32,System.UInt32@,System.UInt32@,System.UInt32@)">
  18919. <summary>Lists all connections made to a shared resource on the server or all connections established from a particular computer.</summary>
  18920. <returns>
  18921. If the function succeeds, the return value is NERR_Success.
  18922. If the function fails, the return value is a system error code.
  18923. </returns>
  18924. <remarks>
  18925. <para>If there is more than one user using this connection, then it is possible to get more than one structure for the same connection, but with a different user name.</para>
  18926. <para>Administrator, Server or Print Operator, or Power User group membership is required to successfully execute the NetConnectionEnum function.</para>
  18927. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  18928. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  18929. </remarks>
  18930. </member>
  18931. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetFileClose(System.String,System.UInt32)">
  18932. <summary>Forces a resource to close. This function can be used when an error prevents closure by any other means.</summary>
  18933. <returns>
  18934. If the function succeeds, the return value is NERR_Success.
  18935. If the function fails, the return value is a system error code.
  18936. </returns>
  18937. <remarks>
  18938. <para>You should use NetFileClose with caution because it does not write data cached on the client system to the file before closing the file.</para>
  18939. <para>Only members of the Administrators or Server Operators local group can successfully execute the NetFileEnum function.</para>
  18940. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  18941. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  18942. </remarks>
  18943. </member>
  18944. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetFileEnum(System.String,System.String,System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@,System.Int32,System.UInt32@,System.UInt32@,System.UInt32@)">
  18945. <summary>Returns information about some or all open files on a server, depending on the parameters specified.</summary>
  18946. <returns>
  18947. If the function succeeds, the return value is NERR_Success.
  18948. If the function fails, the return value is a system error code.
  18949. </returns>
  18950. <remarks>
  18951. <para>Only members of the Administrators or Server Operators local group can successfully execute the NetFileEnum function.</para>
  18952. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  18953. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  18954. </remarks>
  18955. </member>
  18956. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetShareEnum(System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@,System.Int32,System.UInt32@,System.UInt32@,System.UInt32@)">
  18957. <summary>Retrieves information about each (hidden) Server Message Block (SMB) resource/share on a server.</summary>
  18958. <returns>
  18959. If the function succeeds, the return value is NERR_Success.
  18960. If the function fails, the return value is a system error code.
  18961. </returns>
  18962. <remarks>
  18963. <para>For interactive users (users who are logged on locally to the machine), no special group membership is required to execute the NetShareEnum function.</para>
  18964. <para>For non-interactive users, Administrator, Power User, Print Operator, or Server Operator group membership is required to successfully execute the NetShareEnum function at levels 2, 502, and 503. No special group membership is required for level 0 or level 1 calls.</para>
  18965. <para>This function applies only to Server Message Block (SMB) shares.</para>
  18966. <para>Windows Server 2003 and Windows XP: For all users, Administrator, Power User, Print Operator, or Server Operator group membership is required to successfully execute the NetShareEnum function at levels 2 and 502.</para>
  18967. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  18968. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  18969. </remarks>
  18970. </member>
  18971. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetShareGetInfo(System.String,System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@)">
  18972. <summary>Retrieves information about a particular Server Message Block (SMB) shared resource on a server.</summary>
  18973. <returns>
  18974. If the function succeeds, the return value is NERR_Success.
  18975. If the function fails, the return value is a system error code.
  18976. </returns>
  18977. <remarks>
  18978. <para>For interactive users (users who are logged on locally to the machine), no special group membership is required to execute the NetShareGetInfo function.</para>
  18979. <para>For non-interactive users, Administrator, Power User, Print Operator, or Server Operator group membership is required to successfully execute the NetShareGetInfo function at levels 2, 502, and 503.</para>
  18980. <para>This function applies only to Server Message Block (SMB) shares.</para>
  18981. <para>Windows Server 2003 and Windows XP: For all users, Administrator, Power User, Print Operator, or Server Operator group membership is required to successfully execute the NetShareGetInfo function at levels 2 and 502.</para>
  18982. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  18983. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  18984. </remarks>
  18985. </member>
  18986. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetServerDiskEnum(System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@,System.Int32,System.UInt32@,System.UInt32@,System.UInt32@)">
  18987. <summary>The NetServerDiskEnum function retrieves a list of disk drives on a server.</summary>
  18988. <returns>
  18989. If the function succeeds, the return value is NERR_Success.
  18990. If the function fails, the return value is a system error code.
  18991. </returns>
  18992. <remarks>
  18993. <para>The function returns an array of three-character strings (a drive letter, a colon, and a terminating null character).</para>
  18994. <para>Only members of the Administrators or Server Operators local group can successfully execute the NetServerDiskEnum function on a remote computer.</para>
  18995. <para>Minimum supported client: Windows 2000 Professional [desktop apps only]</para>
  18996. <para>Minimum supported server: Windows 2000 Server [desktop apps only]</para>
  18997. </remarks>
  18998. </member>
  18999. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetDfsEnum(System.String,System.UInt32,System.Int32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@,System.UInt32@,System.UInt32@)">
  19000. <summary>Enumerates the Distributed File System (DFS) namespaces hosted on a server or DFS links of a namespace hosted by a server.</summary>
  19001. <returns>
  19002. If the function succeeds, the return value is NERR_Success.
  19003. If the function fails, the return value is a system error code.
  19004. </returns>
  19005. <remarks>
  19006. <para>No special group membership is required for using the NetDfsEnum function.</para>
  19007. <para>Minimum supported client: Windows Vista</para>
  19008. <para>Minimum supported server: Windows Server 2003</para>
  19009. </remarks>
  19010. </member>
  19011. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetDfsGetClientInfo(System.String,System.String,System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@)">
  19012. <summary>Retrieves information about a Distributed File System (DFS) root or link from the cache maintained by the DFS client.</summary>
  19013. <returns>
  19014. If the function succeeds, the return value is NERR_Success.
  19015. If the function fails, the return value is a system error code.
  19016. </returns>
  19017. <remarks>
  19018. <para>No special group membership is required for using the NetDfsGetClientInfo function.</para>
  19019. <para>Minimum supported client: Windows Vista</para>
  19020. <para>Minimum supported server: Windows Server 2003</para>
  19021. </remarks>
  19022. </member>
  19023. <member name="M:Alphaleonis.Win32.Network.NativeMethods.NetDfsGetInfo(System.String,System.String,System.String,System.UInt32,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@)">
  19024. <summary>Retrieves information about a specified Distributed File System (DFS) root or link in a DFS namespace.</summary>
  19025. <returns>
  19026. If the function succeeds, the return value is NERR_Success.
  19027. If the function fails, the return value is a system error code.
  19028. </returns>
  19029. <remarks>
  19030. <para>No special group membership is required for using the NetDfsGetInfo function.</para>
  19031. <para>Minimum supported client: Windows Vista</para>
  19032. <para>Minimum supported server: Windows Server 2003</para>
  19033. </remarks>
  19034. </member>
  19035. <member name="F:Alphaleonis.Win32.Network.NativeMethods.MaxPreferredLength">
  19036. <summary>A constant of type DWORD that is set to –1. This value is valid as an input parameter to any method in section 3.1.4 that takes a PreferedMaximumLength parameter. When specified as an input parameter, this value indicates that the method MUST allocate as much space as the data requires.</summary>
  19037. <remarks>MSDN "2.2.2.2 MAX_PREFERRED_LENGTH": http://msdn.microsoft.com/en-us/library/cc247107.aspx </remarks>
  19038. </member>
  19039. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9">
  19040. <summary>Contains the name, status, GUID, time-out, property flags, metadata size, DFS target information, link reparse point security descriptor, and a list of DFS targets for a root or link.</summary>
  19041. <remarks>Minimum supported client: Windows Vista with SP1</remarks>
  19042. <remarks>Minimum supported server: Windows Server 2008</remarks>
  19043. </member>
  19044. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.EntryPath">
  19045. <summary>The Universal Naming Convention (UNC) path of a DFS root or link.</summary>
  19046. </member>
  19047. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.Comment">
  19048. <summary>The comment associated with the DFS root or link.</summary>
  19049. </member>
  19050. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.State">
  19051. <summary>A <see cref="T:Alphaleonis.Win32.Network.DfsVolumeStates"/> that specifies a set of bit flags that describe the DFS root or link.</summary>
  19052. </member>
  19053. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.Timeout">
  19054. <summary>Specifies the time-out, in seconds, of the DFS root or link.</summary>
  19055. </member>
  19056. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.Guid">
  19057. <summary>Specifies the GUID of the DFS root or link.</summary>
  19058. </member>
  19059. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.PropertyFlags">
  19060. <summary>Specifies a set of flags that describe specific properties of a DFS namespace, root, or link.</summary>
  19061. </member>
  19062. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.MetadataSize">
  19063. <summary>For domain-based DFS namespaces, this member specifies the size of the corresponding Active Directory data blob, in bytes.
  19064. For stand-alone DFS namespaces, this field specifies the size of the metadata stored in the registry,
  19065. including the key names and value names, in addition to the specific data items associated with them.
  19066. This field is valid for DFS roots only.
  19067. </summary>
  19068. </member>
  19069. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.SdLengthReserved">
  19070. <summary>This member is reserved for system use.</summary>
  19071. </member>
  19072. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.pSecurityDescriptor">
  19073. <summary>Pointer to a SECURITY_DESCRIPTOR structure that specifies a self-relative security descriptor to be associated with the DFS link's reparse point.
  19074. This field is valid for DFS links only.
  19075. </summary>
  19076. </member>
  19077. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.NumberOfStorages">
  19078. <summary>Specifies the number of DFS targets.</summary>
  19079. </member>
  19080. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_9.Storage">
  19081. <summary>An array of <see cref="T:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1"/> structures.</summary>
  19082. </member>
  19083. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DFS_TARGET_PRIORITY">
  19084. <summary>Contains the priority class and rank of a specific DFS target.</summary>
  19085. <remarks>Minimum supported client: Windows Vista</remarks>
  19086. <remarks>Minimum supported server: Windows Server 2008, Windows Server 2003 with SP1</remarks>
  19087. </member>
  19088. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_TARGET_PRIORITY.TargetPriorityClass">
  19089. <summary>DFS_TARGET_PRIORITY_CLASS enumeration value that specifies the priority class of the target.</summary>
  19090. </member>
  19091. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_TARGET_PRIORITY.TargetPriorityRank">
  19092. <summary>Specifies the priority rank value of the target. The default value is 0, which indicates the highest priority rank within a priority class.</summary>
  19093. </member>
  19094. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_TARGET_PRIORITY.Reserved">
  19095. <summary>This member is reserved and must be zero.</summary>
  19096. </member>
  19097. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1">
  19098. <summary>Contains information about a DFS target, including the DFS target server name and share name as well as the target's state and priority.</summary>
  19099. <remarks>Minimum supported client: Windows Vista</remarks>
  19100. <remarks>Minimum supported server: Windows Server 2008, Windows Server 2003 with SP1</remarks>
  19101. </member>
  19102. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1.State">
  19103. <summary>State of the target.</summary>
  19104. </member>
  19105. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1.ServerName">
  19106. <summary>The DFS root target or link target server name.</summary>
  19107. </member>
  19108. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1.ShareName">
  19109. <summary>The DFS root target or link target share name.</summary>
  19110. </member>
  19111. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_STORAGE_INFO_1.TargetPriority">
  19112. <summary>DFS_TARGET_PRIORITY structure that contains a DFS target's priority class and rank.</summary>
  19113. </member>
  19114. <member name="T:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE">
  19115. <summary>Contains information about a network resource.
  19116. <para>The NETRESOURCE structure is returned during an enumeration of network resources.</para>
  19117. <para>The NETRESOURCE structure is also specified when making or querying</para>
  19118. <para>a network connection with calls to various Windows Networking functions.</para>
  19119. </summary>
  19120. </member>
  19121. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.dwScope">
  19122. <summary>The scope of the enumeration.</summary>
  19123. </member>
  19124. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.dwType">
  19125. <summary>The type of resource</summary>
  19126. </member>
  19127. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.dwDisplayType">
  19128. <summary>The display options for the network object in a network browsing user interface.</summary>
  19129. </member>
  19130. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.dwUsage">
  19131. <summary>A set of bit flags describing how the resource can be used.</summary>
  19132. </member>
  19133. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpLocalName">
  19134. <summary>If the <see cref="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.dwScope"/> member is equal to <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Connected"/> or <see cref="F:Alphaleonis.Win32.Network.NativeMethods.ResourceScope.Remembered"/>,
  19135. this member is a pointer to a <see langword="null"/>-terminated character string that specifies the name of a local device.
  19136. This member is <see langword="null"/> if the connection does not use a device.
  19137. </summary>
  19138. </member>
  19139. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpRemoteName">
  19140. <summary>If the entry is a network resource, this member is a <see cref="T:System.String"/> that specifies the remote network name.
  19141. If the entry is a current or persistent connection, <see cref="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpRemoteName"/> member points to
  19142. the network name associated with the name pointed to by the <see cref="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpLocalName"/> member.
  19143. The <see cref="T:System.String"/> can be <see cref="F:Alphaleonis.Win32.Filesystem.NativeMethods.MaxPath"/> characters in length,
  19144. and it must follow the network provider's naming conventions.
  19145. </summary>
  19146. </member>
  19147. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpComment">
  19148. <summary>A <see cref="T:System.String"/> that contains a comment supplied by the network provider.</summary>
  19149. </member>
  19150. <member name="F:Alphaleonis.Win32.Network.NativeMethods.NETRESOURCE.lpProvider">
  19151. <summary>A <see cref="T:System.String"/> that contains the name of the provider that owns the resource.
  19152. This member can be <see langword="null"/> if the provider name is unknown.
  19153. </summary>
  19154. </member>
  19155. <member name="T:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3">
  19156. <summary>Contains the identifier and other pertinent information about files, devices, and pipes.</summary>
  19157. <remarks>This structure is only for use with the NetFileEnum function.</remarks>
  19158. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19159. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19160. </member>
  19161. <member name="F:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3.fi3_id">
  19162. <summary>The identification number assigned to the resource when it is opened.</summary>
  19163. </member>
  19164. <member name="F:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3.fi3_permissions">
  19165. <summary>The access permissions associated with the opening application. This member can be one or more of the following <see cref="T:Alphaleonis.Win32.Network.AccessPermissions"/> values.</summary>
  19166. </member>
  19167. <member name="F:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3.fi3_num_locks">
  19168. <summary>The number of file locks on the file, device, or pipe.</summary>
  19169. </member>
  19170. <member name="F:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3.fi3_pathname">
  19171. <summary>The path of the opened resource.</summary>
  19172. </member>
  19173. <member name="F:Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3.fi3_username">
  19174. <summary>Specifies which user (on servers that have user-level security) or which computer (on servers that have share-level security) opened the resource.</summary>
  19175. </member>
  19176. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_200">
  19177. <summary>Contains the name of a domain-based Distributed File System (DFS) namespace.</summary>
  19178. <remarks>This structure is only for use with the NetDfsEnum, NetDfsGetClientInfo, and NetDfsGetInfo functions.</remarks>
  19179. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19180. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19181. </member>
  19182. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_200.FtDfsName">
  19183. <summary>The name of a domain-based DFS namespace.</summary>
  19184. </member>
  19185. <member name="T:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_300">
  19186. <summary>Contains the name and type (domain-based or stand-alone) of a DFS namespace.</summary>
  19187. <remarks>The DFS functions use the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_300"/> structure to enumerate DFS namespaces hosted on a machine.</remarks>
  19188. <remarks>Minimum supported client: Windows XP with SP1 [desktop apps only]</remarks>
  19189. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19190. </member>
  19191. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_300.Flags">
  19192. <summary>Value that specifies the type of the DFS namespace. This member can be one of the <see cref="T:Alphaleonis.Win32.Network.NativeMethods.DfsNamespaceFlavors"/> values.</summary>
  19193. </member>
  19194. <member name="F:Alphaleonis.Win32.Network.NativeMethods.DFS_INFO_300.DfsName">
  19195. <summary>The name of a DFS namespace.
  19196. This member can have one of the following two formats:
  19197. The first format is: \ServerName\DfsName
  19198. where ServerName is the name of the root target server that hosts the stand-alone DFS namespace and DfsName is the name of the DFS namespace.
  19199. The second format is:
  19200. \DomainName\DomDfsName
  19201. where DomainName is the name of the domain that hosts the domain-based DFS namespace and DomDfsname is the name of the DFS namespace.
  19202. </summary>
  19203. </member>
  19204. <member name="T:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO">
  19205. <summary>Contains path and name information for a network resource.</summary>
  19206. </member>
  19207. <member name="F:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO.lpUniversalName">
  19208. <summary>Identifies a network resource.</summary>
  19209. </member>
  19210. <member name="F:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO.lpConnectionName">
  19211. <summary>The name of a network connection.</summary>
  19212. </member>
  19213. <member name="F:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO.lpRemainingPath">
  19214. <summary>The remaing path.</summary>
  19215. </member>
  19216. <member name="T:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1">
  19217. <summary>Contains the identification number of a connection, number of open files, connection time, number of users on the connection, and the type of connection.</summary>
  19218. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19219. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19220. </member>
  19221. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_id">
  19222. <summary>Specifies a connection identification number.</summary>
  19223. </member>
  19224. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_type">
  19225. <summary>A combination of values that specify the type of connection made from the local device name to the shared resource.</summary>
  19226. </member>
  19227. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_num_opens">
  19228. <summary>Specifies the number of files currently open as a result of the connection.</summary>
  19229. </member>
  19230. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_num_users">
  19231. <summary>Specifies the number of users on the connection.</summary>
  19232. </member>
  19233. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_time">
  19234. <summary>Specifies the number of seconds that the connection has been established.</summary>
  19235. </member>
  19236. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.coni1_username">
  19237. <summary>If the server sharing the resource is running with user-level security, the UserName member describes which user made the connection. If the server is running with share-level security, coni1_username describes which computer (computername) made the connection.</summary>
  19238. <remarks>Note that Windows does not support share-level security.</remarks>
  19239. </member>
  19240. <member name="F:Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1.oni1_netname">
  19241. <summary>String that specifies either the share name of the server's shared resource or the computername of the client. The value of this member depends on which name was specified as the qualifier parameter to the NetConnectionEnum function.</summary>
  19242. </member>
  19243. <member name="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1005">
  19244. <summary>Contains information about the shared resource.</summary>
  19245. <remarks>This structure can be retrieved by calling the NetShareGetInfo function.</remarks>
  19246. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19247. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19248. </member>
  19249. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1005.shi1005_flags">
  19250. <summary>A bitmask of flags that specify information about the shared resource.</summary>
  19251. </member>
  19252. <member name="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1">
  19253. <summary>Contains information about the shared resource, including the name and type of the resource, and a comment associated with the resource.</summary>
  19254. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19255. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19256. </member>
  19257. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1.shi1_netname">
  19258. <summary>The name of a shared resource.</summary>
  19259. </member>
  19260. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1.shi1_type">
  19261. <summary>The type of share.</summary>
  19262. </member>
  19263. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_1.shi1_remark">
  19264. <summary>An optional comment about the shared resource.</summary>
  19265. </member>
  19266. <member name="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2">
  19267. <summary>Contains information about the shared resource, including the name, type, and permissions of the resource, comments associated with the resource,
  19268. the maximum number of concurrent connections, the number of current connections, the local path for the resource, and a password for the current connection.
  19269. </summary>
  19270. <remarks>Share information, NT, level 2, requires admin rights to work.</remarks>
  19271. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19272. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19273. </member>
  19274. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_netname">
  19275. <summary>The name of a shared resource.</summary>
  19276. </member>
  19277. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_type">
  19278. <summary>The type of share.</summary>
  19279. </member>
  19280. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_remark">
  19281. <summary>An optional comment about the shared resource.</summary>
  19282. </member>
  19283. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_permissions">
  19284. <summary>The shared resource's permissions for servers running with share-level security.</summary>
  19285. <remarks>Note that Windows does not support share-level security. This member is ignored on a server running user-level security.</remarks>
  19286. </member>
  19287. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_max_uses">
  19288. <summary>The maximum number of concurrent connections that the shared resource can accommodate.</summary>
  19289. <remarks>The number of connections is unlimited if the value specified in this member is –1.</remarks>
  19290. </member>
  19291. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_current_uses">
  19292. <summary>The number of current connections to the resource.</summary>
  19293. </member>
  19294. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_path">
  19295. <summary>The local path for the shared resource.</summary>
  19296. <remarks>For disks, this member is the path being shared. For print queues, this member is the name of the print queue being shared.</remarks>
  19297. </member>
  19298. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2.shi2_passwd">
  19299. <summary>The share's password (when the server is running with share-level security).</summary>
  19300. </member>
  19301. <member name="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503">
  19302. <summary>Contains information about the shared resource, including the server name, name of the resource, type, and permissions,
  19303. the number of connections, and other pertinent information.
  19304. </summary>
  19305. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  19306. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  19307. </member>
  19308. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_netname">
  19309. <summary>The name of a shared resource.</summary>
  19310. </member>
  19311. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_type">
  19312. <summary>The type of share.</summary>
  19313. </member>
  19314. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_remark">
  19315. <summary>An optional comment about the shared resource.</summary>
  19316. </member>
  19317. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_permissions">
  19318. <summary>The shared resource's permissions for servers running with share-level security.</summary>
  19319. <remarks>Note that Windows does not support share-level security. This member is ignored on a server running user-level security.</remarks>
  19320. </member>
  19321. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_max_uses">
  19322. <summary>The maximum number of concurrent connections that the shared resource can accommodate.</summary>
  19323. <remarks>The number of connections is unlimited if the value specified in this member is –1.</remarks>
  19324. </member>
  19325. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_current_uses">
  19326. <summary>The number of current connections to the resource.</summary>
  19327. </member>
  19328. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_path">
  19329. <summary>The local path for the shared resource.</summary>
  19330. <remarks>For disks, this member is the path being shared. For print queues, this member is the name of the print queue being shared.</remarks>
  19331. </member>
  19332. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_passwd">
  19333. <summary>The share's password (when the server is running with share-level security).</summary>
  19334. </member>
  19335. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_servername">
  19336. <summary>The DNS or NetBIOS name of the remote server on which the shared resource resides.</summary>
  19337. <remarks>A value of "*" indicates no configured server name.</remarks>
  19338. </member>
  19339. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_reserved">
  19340. <summary>Reserved; must be zero.</summary>
  19341. </member>
  19342. <member name="F:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503.shi503_security_descriptor">
  19343. <summary>Specifies the SECURITY_DESCRIPTOR associated with this share.</summary>
  19344. </member>
  19345. <member name="T:Alphaleonis.Win32.Network.DfsStorageStates">
  19346. <summary>A set of bit flags that describe the storage state of the DFS root or link target.</summary>
  19347. </member>
  19348. <member name="F:Alphaleonis.Win32.Network.DfsStorageStates.None">
  19349. <summary>No storage state.</summary>
  19350. </member>
  19351. <member name="F:Alphaleonis.Win32.Network.DfsStorageStates.Offline">
  19352. <summary>DFS_STORAGE_STATE_OFFLINE
  19353. <para>The DFS root or link target is offline.</para>
  19354. </summary>
  19355. <remarks>Windows Server 2003: The state of a root target cannot be set to DFS_STORAGE_STATE_OFFLINE.</remarks>
  19356. </member>
  19357. <member name="F:Alphaleonis.Win32.Network.DfsStorageStates.Online">
  19358. <summary>DFS_STORAGE_STATE_ONLINE
  19359. <para>The DFS root or link target is online.</para>
  19360. </summary>
  19361. </member>
  19362. <member name="F:Alphaleonis.Win32.Network.DfsStorageStates.Active">
  19363. <summary>DFS_STORAGE_STATE_ACTIVE
  19364. <para>The DFS root or link target is the active target.</para>
  19365. </summary>
  19366. </member>
  19367. <member name="T:Alphaleonis.Win32.Network.DfsVolumeStates">
  19368. <summary>A set of bit flags that describe the state of the DFS root or link;
  19369. <para>the state of the DFS namespace root cannot be changed.</para>
  19370. <para>One <see cref="T:Alphaleonis.Win32.Network.DfsVolumeStates"/> flag is set, and one DFS_VOLUME_FLAVOR flag is set.</para>
  19371. </summary>
  19372. </member>
  19373. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.None">
  19374. <summary>No volume state.</summary>
  19375. </member>
  19376. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.Ok">
  19377. <summary>DFS_VOLUME_STATE_OK
  19378. <para>The specified DFS root or link is in the normal state.</para>
  19379. </summary>
  19380. </member>
  19381. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.Inconsistent">
  19382. <summary>DFS_VOLUME_STATE_INCONSISTENT
  19383. <para>The internal DFS database is inconsistent with the specified DFS root or link.</para>
  19384. <para>Attempts to repair the inconsistency have failed.</para>
  19385. </summary>
  19386. </member>
  19387. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.Offline">
  19388. <summary>DFS_VOLUME_STATE_OFFLINE
  19389. <para>The specified DFS root or link is offline or unavailable.</para>
  19390. </summary>
  19391. </member>
  19392. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.Online">
  19393. <summary>DFS_VOLUME_STATE_ONLINE
  19394. <para>The specified DFS root or link is available.</para>
  19395. </summary>
  19396. </member>
  19397. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.FlavorStandalone">
  19398. <summary>DFS_VOLUME_FLAVOR_STANDALONE
  19399. <para>The system sets this flag if the root is associated with a stand-alone DFS namespace.</para>
  19400. </summary>
  19401. <remarks>Windows XP: This value is not supported.</remarks>
  19402. </member>
  19403. <member name="F:Alphaleonis.Win32.Network.DfsVolumeStates.FlavorAdBlob">
  19404. <summary>DFS_VOLUME_FLAVOR_AD_BLOB
  19405. <para>The system sets this flag if the root is associated with a domain-based DFS namespace.</para>
  19406. </summary>
  19407. <remarks>Windows XP: This value is not supported.</remarks>
  19408. </member>
  19409. <member name="T:Alphaleonis.Win32.Network.AccessPermissions">
  19410. <summary>A set of bit flags that describe the permissions for the shared resource's on servers running with share-level security.</summary>
  19411. <remarks>Note that Windows does not support share-level security. This member is ignored on a server running user-level security.</remarks>
  19412. </member>
  19413. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.None">
  19414. <summary>No permissions.</summary>
  19415. </member>
  19416. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Read">
  19417. <summary>ACCESS_READ
  19418. <para>Permission to read data from a resource and, by default, to execute the resource.</para>
  19419. </summary>
  19420. </member>
  19421. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Write">
  19422. <summary>ACCESS_WRITE
  19423. <para>Permission to write data to the resource.</para>
  19424. </summary>
  19425. </member>
  19426. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Create">
  19427. <summary>ACCESS_CREATE
  19428. <para>Permission to create an instance of the resource (such as a file); data can be written to the resource as the resource is created.</para>
  19429. </summary>
  19430. </member>
  19431. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Execute">
  19432. <summary>ACCESS_EXEC
  19433. <para>Permission to execute the resource.</para>
  19434. </summary>
  19435. </member>
  19436. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Delete">
  19437. <summary>ACCESS_DELETE
  19438. <para>Permission to delete the resource.</para>
  19439. </summary>
  19440. </member>
  19441. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Attributes">
  19442. <summary>ACCESS_ATRIB
  19443. <para>Permission to modify the resource's attributes, such as the date and time when a file was last modified.</para>
  19444. </summary>
  19445. </member>
  19446. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.Permissions">
  19447. <summary>ACCESS_PERM
  19448. <para>Permission to modify the permissions (read, write, create, execute, and delete) assigned to a resource for a user or application.</para>
  19449. </summary>
  19450. </member>
  19451. <member name="F:Alphaleonis.Win32.Network.AccessPermissions.All">
  19452. <summary>ACCESS_ALL
  19453. <para>Permission to read, write, create, execute, and delete resources, and to modify their attributes and permissions.</para>
  19454. </summary>
  19455. </member>
  19456. <member name="T:Alphaleonis.Win32.Network.ShareResourceTypes">
  19457. <summary>Contains information about the shared resource.</summary>
  19458. <remarks>
  19459. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  19460. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  19461. </remarks>
  19462. </member>
  19463. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.None">
  19464. <summary>No specific resource type used.</summary>
  19465. </member>
  19466. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.Dfs">
  19467. <summary>SHI1005_FLAGS_DFS
  19468. <para>The specified share is present in a DFS tree structure. This flag cannot be set with NetShareSetInfo.</para>
  19469. </summary>
  19470. </member>
  19471. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.DfsRoot">
  19472. <summary>SHI1005_FLAGS_DFS_ROOT
  19473. <para>The specified share is the root volume in a DFS tree structure. This flag cannot be set with NetShareSetInfo.</para>
  19474. </summary>
  19475. </member>
  19476. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.RestrictExclusiveOpens">
  19477. <summary>SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS
  19478. <para>The specified share disallows exclusive file opens, where reads to an open file are disallowed.</para>
  19479. </summary>
  19480. </member>
  19481. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.ForceSharedDelete">
  19482. <summary>SHI1005_FLAGS_FORCE_SHARED_DELETE
  19483. <para>Shared files in the specified share can be forcibly deleted.</para>
  19484. </summary>
  19485. </member>
  19486. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.AllowNamespaceCaching">
  19487. <summary>SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING
  19488. <para>Clients are allowed to cache the namespace of the specified share.</para>
  19489. </summary>
  19490. </member>
  19491. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.AccessBasedDirectoryEnum">
  19492. <summary>SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM
  19493. <para>The server will filter directory entries based on the access permissions that the user on the client computer has for the server on which the files reside.</para>
  19494. <para>Only files for which the user has read access and directories for which the user has FILE_LIST_DIRECTORY access will be returned. If the user has SeBackupPrivilege, all available information will be returned.</para>
  19495. </summary>
  19496. <remarks>This flag is supported only on servers running Windows Server 2003 with SP1 or later.</remarks>
  19497. </member>
  19498. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.ForceLevel2OpLock">
  19499. <summary>SHI1005_FLAGS_FORCE_LEVELII_OPLOCK
  19500. <para>Prevents exclusive caching modes that can cause delays for highly shared read-only data.</para>
  19501. </summary>
  19502. <remarks>This flag is supported only on servers running Windows Server 2008 R2 or later.</remarks>
  19503. </member>
  19504. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.EnableHash">
  19505. <summary>SHI1005_FLAGS_ENABLE_HASH</summary>
  19506. <para>Enables server-side functionality needed for peer caching support.</para>
  19507. <para>Clients on high-latency or low-bandwidth connections can use alternate methods to retrieve data from peers if available, instead of sending requests to the server.</para>
  19508. <para>This is only supported on shares configured for manual caching (CSC_CACHE_MANUAL_REINT).</para>
  19509. <remarks>This flag is supported only on servers running Windows Server 2008 R2 or later.</remarks>
  19510. </member>
  19511. <member name="F:Alphaleonis.Win32.Network.ShareResourceTypes.EnableCa">
  19512. <summary>SHI1005_FLAGS_ENABLE_CA (0X4000) - Enables server-side functionality needed for peer caching support. Clients on high-latency or low-bandwidth connections can use alternate methods to retrieve data from peers if available, instead of sending requests to the server. This is only supported on shares configured for manual caching (CSC_CACHE_MANUAL_REINT).</summary>
  19513. <remarks>Windows 7, Windows Server 2008 R2, Windows Vista, Windows Server 2008, and Windows Server 2003: This flag is not supported.</remarks>
  19514. </member>
  19515. <member name="T:Alphaleonis.Win32.Network.ShareType">
  19516. <summary>The type of the shared resource.</summary>
  19517. <remarks>MSDN: 2.2.2.4 Share Types
  19518. http://msdn.microsoft.com/en-us/library/cc247110.aspx
  19519. </remarks>
  19520. </member>
  19521. <member name="F:Alphaleonis.Win32.Network.ShareType.DiskTree">
  19522. <summary>Disk drive.</summary>
  19523. </member>
  19524. <member name="F:Alphaleonis.Win32.Network.ShareType.PrintQueue">
  19525. <summary>Print queue.</summary>
  19526. </member>
  19527. <member name="F:Alphaleonis.Win32.Network.ShareType.Device">
  19528. <summary>Communication device.</summary>
  19529. </member>
  19530. <member name="F:Alphaleonis.Win32.Network.ShareType.Ipc">
  19531. <summary>Interprocess communication (IPC).</summary>
  19532. </member>
  19533. <member name="F:Alphaleonis.Win32.Network.ShareType.ClusterFs">
  19534. <summary>A cluster share.</summary>
  19535. </member>
  19536. <member name="F:Alphaleonis.Win32.Network.ShareType.ClusterSoFs">
  19537. <summary>A Scale-Out cluster share.</summary>
  19538. </member>
  19539. <member name="F:Alphaleonis.Win32.Network.ShareType.ClusterDfs">
  19540. <summary>A DFS share in a cluster.</summary>
  19541. </member>
  19542. <member name="F:Alphaleonis.Win32.Network.ShareType.Special">
  19543. <summary>Special share reserved for interprocess communication (IPC$) or remote administration of the server (ADMIN$).
  19544. <para>Can also refer to administrative shares such as C$, D$, E$, and so forth.</para>
  19545. </summary>
  19546. </member>
  19547. <member name="F:Alphaleonis.Win32.Network.ShareType.Temporary">
  19548. <summary>A temporary share that is not persisted for creation each time the file server initializes.</summary>
  19549. </member>
  19550. <member name="F:Alphaleonis.Win32.Network.ShareType.All">
  19551. <summary>Retriev all known <see cref="T:Alphaleonis.Win32.Network.ShareType"/></summary>
  19552. </member>
  19553. <member name="T:Alphaleonis.Win32.Network.Host">
  19554. <summary>Provides static methods to retrieve network resource information from a local- or remote host.</summary>
  19555. </member>
  19556. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenResources">
  19557. <summary>Enumerates open resources from the local host.</summary>
  19558. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> open resources from the local host.</returns>
  19559. <exception cref="T:System.ArgumentNullException"/>
  19560. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19561. </member>
  19562. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenResources(System.String,System.String,System.String,System.Boolean)">
  19563. <summary>Enumerates open resources from the specified host.</summary>
  19564. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> open resources from the specified <paramref name="host"/>.</returns>
  19565. <exception cref="T:System.ArgumentNullException"/>
  19566. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19567. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19568. <param name="basePath">
  19569. This parameter may be <see langword="null"/>. Enumerates only resources that have the value of the basepath parameter as a prefix.
  19570. (A prefix is the portion of a path that comes before a backslash.)
  19571. </param>
  19572. <param name="typeName">
  19573. This parameter may be <see langword="null"/>. The name of the user or the name of the connection; If <paramref name="typeName"/>
  19574. does not begin with two backslashes ("\\") it indicates the name of the user. If <paramref name="typeName"/> begins with two
  19575. backslashes ("\\") it indicates the name of the connection.
  19576. </param>
  19577. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19578. </member>
  19579. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenResourcesCore(System.String,System.String,System.String,System.Boolean)">
  19580. <summary>>Enumerates open resources from the specified host.</summary>
  19581. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> open resources from the specified <paramref name="host"/>.</returns>
  19582. <exception cref="T:System.ArgumentNullException"/>
  19583. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19584. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19585. <param name="basePath">
  19586. This parameter may be <see langword="null"/>. Enumerates only resources that have the value of the basepath parameter as a prefix.
  19587. (A prefix is the portion of a path that comes before a backslash.)
  19588. </param>
  19589. <param name="typeName">
  19590. This parameter may be <see langword="null"/>. The name of the user or the name of the connection; If <paramref name="typeName"/>
  19591. does not begin with two backslashes ("\\") it indicates the name of the user. If <paramref name="typeName"/> begins with two
  19592. backslashes ("\\") it indicates the name of the connection.
  19593. </param>
  19594. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19595. </member>
  19596. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDrives">
  19597. <summary>Enumerates drives from the local host.</summary>
  19598. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> drives from the local host.</returns>
  19599. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19600. </member>
  19601. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDrives(System.String,System.Boolean)">
  19602. <summary>Enumerates local drives from the specified host.</summary>
  19603. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> drives from the specified host.</returns>
  19604. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19605. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19606. <param name="continueOnException">
  19607. <para><see langword="true"/> suppress any Exception that might be thrown as a result from a failure,</para>
  19608. <para>such as unavailable resources.</para>
  19609. </param>
  19610. </member>
  19611. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDrivesCore(System.String,System.Boolean)">
  19612. <summary>Enumerates local drives from the specified host.</summary>
  19613. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> drives from the specified host.</returns>
  19614. <exception cref="T:System.ArgumentNullException"/>
  19615. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19616. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19617. <param name="continueOnException">
  19618. <para><see langword="true"/> suppress any Exception that might be thrown as a result from a failure,</para>
  19619. <para>such as unavailable resources.</para>
  19620. </param>
  19621. </member>
  19622. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenConnections">
  19623. <summary>Enumerates open connections from the local host.</summary>
  19624. <returns><see cref="T:Alphaleonis.Win32.Network.OpenConnectionInfo"/> connection information from the local host.</returns>
  19625. <exception cref="T:System.ArgumentNullException"/>
  19626. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19627. </member>
  19628. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenConnections(System.String,System.String,System.Boolean)">
  19629. <summary>Enumerates open connections from the specified host.</summary>
  19630. <returns><see cref="T:Alphaleonis.Win32.Network.OpenConnectionInfo"/> connection information from the specified <paramref name="host"/>.</returns>
  19631. <exception cref="T:System.ArgumentNullException"/>
  19632. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19633. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19634. <param name="share">The name of the Server Message Block (SMB) share.</param>
  19635. <param name="continueOnException">
  19636. <para><see langword="true"/> suppress any Exception that might be thrown as a result from a failure,</para>
  19637. <para>such as unavailable resources.</para>
  19638. </param>
  19639. </member>
  19640. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares">
  19641. <summary>Enumerates Server Message Block (SMB) shares from the local host.</summary>
  19642. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19643. <remarks>This method also enumerates hidden shares.</remarks>
  19644. </member>
  19645. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares(System.Boolean)">
  19646. <summary>Enumerates Server Message Block (SMB) shares from the local host.</summary>
  19647. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19648. <remarks>This method also enumerates hidden shares.</remarks>
  19649. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19650. </member>
  19651. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares(Alphaleonis.Win32.Network.ShareType,System.Boolean)">
  19652. <summary>Enumerates Server Message Block (SMB) shares from the local host.</summary>
  19653. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19654. <remarks>This method also enumerates hidden shares.</remarks>
  19655. <param name="shareType">The type of the shared resource to retrieve.</param>
  19656. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19657. </member>
  19658. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares(System.String)">
  19659. <summary>Enumerates Server Message Block (SMB) shares from the specified <paramref name="host"/>.</summary>
  19660. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19661. <remarks>This method also enumerates hidden shares.</remarks>
  19662. <param name="host">The DNS or NetBIOS name of the specified host.</param>
  19663. </member>
  19664. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares(System.String,System.Boolean)">
  19665. <summary>Enumerates Server Message Block (SMB) shares from the specified <paramref name="host"/>.</summary>
  19666. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19667. <remarks>This method also enumerates hidden shares.</remarks>
  19668. <param name="host">The DNS or NetBIOS name of the specified host.</param>
  19669. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19670. </member>
  19671. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateShares(System.String,Alphaleonis.Win32.Network.ShareType,System.Boolean)">
  19672. <summary>Enumerates Server Message Block (SMB) shares from the specified <paramref name="host"/>.</summary>
  19673. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19674. <remarks>This method also enumerates hidden shares.</remarks>
  19675. <param name="host">The DNS or NetBIOS name of the specified host.</param>
  19676. <param name="shareType">The type of the shared resource to retrieve.</param>
  19677. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19678. </member>
  19679. <member name="M:Alphaleonis.Win32.Network.Host.GetHostShareFromPath(System.String)">
  19680. <summary>Gets the host and share path name for the given <paramref name="uncPath"/>.</summary>
  19681. <param name="uncPath">The share in the format: \\host\share.</param>
  19682. <returns>The host and share path. For example, if <paramref name="uncPath"/> is: "\\SERVER001\C$\WINDOWS\System32",
  19683. its is returned as string[0] = "SERVER001" and string[1] = "\C$\WINDOWS\System32".
  19684. <para>If the conversion from local path to UNC path fails, <see langword="null"/> is returned.</para>
  19685. </returns>
  19686. </member>
  19687. <member name="M:Alphaleonis.Win32.Network.Host.GetShareInfo(System.String,System.Boolean)">
  19688. <summary>Retrieves information about the Server Message Block (SMB) share as defined on the specified host.</summary>
  19689. <returns>A <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> class, or <see langword="null"/> on failure or when not available, and <paramref name="continueOnException"/> is <see langword="true"/>.</returns>
  19690. <param name="uncPath">The share in the format: \\host\share.</param>
  19691. <param name="continueOnException"><see langword="true"/> to suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19692. </member>
  19693. <member name="M:Alphaleonis.Win32.Network.Host.GetShareInfo(Alphaleonis.Win32.Network.ShareInfoLevel,System.String,System.Boolean)">
  19694. <summary>Retrieves information about the Server Message Block (SMB) share as defined on the specified host.</summary>
  19695. <returns>A <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> class, or <see langword="null"/> on failure or when not available, and <paramref name="continueOnException"/> is <see langword="true"/>.</returns>
  19696. <param name="shareLevel">One of the <see cref="T:Alphaleonis.Win32.Network.ShareInfoLevel"/> options.</param>
  19697. <param name="uncPath">The share in the format: \\host\share.</param>
  19698. <param name="continueOnException"><see langword="true"/> to suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19699. </member>
  19700. <member name="M:Alphaleonis.Win32.Network.Host.GetShareInfo(System.String,System.String,System.Boolean)">
  19701. <summary>Retrieves information about the Server Message Block (SMB) share as defined on the specified host.</summary>
  19702. <returns>A <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> class, or <see langword="null"/> on failure or when not available, and <paramref name="continueOnException"/> is <see langword="true"/>.</returns>
  19703. <param name="host">The DNS or NetBIOS name of the specified host.</param>
  19704. <param name="share">The name of the Server Message Block (SMB) share.</param>
  19705. <param name="continueOnException"><see langword="true"/> to suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19706. </member>
  19707. <member name="M:Alphaleonis.Win32.Network.Host.GetShareInfo(Alphaleonis.Win32.Network.ShareInfoLevel,System.String,System.String,System.Boolean)">
  19708. <summary>Retrieves information about the Server Message Block (SMB) share as defined on the specified host.</summary>
  19709. <returns>A <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> class, or <see langword="null"/> on failure or when not available, and <paramref name="continueOnException"/> is <see langword="true"/>.</returns>
  19710. <param name="shareLevel">One of the <see cref="T:Alphaleonis.Win32.Network.ShareInfoLevel"/> options.</param>
  19711. <param name="host">A string that specifies the DNS or NetBIOS name of the specified <paramref name="host"/>.</param>
  19712. <param name="share">A string that specifies the name of the Server Message Block (SMB) share.</param>
  19713. <param name="continueOnException"><see langword="true"/> to suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19714. </member>
  19715. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateOpenConnectionsCore(System.String,System.String,System.Boolean)">
  19716. <summary>Enumerates open connections from the specified host.</summary>
  19717. <returns><see cref="T:Alphaleonis.Win32.Network.OpenConnectionInfo"/> connection information from the specified <paramref name="host"/>.</returns>
  19718. <exception cref="T:System.ArgumentNullException"/>
  19719. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19720. <param name="host">The DNS or NetBIOS name of the remote server. <see langword="null"/> refers to the local host.</param>
  19721. <param name="share">The name of the Server Message Block (SMB) share.</param>
  19722. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19723. </member>
  19724. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateSharesCore(System.String,Alphaleonis.Win32.Network.ShareType,System.Boolean)">
  19725. <summary>Enumerates Server Message Block (SMB) shares from a local or remote host.</summary>
  19726. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> shares from the specified host.</returns>
  19727. <remarks>This method also enumerates hidden shares.</remarks>
  19728. <exception cref="T:System.ArgumentNullException"/>
  19729. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19730. <param name="host">The DNS or NetBIOS name of the specified host.</param>
  19731. <param name="shareType">The type of the shared resource to retrieve.</param>
  19732. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19733. </member>
  19734. <member name="M:Alphaleonis.Win32.Network.Host.GetShareInfoCore(Alphaleonis.Win32.Network.ShareInfoLevel,System.String,System.String,System.Boolean)">
  19735. <summary>Gets the <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> structure of a Server Message Block (SMB) share.</summary>
  19736. <returns>A <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> class, or <see langword="null"/> on failure or when not available, and <paramref name="continueOnException"/> is <see langword="true"/>.</returns>
  19737. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19738. <param name="shareLevel">One of the <see cref="T:Alphaleonis.Win32.Network.ShareInfoLevel"/> options.</param>
  19739. <param name="host">A string that specifies the DNS or NetBIOS name of the specified <paramref name="host"/>.</param>
  19740. <param name="share">A string that specifies the name of the Server Message Block (SMB) share.</param>
  19741. <param name="continueOnException"><see langword="true"/> to suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19742. </member>
  19743. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDfsLinks(System.String)">
  19744. <summary>Enumerates the DFS Links from a DFS namespace.</summary>
  19745. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS namespaces.</returns>
  19746. <exception cref="T:System.ArgumentNullException"/>
  19747. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19748. <exception cref="T:System.PlatformNotSupportedException"/>
  19749. <param name="dfsName">The Universal Naming Convention (UNC) path of a DFS root or link.</param>
  19750. </member>
  19751. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDfsRoot">
  19752. <summary>Enumerates the DFS namespaces from the local host.</summary>
  19753. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from the local host.</returns>
  19754. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19755. <exception cref="T:System.PlatformNotSupportedException"/>
  19756. </member>
  19757. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDfsRoot(System.String,System.Boolean)">
  19758. <summary>Enumerates the DFS namespaces from a host.</summary>
  19759. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from a host.</returns>
  19760. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19761. <exception cref="T:System.PlatformNotSupportedException"/>
  19762. <param name="host">The DNS or NetBIOS name of a host.</param>
  19763. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19764. </member>
  19765. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDomainDfsRoot">
  19766. <summary>Enumerates the DFS namespaces from the domain.</summary>
  19767. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from the domain.</returns>
  19768. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19769. <exception cref="T:System.PlatformNotSupportedException"/>
  19770. </member>
  19771. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDomainDfsRoot(System.String,System.Boolean)">
  19772. <summary>Enumerates the DFS namespaces from a domain.</summary>
  19773. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from a domain.</returns>
  19774. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19775. <exception cref="T:System.PlatformNotSupportedException"/>
  19776. <param name="domain">A domain name.</param>
  19777. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19778. </member>
  19779. <member name="M:Alphaleonis.Win32.Network.Host.GetDfsClientInfo(System.String)">
  19780. <summary>Gets information about a DFS root or link from the cache maintained by the DFS client.</summary>
  19781. <returns>A <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> instance.</returns>
  19782. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19783. <exception cref="T:System.PlatformNotSupportedException"/>
  19784. <param name="dfsName">The Universal Naming Convention (UNC) path of a DFS root or link.</param>
  19785. </member>
  19786. <member name="M:Alphaleonis.Win32.Network.Host.GetDfsClientInfo(System.String,System.String,System.String)">
  19787. <summary>Gets information about a DFS root or link from the cache maintained by the DFS client.</summary>
  19788. <returns>A <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> instance.</returns>
  19789. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19790. <exception cref="T:System.PlatformNotSupportedException"/>
  19791. <param name="dfsName">The Universal Naming Convention (UNC) path of a DFS root or link.</param>
  19792. <param name="serverName">The name of the DFS root target or link target server.</param>
  19793. <param name="shareName">The name of the share corresponding to the DFS root target or link target.</param>
  19794. </member>
  19795. <member name="M:Alphaleonis.Win32.Network.Host.GetDfsInfo(System.String)">
  19796. <summary>Gets information about a specified DFS root or link in a DFS namespace.</summary>
  19797. <returns>A <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> instance.</returns>
  19798. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19799. <exception cref="T:System.PlatformNotSupportedException"/>
  19800. <param name="dfsName">The Universal Naming Convention (UNC) path of a DFS root or link.</param>
  19801. </member>
  19802. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDfsRootCore(System.String,System.Boolean)">
  19803. <summary>Enumerates the DFS namespaces from a host.</summary>
  19804. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from a host.</returns>
  19805. <exception cref="T:System.ArgumentNullException"/>
  19806. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19807. <exception cref="T:System.PlatformNotSupportedException"/>
  19808. <param name="host">The DNS or NetBIOS name of a host.</param>
  19809. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19810. </member>
  19811. <member name="M:Alphaleonis.Win32.Network.Host.EnumerateDomainDfsRootCore(System.String,System.Boolean)">
  19812. <summary>Enumerates the DFS namespaces from a domain.</summary>
  19813. <returns><see cref="T:System.Collections.Generic.IEnumerable`1"/> of DFS Root namespaces from a domain.</returns>
  19814. <exception cref="T:System.ArgumentNullException"/>
  19815. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19816. <exception cref="T:System.PlatformNotSupportedException"/>
  19817. <param name="domain">A domain name.</param>
  19818. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  19819. </member>
  19820. <member name="M:Alphaleonis.Win32.Network.Host.GetDfsInfoCore(System.Boolean,System.String,System.String,System.String)">
  19821. <summary>Retrieves information about a specified DFS root or link in a DFS namespace.</summary>
  19822. <returns>A <see cref="T:Alphaleonis.Win32.Network.DfsInfo"/> instance.</returns>
  19823. <exception cref="T:System.ArgumentNullException"/>
  19824. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19825. <exception cref="T:System.PlatformNotSupportedException"/>
  19826. <param name="getFromClient">
  19827. <see langword="true"/> retrieves information about a Distributed File System (DFS) root or link from the cache maintained by the
  19828. DFS client. When <see langword="false"/> retrieves information about a specified Distributed File System (DFS) root or link in a
  19829. DFS namespace.
  19830. </param>
  19831. <param name="dfsName">The Universal Naming Convention (UNC) path of a DFS root or link.</param>
  19832. <param name="serverName">
  19833. The name of the DFS root target or link target server. If <paramref name="getFromClient"/> is <see langword="false"/>, this
  19834. parameter is always <see langword="null"/>.
  19835. </param>
  19836. <param name="shareName">
  19837. The name of the share corresponding to the DFS root target or link target. If <paramref name="getFromClient"/> is
  19838. <see langword="false"/>, this parameter is always <see langword="null"/>.
  19839. </param>
  19840. </member>
  19841. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDrive(System.String,System.String)">
  19842. <summary>Creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  19843. <returns>If <paramref name="localName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, <see langword="null"/> otherwise.</returns>
  19844. <param name="localName">
  19845. The name of a local device to be redirected, such as "F:". When <paramref name="localName"/> is <see langword="null"/> or
  19846. <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.
  19847. </param>
  19848. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  19849. </member>
  19850. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDrive(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
  19851. <summary>Creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  19852. <returns>If <paramref name="localName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, null otherwise.</returns>
  19853. <param name="localName">
  19854. The name of a local device to be redirected, such as "F:". When <paramref name="localName"/> is <see langword="null"/> or
  19855. <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.
  19856. </param>
  19857. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  19858. <param name="userName">
  19859. The user name for making the connection. If <paramref name="userName"/> is <see langword="null"/>, the function uses the default
  19860. user name. (The user context for the process provides the default user name)
  19861. </param>
  19862. <param name="password">
  19863. The password to be used for making the network connection. If <paramref name="password"/> is <see langword="null"/>, the function
  19864. uses the current default password associated with the user specified by <paramref name="userName"/>.
  19865. </param>
  19866. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19867. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19868. <param name="saveCredentials">
  19869. When the operating system prompts for a credential, the credential should be saved by the credential manager when true.
  19870. </param>
  19871. </member>
  19872. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDrive(System.String,System.String,System.Net.NetworkCredential,System.Boolean,System.Boolean,System.Boolean)">
  19873. <summary>Creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  19874. <returns>If <paramref name="localName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, null otherwise.</returns>
  19875. <param name="localName">
  19876. The name of a local device to be redirected, such as "F:". When <paramref name="localName"/> is <see langword="null"/> or
  19877. <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.
  19878. </param>
  19879. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  19880. <param name="credentials">
  19881. An instance of <see cref="T:System.Net.NetworkCredential"/> which provides credentials for password-based authentication schemes such as basic,
  19882. digest, NTLM, and Kerberos authentication.
  19883. </param>
  19884. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19885. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19886. <param name="saveCredentials">
  19887. When the operating system prompts for a credential, the credential should be saved by the credential manager when true.
  19888. </param>
  19889. </member>
  19890. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDrive(System.IntPtr,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
  19891. <summary>Creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  19892. <returns>If <paramref name="localName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, null otherwise.</returns>
  19893. <param name="winOwner">Handle to a window that the provider of network resources can use as an owner window for dialog boxes.</param>
  19894. <param name="localName">
  19895. The name of a local device to be redirected, such as "F:". When <paramref name="localName"/> is <see langword="null"/> or
  19896. <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.
  19897. </param>
  19898. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  19899. <param name="userName">
  19900. The user name for making the connection. If <paramref name="userName"/> is <see langword="null"/>, the function uses the default
  19901. user name. (The user context for the process provides the default user name)
  19902. </param>
  19903. <param name="password">
  19904. The password to be used for making the network connection. If <paramref name="password"/> is <see langword="null"/>, the function
  19905. uses the current default password associated with the user specified by <paramref name="userName"/>.
  19906. </param>
  19907. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19908. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19909. <param name="saveCredentials">
  19910. When the operating system prompts for a credential, the credential should be saved by the credential manager when true.
  19911. </param>
  19912. </member>
  19913. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDrive(System.IntPtr,System.String,System.String,System.Net.NetworkCredential,System.Boolean,System.Boolean,System.Boolean)">
  19914. <summary>Creates a connection to a network resource. The function can redirect a local device to a network resource.</summary>
  19915. <returns>If <paramref name="localName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, null otherwise.</returns>
  19916. <param name="winOwner">Handle to a window that the provider of network resources can use as an owner window for dialog boxes.</param>
  19917. <param name="localName">
  19918. The name of a local device to be redirected, such as "F:". When <paramref name="localName"/> is <see langword="null"/> or
  19919. <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.
  19920. </param>
  19921. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  19922. <param name="credentials">
  19923. An instance of <see cref="T:System.Net.NetworkCredential"/> which provides credentials for password-based authentication schemes such as basic,
  19924. digest, NTLM, and Kerberos authentication.
  19925. </param>
  19926. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19927. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19928. <param name="saveCredentials">
  19929. When the operating system prompts for a credential, the credential should be saved by the credential manager when true.
  19930. </param>
  19931. </member>
  19932. <member name="M:Alphaleonis.Win32.Network.Host.ConnectTo(System.String)">
  19933. <summary>Creates a connection to a network resource.</summary>
  19934. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19935. <param name="remoteName">A network resource to connect to, for example: \\server or \\server\share.</param>
  19936. </member>
  19937. <member name="M:Alphaleonis.Win32.Network.Host.ConnectTo(System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
  19938. <summary>Creates a connection to a network resource.</summary>
  19939. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19940. <param name="remoteName">A network resource to connect to, for example: \\server or \\server\share.</param>
  19941. <param name="userName">
  19942. The user name for making the connection. If <paramref name="userName"/> is <see langword="null"/>, the function uses the default
  19943. user name. (The user context for the process provides the default user name)
  19944. </param>
  19945. <param name="password">
  19946. The password to be used for making the network connection. If <paramref name="password"/> is <see langword="null"/>, the function
  19947. uses the current default password associated with the user specified by <paramref name="userName"/>.
  19948. </param>
  19949. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19950. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19951. <param name="saveCredentials">
  19952. When the operating system prompts for a credential, the credential should be saved by the credential manager when true.
  19953. </param>
  19954. </member>
  19955. <member name="M:Alphaleonis.Win32.Network.Host.ConnectTo(System.String,System.Net.NetworkCredential,System.Boolean,System.Boolean,System.Boolean)">
  19956. <summary>Creates a connection to a network resource.</summary>
  19957. <param name="remoteName">A network resource to connect to, for example: \\server or \\server\share.</param>
  19958. <param name="credentials">An instance of <see cref="T:System.Net.NetworkCredential"/> which provides credentials for password-based authentication schemes such as basic, digest, NTLM, and Kerberos authentication.</param>
  19959. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19960. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19961. <param name="saveCredentials">When the operating system prompts for a credential, the credential should be saved by the credential manager when true.</param>
  19962. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19963. </member>
  19964. <member name="M:Alphaleonis.Win32.Network.Host.ConnectTo(System.IntPtr,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
  19965. <summary>Creates a connection to a network resource.</summary>
  19966. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19967. <param name="winOwner">Handle to a window that the provider of network resources can use as an owner window for dialog boxes.</param>
  19968. <param name="remoteName">A network resource to connect to, for example: \\server or \\server\share.</param>
  19969. <param name="userName">
  19970. The user name for making the connection. If <paramref name="userName"/> is <see langword="null"/>, the function uses the default
  19971. user name. (The user context for the process provides the default user name)
  19972. </param>
  19973. <param name="password">
  19974. The password to be used for making the network connection. If <paramref name="password"/> is <see langword="null"/>, the function
  19975. uses the current default password associated with the user specified by <paramref name="userName"/>.
  19976. </param>
  19977. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19978. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19979. <param name="saveCredentials">When the operating system prompts for a credential, the credential should be saved by the credential manager when true.</param>
  19980. </member>
  19981. <member name="M:Alphaleonis.Win32.Network.Host.ConnectTo(System.IntPtr,System.String,System.Net.NetworkCredential,System.Boolean,System.Boolean,System.Boolean)">
  19982. <summary>Creates a connection to a network resource.</summary>
  19983. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  19984. <param name="winOwner">Handle to a window that the provider of network resources can use as an owner window for dialog boxes.</param>
  19985. <param name="remoteName">A network resource to connect to, for example: \\server or \\server\share.</param>
  19986. <param name="credentials">An instance of <see cref="T:System.Net.NetworkCredential"/> which provides credentials for password-based authentication schemes such as basic, digest, NTLM, and Kerberos authentication.</param>
  19987. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  19988. <param name="updateProfile"><see langword="true"/> successful network resource connections will be saved.</param>
  19989. <param name="saveCredentials">When the operating system prompts for a credential, the credential should be saved by the credential manager when true.</param>
  19990. </member>
  19991. <member name="M:Alphaleonis.Win32.Network.Host.DisconnectDrive(System.String)">
  19992. <summary>Cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.</summary>
  19993. <param name="localName">The name of a local device to be disconnected, such as "F:".</param>
  19994. </member>
  19995. <member name="M:Alphaleonis.Win32.Network.Host.DisconnectDrive(System.String,System.Boolean,System.Boolean)">
  19996. <summary>Cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.</summary>
  19997. <param name="localName">The name of a local device to be disconnected, such as "F:".</param>
  19998. <param name="force">
  19999. Specifies whether the disconnection should occur if there are open files or jobs on the connection.
  20000. If this parameter is <see langword="false"/>, the function fails if there are open files or jobs.
  20001. </param>
  20002. <param name="updateProfile"><see langword="true"/> successful removal of network resource connections will be saved.</param>
  20003. </member>
  20004. <member name="M:Alphaleonis.Win32.Network.Host.DisconnectFrom(System.String)">
  20005. <summary>Cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.</summary>
  20006. <param name="remoteName">A network resource to disconnect from, for example: \\server or \\server\share.</param>
  20007. </member>
  20008. <member name="M:Alphaleonis.Win32.Network.Host.DisconnectFrom(System.String,System.Boolean,System.Boolean)">
  20009. <summary>Cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.</summary>
  20010. <param name="remoteName">A network resource to disconnect from, for example: \\server or \\server\share.</param>
  20011. <param name="force">
  20012. Specifies whether the disconnection should occur if there are open files or jobs on the connection.
  20013. If this parameter is <see langword="false"/>, the function fails if there are open files or jobs.
  20014. </param>
  20015. <param name="updateProfile"><see langword="true"/> successful removal of network resource connections will be saved.</param>
  20016. </member>
  20017. <member name="M:Alphaleonis.Win32.Network.Host.ConnectDisconnectCore(Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments)">
  20018. <summary>Connects to/disconnects from a network resource. The function can redirect a local device to a network resource.</summary>
  20019. <returns>If <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.LocalName"/> is <see langword="null"/> or <c>string.Empty</c>, returns the last available drive letter, null otherwise.</returns>
  20020. <exception cref="T:System.ArgumentNullException"/>
  20021. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  20022. <param name="arguments">The <see cref="T:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments"/>.</param>
  20023. </member>
  20024. <member name="M:Alphaleonis.Win32.Network.Host.GetUncName">
  20025. <summary>Return the host name in UNC format, for example: \\hostname.</summary>
  20026. <returns>The unc name.</returns>
  20027. </member>
  20028. <member name="M:Alphaleonis.Win32.Network.Host.GetUncName(System.String)">
  20029. <summary>Return the host name in UNC format, for example: \\hostname.</summary>
  20030. <param name="computerName">Name of the computer.</param>
  20031. <returns>The unc name.</returns>
  20032. </member>
  20033. <member name="T:Alphaleonis.Win32.Network.Host.FunctionData">
  20034. <summary>Structure is used to pass additional data to the Win32 function.</summary>
  20035. </member>
  20036. <member name="M:Alphaleonis.Win32.Network.Host.GetRemoteNameInfoCore(System.String,System.Boolean)">
  20037. <summary>This method uses <see cref="T:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO"/> level to retieve full REMOTE_NAME_INFO structure.</summary>
  20038. <returns>A <see cref="T:Alphaleonis.Win32.Network.NativeMethods.REMOTE_NAME_INFO"/> structure.</returns>
  20039. <remarks>AlphaFS regards network drives created using SUBST.EXE as invalid.</remarks>
  20040. <exception cref="T:System.ArgumentException"/>
  20041. <exception cref="T:System.ArgumentNullException"/>
  20042. <exception cref="T:System.IO.PathTooLongException"/>
  20043. <exception cref="T:System.Net.NetworkInformation.NetworkInformationException"/>
  20044. <param name="path">The local path with drive name.</param>
  20045. <param name="continueOnException"><see langword="true"/> suppress any Exception that might be thrown as a result from a failure, such as unavailable resources.</param>
  20046. </member>
  20047. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.WinOwner">
  20048. <summary>Handle to a window that the provider of network resources can use as an owner window for dialog boxes.</summary>
  20049. </member>
  20050. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.LocalName">
  20051. <summary>The name of a local device to be redirected, such as "F:". When <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.LocalName"/> is <see langword="null"/> or <c>string.Empty</c>, the last available drive letter will be used. Letters are assigned beginning with Z:, then Y: and so on.</summary>
  20052. </member>
  20053. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.RemoteName">
  20054. <summary>A network resource to connect to/disconnect from, for example: \\server or \\server\share</summary>
  20055. </member>
  20056. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.Credential">
  20057. <summary>A <see cref="T:System.Net.NetworkCredential"/> instance. Use either this or the combination of <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.UserName"/> and <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.Password"/>.</summary>
  20058. </member>
  20059. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.UserName">
  20060. <summary>The user name for making the connection. If <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.UserName"/> is <see langword="null"/>, the function uses the default user name. (The user context for the process provides the default user name)</summary>
  20061. </member>
  20062. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.Password">
  20063. <summary>The password to be used for making the network connection. If <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.Password"/> is <see langword="null"/>, the function uses the current default password associated with the user specified by <see cref="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.UserName"/>.</summary>
  20064. </member>
  20065. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.Prompt">
  20066. <summary><see langword="true"/> always pops-up an authentication dialog box.</summary>
  20067. </member>
  20068. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.UpdateProfile">
  20069. <summary><see langword="true"/> successful network resource connections will be saved.</summary>
  20070. </member>
  20071. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.SaveCredentials">
  20072. <summary>When the operating system prompts for a credential, the credential should be saved by the credential manager when true.</summary>
  20073. </member>
  20074. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.IsDeviceMap">
  20075. <summary><see langword="true"/> indicates that the operation concerns a drive mapping.</summary>
  20076. </member>
  20077. <member name="F:Alphaleonis.Win32.Network.Host.ConnectDisconnectArguments.IsDisconnect">
  20078. <summary><see langword="true"/> indicates that the operation needs to disconnect from the network resource, otherwise connect.</summary>
  20079. </member>
  20080. <member name="T:Alphaleonis.Win32.Network.DriveConnection">
  20081. <summary>Used to create a temporary connection to a network resource that will be disconnected once this instance is disposed.</summary>
  20082. </member>
  20083. <member name="M:Alphaleonis.Win32.Network.DriveConnection.#ctor(System.String)">
  20084. <summary>Creates a temporary connection to a network resource. The function can redirect a local device to a network resource, using the current user credentials.</summary>
  20085. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  20086. </member>
  20087. <member name="M:Alphaleonis.Win32.Network.DriveConnection.#ctor(System.String,System.String,System.String,System.Boolean)">
  20088. <summary>Creates a temporary connection to a network resource. The function can redirect a local device to a network resource, using a user name and password.</summary>
  20089. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  20090. <param name="userName">
  20091. The user name for making the connection. If <paramref name="userName"/> is <see langword="null"/>, the function uses the default
  20092. user name. (The user context for the process provides the default user name)
  20093. </param>
  20094. <param name="password">
  20095. The password to be used for making the network connection. If <paramref name="password"/> is <see langword="null"/>, the function
  20096. uses the current default password associated with the user specified by <paramref name="userName"/>.
  20097. </param>
  20098. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  20099. </member>
  20100. <member name="M:Alphaleonis.Win32.Network.DriveConnection.#ctor(System.String,System.Net.NetworkCredential,System.Boolean)">
  20101. <summary>Creates a temporary connection to a network resource. The function can redirect a local device to a network resource, <see cref="T:System.Net.NetworkCredential"/> can be supplied.</summary>
  20102. <param name="remoteName">The network resource to connect to. The string can be up to MAX_PATH characters in length.</param>
  20103. <param name="credentials">An instance of <see cref="T:System.Net.NetworkCredential"/> which provides credentials for password-based authentication schemes such as basic, digest, NTLM, and Kerberos authentication.</param>
  20104. <param name="prompt"><see langword="true"/> always pops-up an authentication dialog box.</param>
  20105. </member>
  20106. <member name="M:Alphaleonis.Win32.Network.DriveConnection.Finalize">
  20107. <summary><see cref="T:Alphaleonis.Win32.Network.DriveConnection"/> class destructor.</summary>
  20108. </member>
  20109. <member name="M:Alphaleonis.Win32.Network.DriveConnection.Dispose">
  20110. <summary>Releases all resources used by the <see cref="T:Alphaleonis.Win32.Network.DriveConnection"/> class.</summary>
  20111. </member>
  20112. <member name="M:Alphaleonis.Win32.Network.DriveConnection.ToString">
  20113. <summary>Returns the last available drive letter used for this connection.</summary>
  20114. <returns>A string that represents this instance.</returns>
  20115. </member>
  20116. <member name="P:Alphaleonis.Win32.Network.DriveConnection.LocalName">
  20117. <summary>The last available drive letter used for this connection.</summary>
  20118. <value>The last available drive letter used for this connection.</value>
  20119. </member>
  20120. <member name="P:Alphaleonis.Win32.Network.DriveConnection.Share">
  20121. <summary>The path originally specified by the user.</summary>
  20122. <value>The path originally specified by the user.</value>
  20123. </member>
  20124. <member name="T:Alphaleonis.Win32.Network.OpenConnectionInfo">
  20125. <summary>Contains the identification number of a connection, number of open files, connection time, number of users on the connection, and the type of connection.</summary>
  20126. </member>
  20127. <member name="M:Alphaleonis.Win32.Network.OpenConnectionInfo.#ctor(System.String,Alphaleonis.Win32.Network.NativeMethods.CONNECTION_INFO_1)">
  20128. <summary>Create a OpenConnectionInfo instance.</summary>
  20129. </member>
  20130. <member name="M:Alphaleonis.Win32.Network.OpenConnectionInfo.ToString">
  20131. <summary>Returns the full path to the share.</summary>
  20132. <returns>A string that represents this instance.</returns>
  20133. </member>
  20134. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.Host">
  20135. <summary>The local or remote Host.</summary>
  20136. </member>
  20137. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.Id">
  20138. <summary>Specifies a connection identification number.</summary>
  20139. </member>
  20140. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.ShareType">
  20141. <summary>The type of share.</summary>
  20142. </member>
  20143. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.TotalOpenFiles">
  20144. <summary>Specifies the number of files currently open as a result of the connection.</summary>
  20145. </member>
  20146. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.TotalUsers">
  20147. <summary>Specifies the number of users on the connection.</summary>
  20148. </member>
  20149. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.ConnectedSeconds">
  20150. <summary>Specifies the number of seconds that the connection has been established.</summary>
  20151. </member>
  20152. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.UserName">
  20153. <summary>If the server sharing the resource is running with user-level security, the UserName member describes which user made the connection. If the server is running with share-level security, coni1_username describes which computer (computername) made the connection.</summary>
  20154. </member>
  20155. <member name="P:Alphaleonis.Win32.Network.OpenConnectionInfo.NetName">
  20156. <summary>String that specifies either the share name of the server's shared resource or the computername of the client. The value of this member depends on which name was specified as the qualifier parameter to the NetConnectionEnum function.</summary>
  20157. </member>
  20158. <member name="T:Alphaleonis.Win32.Network.OpenResourceInfo">
  20159. <summary>Contains the identification number and other pertinent information about files, devices, and pipes. This class cannot be inherited.</summary>
  20160. </member>
  20161. <member name="M:Alphaleonis.Win32.Network.OpenResourceInfo.#ctor(System.String,Alphaleonis.Win32.Network.NativeMethods.FILE_INFO_3)">
  20162. <summary>Create a OpenResourceInfo instance.</summary>
  20163. </member>
  20164. <member name="M:Alphaleonis.Win32.Network.OpenResourceInfo.Close">
  20165. <summary>Forces the open resource to close.</summary>
  20166. <remarks>You should this method with caution because it does not write data cached on the client system to the file before closing the file.</remarks>
  20167. </member>
  20168. <member name="M:Alphaleonis.Win32.Network.OpenResourceInfo.ToString">
  20169. <summary>Returns the full path to the share.</summary>
  20170. <returns>A string that represents this instance.</returns>
  20171. </member>
  20172. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.Host">
  20173. <summary>The local or remote Host.</summary>
  20174. </member>
  20175. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.Id">
  20176. <summary>The identification number assigned to the resource when it is opened.</summary>
  20177. </member>
  20178. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.PathName">
  20179. <summary>The path of the opened resource.</summary>
  20180. </member>
  20181. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.Permissions">
  20182. <summary>The access permissions associated with the opening application. This member can be one or more of the following <see cref="T:Alphaleonis.Win32.Network.AccessPermissions"/> values.</summary>
  20183. </member>
  20184. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.TotalLocks">
  20185. <summary>The number of file locks on the file, device, or pipe.</summary>
  20186. </member>
  20187. <member name="P:Alphaleonis.Win32.Network.OpenResourceInfo.UserName">
  20188. <summary>Specifies which user (on servers that have user-level security) or which computer (on servers that have share-level security) opened the resource.</summary>
  20189. </member>
  20190. <member name="T:Alphaleonis.Win32.Network.ShareInfo">
  20191. <summary>Contains information about Server Message Block (SMB) shares. This class cannot be inherited.</summary>
  20192. </member>
  20193. <member name="M:Alphaleonis.Win32.Network.ShareInfo.#ctor(System.String,Alphaleonis.Win32.Network.ShareInfoLevel,System.Object)">
  20194. <summary>Creates a <see cref="T:Alphaleonis.Win32.Network.ShareInfo"/> instance.</summary>
  20195. <param name="host">A host to retrieve shares from.</param>
  20196. <param name="shareLevel">One of the <see cref="T:Alphaleonis.Win32.Network.ShareInfoLevel"/> options.</param>
  20197. <param name="shareInfo">A <see cref="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_2"/> or <see cref="T:Alphaleonis.Win32.Network.NativeMethods.SHARE_INFO_503"/> instance.</param>
  20198. </member>
  20199. <member name="M:Alphaleonis.Win32.Network.ShareInfo.ToString">
  20200. <summary>Returns the full path to the share.</summary>
  20201. <returns>A string that represents this instance.</returns>
  20202. </member>
  20203. <member name="P:Alphaleonis.Win32.Network.ShareInfo.CurrentUses">
  20204. <summary>The number of current connections to the resource.</summary>
  20205. </member>
  20206. <member name="P:Alphaleonis.Win32.Network.ShareInfo.DirectoryInfo">
  20207. <summary>The <see cref="P:Alphaleonis.Win32.Network.ShareInfo.DirectoryInfo"/> instance associated with this share.</summary>
  20208. </member>
  20209. <member name="P:Alphaleonis.Win32.Network.ShareInfo.NetFullPath">
  20210. <summary>Returns the full UNC path to the share.</summary>
  20211. </member>
  20212. <member name="P:Alphaleonis.Win32.Network.ShareInfo.MaxUses">
  20213. <summary>The maximum number of concurrent connections that the shared resource can accommodate.</summary>
  20214. <remarks>The number of connections is unlimited if the value specified in this member is –1.</remarks>
  20215. </member>
  20216. <member name="P:Alphaleonis.Win32.Network.ShareInfo.NetName">
  20217. <summary>The name of a shared resource.</summary>
  20218. </member>
  20219. <member name="P:Alphaleonis.Win32.Network.ShareInfo.Password">
  20220. <summary>The share's password (when the server is running with share-level security).</summary>
  20221. </member>
  20222. <member name="P:Alphaleonis.Win32.Network.ShareInfo.Path">
  20223. <summary>The local path for the shared resource.</summary>
  20224. <remarks>For disks, this member is the path being shared. For print queues, this member is the name of the print queue being shared.</remarks>
  20225. </member>
  20226. <member name="P:Alphaleonis.Win32.Network.ShareInfo.Permissions">
  20227. <summary>The shared resource's permissions for servers running with share-level security.</summary>
  20228. <remarks>Note that Windows does not support share-level security. This member is ignored on a server running user-level security.</remarks>
  20229. </member>
  20230. <member name="P:Alphaleonis.Win32.Network.ShareInfo.Remark">
  20231. <summary>An optional comment about the shared resource.</summary>
  20232. </member>
  20233. <member name="P:Alphaleonis.Win32.Network.ShareInfo.SecurityDescriptor">
  20234. <summary>Specifies the SECURITY_DESCRIPTOR associated with this share.</summary>
  20235. </member>
  20236. <member name="P:Alphaleonis.Win32.Network.ShareInfo.ServerName">
  20237. <summary>A pointer to a string that specifies the DNS or NetBIOS name of the remote server on which the shared resource resides.</summary>
  20238. <remarks>A value of "*" indicates no configured server name.</remarks>
  20239. </member>
  20240. <member name="P:Alphaleonis.Win32.Network.ShareInfo.ShareType">
  20241. <summary>The type of share.</summary>
  20242. </member>
  20243. <member name="P:Alphaleonis.Win32.Network.ShareInfo.ResourceType">
  20244. <summary>The type of share resource.</summary>
  20245. </member>
  20246. <member name="P:Alphaleonis.Win32.Network.ShareInfo.ShareLevel">
  20247. <summary>The structure level for the ShareInfo instance.</summary>
  20248. </member>
  20249. <member name="T:Alphaleonis.Win32.OperatingSystem">
  20250. <summary>Static class providing access to information about the operating system under which the assembly is executing.</summary>
  20251. </member>
  20252. <member name="T:Alphaleonis.Win32.OperatingSystem.EnumOsName">
  20253. <summary>A set of flags that describe the named Windows versions.</summary>
  20254. <remarks>The values of the enumeration are ordered. A later released operating system version has a higher number, so comparisons between named versions are meaningful.</remarks>
  20255. </member>
  20256. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Earlier">
  20257. <summary>A Windows version earlier than Windows 2000.</summary>
  20258. </member>
  20259. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Windows2000">
  20260. <summary>Windows 2000 (Server or Professional).</summary>
  20261. </member>
  20262. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsXP">
  20263. <summary>Windows XP.</summary>
  20264. </member>
  20265. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer2003">
  20266. <summary>Windows Server 2003.</summary>
  20267. </member>
  20268. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsVista">
  20269. <summary>Windows Vista.</summary>
  20270. </member>
  20271. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer2008">
  20272. <summary>Windows Server 2008.</summary>
  20273. </member>
  20274. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Windows7">
  20275. <summary>Windows 7.</summary>
  20276. </member>
  20277. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer2008R2">
  20278. <summary>Windows Server 2008 R2.</summary>
  20279. </member>
  20280. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Windows8">
  20281. <summary>Windows 8.</summary>
  20282. </member>
  20283. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer2012">
  20284. <summary>Windows Server 2012.</summary>
  20285. </member>
  20286. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Windows81">
  20287. <summary>Windows 8.1.</summary>
  20288. </member>
  20289. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer2012R2">
  20290. <summary>Windows Server 2012 R2</summary>
  20291. </member>
  20292. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Windows10">
  20293. <summary>Windows 10</summary>
  20294. </member>
  20295. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.WindowsServer">
  20296. <summary>Windows Server</summary>
  20297. </member>
  20298. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumOsName.Later">
  20299. <summary>A later version of Windows than currently installed.</summary>
  20300. </member>
  20301. <member name="T:Alphaleonis.Win32.OperatingSystem.EnumProcessorArchitecture">
  20302. <summary>A set of flags to indicate the current processor architecture for which the operating system is targeted and running.</summary>
  20303. </member>
  20304. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumProcessorArchitecture.X86">
  20305. <summary>PROCESSOR_ARCHITECTURE_INTEL
  20306. <para>The system is running a 32-bit version of Windows.</para>
  20307. </summary>
  20308. </member>
  20309. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumProcessorArchitecture.IA64">
  20310. <summary>PROCESSOR_ARCHITECTURE_IA64
  20311. <para>The system is running on a Itanium processor.</para>
  20312. </summary>
  20313. </member>
  20314. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumProcessorArchitecture.X64">
  20315. <summary>PROCESSOR_ARCHITECTURE_AMD64
  20316. <para>The system is running a 64-bit version of Windows.</para>
  20317. </summary>
  20318. </member>
  20319. <member name="F:Alphaleonis.Win32.OperatingSystem.EnumProcessorArchitecture.Unknown">
  20320. <summary>PROCESSOR_ARCHITECTURE_UNKNOWN
  20321. <para>Unknown architecture.</para>
  20322. </summary>
  20323. </member>
  20324. <member name="P:Alphaleonis.Win32.OperatingSystem.IsServer">
  20325. <summary>Gets a value indicating whether the operating system is a server operating system.</summary>
  20326. <value><see langword="true"/> if the current operating system is a server operating system; otherwise, <see langword="false"/>.</value>
  20327. </member>
  20328. <member name="P:Alphaleonis.Win32.OperatingSystem.IsWow64Process">
  20329. <summary>Gets a value indicating whether the current process is running under WOW64.</summary>
  20330. <value><see langword="true"/> if the current process is running under WOW64; otherwise, <see langword="false"/>.</value>
  20331. </member>
  20332. <member name="P:Alphaleonis.Win32.OperatingSystem.OSVersion">
  20333. <summary>Gets the numeric version of the operating system.</summary>
  20334. <value>The numeric version of the operating system.</value>
  20335. </member>
  20336. <member name="P:Alphaleonis.Win32.OperatingSystem.VersionName">
  20337. <summary>Gets the named version of the operating system.</summary>
  20338. <value>The named version of the operating system.</value>
  20339. </member>
  20340. <member name="P:Alphaleonis.Win32.OperatingSystem.ProcessorArchitecture">
  20341. <summary>Gets the processor architecture for which the operating system is targeted.</summary>
  20342. <value>The processor architecture for which the operating system is targeted.</value>
  20343. <remarks>If running under WOW64 this will return a 32-bit processor. Use <see cref="P:Alphaleonis.Win32.OperatingSystem.IsWow64Process"/> to determine if this is the case.</remarks>
  20344. </member>
  20345. <member name="P:Alphaleonis.Win32.OperatingSystem.ServicePackVersion">
  20346. <summary>Gets the version of the service pack currently installed on the operating system.</summary>
  20347. <value>The version of the service pack currently installed on the operating system.</value>
  20348. <remarks>Only the <see cref="P:System.Version.Major"/> and <see cref="P:System.Version.Minor"/> fields are used.</remarks>
  20349. </member>
  20350. <member name="M:Alphaleonis.Win32.OperatingSystem.IsAtLeast(Alphaleonis.Win32.OperatingSystem.EnumOsName)">
  20351. <summary>Determines whether the operating system is of the specified version or later.</summary>
  20352. <returns><see langword="true"/> if the operating system is of the specified <paramref name="version"/> or later; otherwise, <see langword="false"/>.</returns>
  20353. <param name="version">The lowest version for which to return true.</param>
  20354. </member>
  20355. <member name="M:Alphaleonis.Win32.OperatingSystem.IsAtLeast(Alphaleonis.Win32.OperatingSystem.EnumOsName,System.Int32)">
  20356. <summary>Determines whether the operating system is of the specified version or later, allowing specification of a minimum service pack that must be installed on the lowest version.</summary>
  20357. <returns><see langword="true"/> if the operating system matches the specified <paramref name="version"/> with the specified service pack, or if the operating system is of a later version; otherwise, <see langword="false"/>.</returns>
  20358. <param name="version">The minimum required version.</param>
  20359. <param name="servicePackVersion">The major version of the service pack that must be installed on the minimum required version to return true. This can be 0 to indicate that no service pack is required.</param>
  20360. </member>
  20361. <member name="M:Alphaleonis.Win32.OperatingSystem.NativeMethods.RtlGetVersion(Alphaleonis.Win32.OperatingSystem.NativeMethods.RTL_OSVERSIONINFOEXW@)">
  20362. <summary>The RtlGetVersion routine returns version information about the currently running operating system.</summary>
  20363. <returns>RtlGetVersion returns STATUS_SUCCESS.</returns>
  20364. <remarks>Available starting with Windows 2000.</remarks>
  20365. </member>
  20366. <member name="M:Alphaleonis.Win32.OperatingSystem.NativeMethods.GetNativeSystemInfo(Alphaleonis.Win32.OperatingSystem.NativeMethods.SYSTEM_INFO@)">
  20367. <summary>Retrieves information about the current system to an application running under WOW64.
  20368. If the function is called from a 64-bit application, it is equivalent to the GetSystemInfo function.
  20369. </summary>
  20370. <returns>This function does not return a value.</returns>
  20371. <remarks>To determine whether a Win32-based application is running under WOW64, call the <see cref="M:Alphaleonis.Win32.OperatingSystem.NativeMethods.IsWow64Process(System.IntPtr,System.Boolean@)"/> function.</remarks>
  20372. <remarks>Minimum supported client: Windows XP [desktop apps | Windows Store apps]</remarks>
  20373. <remarks>Minimum supported server: Windows Server 2003 [desktop apps | Windows Store apps]</remarks>
  20374. </member>
  20375. <member name="M:Alphaleonis.Win32.OperatingSystem.NativeMethods.IsWow64Process(System.IntPtr,System.Boolean@)">
  20376. <summary>Determines whether the specified process is running under WOW64.</summary>
  20377. <returns>
  20378. If the function succeeds, the return value is a nonzero value.
  20379. If the function fails, the return value is zero. To get extended error information, call GetLastError.
  20380. </returns>
  20381. <remarks>Minimum supported client: Windows Vista, Windows XP with SP2 [desktop apps only]</remarks>
  20382. <remarks>Minimum supported server: Windows Server 2008, Windows Server 2003 with SP1 [desktop apps only]</remarks>
  20383. </member>
  20384. <member name="T:Alphaleonis.Win32.Resources">
  20385. <summary>
  20386. A strongly-typed resource class, for looking up localized strings, etc.
  20387. </summary>
  20388. </member>
  20389. <member name="P:Alphaleonis.Win32.Resources.ResourceManager">
  20390. <summary>
  20391. Returns the cached ResourceManager instance used by this class.
  20392. </summary>
  20393. </member>
  20394. <member name="P:Alphaleonis.Win32.Resources.Culture">
  20395. <summary>
  20396. Overrides the current thread's CurrentUICulture property for all
  20397. resource lookups using this strongly typed resource class.
  20398. </summary>
  20399. </member>
  20400. <member name="P:Alphaleonis.Win32.Resources.Buffer_Not_Large_Enough">
  20401. <summary>
  20402. Looks up a localized string similar to Buffer is not large enough for the requested operation..
  20403. </summary>
  20404. </member>
  20405. <member name="P:Alphaleonis.Win32.Resources.Cannot_Create_Directory">
  20406. <summary>
  20407. Looks up a localized string similar to Cannot create directory..
  20408. </summary>
  20409. </member>
  20410. <member name="P:Alphaleonis.Win32.Resources.Cannot_Determine_Copy_Or_Move">
  20411. <summary>
  20412. Looks up a localized string similar to Cannot determine Copy or Move action..
  20413. </summary>
  20414. </member>
  20415. <member name="P:Alphaleonis.Win32.Resources.Destination_Buffer_Not_Large_Enough">
  20416. <summary>
  20417. Looks up a localized string similar to Destination buffer not large enough for the requested operation..
  20418. </summary>
  20419. </member>
  20420. <member name="P:Alphaleonis.Win32.Resources.Device_Not_Ready">
  20421. <summary>
  20422. Looks up a localized string similar to The device is not ready..
  20423. </summary>
  20424. </member>
  20425. <member name="P:Alphaleonis.Win32.Resources.Exception_From_Successful_Operation">
  20426. <summary>
  20427. Looks up a localized string similar to Incorrectly implemented function attempting to generate exception from successful operation.
  20428. .
  20429. </summary>
  20430. </member>
  20431. <member name="P:Alphaleonis.Win32.Resources.File_Is_Hidden">
  20432. <summary>
  20433. Looks up a localized string similar to The specified file is hidden: [{0}].
  20434. </summary>
  20435. </member>
  20436. <member name="P:Alphaleonis.Win32.Resources.File_Or_Directory_Already_Exists">
  20437. <summary>
  20438. Looks up a localized string similar to The file or directory already exists..
  20439. </summary>
  20440. </member>
  20441. <member name="P:Alphaleonis.Win32.Resources.Handle_Is_Closed">
  20442. <summary>
  20443. Looks up a localized string similar to The handle is closed..
  20444. </summary>
  20445. </member>
  20446. <member name="P:Alphaleonis.Win32.Resources.Handle_Is_Invalid">
  20447. <summary>
  20448. Looks up a localized string similar to The handle is invalid..
  20449. </summary>
  20450. </member>
  20451. <member name="P:Alphaleonis.Win32.Resources.Handle_Is_Invalid_Win32Error">
  20452. <summary>
  20453. Looks up a localized string similar to The handle is invalid. Win32Error: [{0}].
  20454. </summary>
  20455. </member>
  20456. <member name="P:Alphaleonis.Win32.Resources.HardLinks_Not_Supported">
  20457. <summary>
  20458. Looks up a localized string similar to Creating hard-links on non-NTFS partitions is not supported..
  20459. </summary>
  20460. </member>
  20461. <member name="P:Alphaleonis.Win32.Resources.Illegal_Characters_In_Path">
  20462. <summary>
  20463. Looks up a localized string similar to Illegal characters: [{0}] in path..
  20464. </summary>
  20465. </member>
  20466. <member name="P:Alphaleonis.Win32.Resources.Invalid_File_Attribute">
  20467. <summary>
  20468. Looks up a localized string similar to An attempt to set an invalid file attribute failed..
  20469. </summary>
  20470. </member>
  20471. <member name="P:Alphaleonis.Win32.Resources.Invalid_Stream_Name">
  20472. <summary>
  20473. Looks up a localized string similar to Invalid stream name..
  20474. </summary>
  20475. </member>
  20476. <member name="P:Alphaleonis.Win32.Resources.Invalid_Subpath">
  20477. <summary>
  20478. Looks up a localized string similar to Invalid Subpath.
  20479. </summary>
  20480. </member>
  20481. <member name="P:Alphaleonis.Win32.Resources.Invalid_Transaction_Request">
  20482. <summary>
  20483. Looks up a localized string similar to Invalid transaction request..
  20484. </summary>
  20485. </member>
  20486. <member name="P:Alphaleonis.Win32.Resources.Negative_Count">
  20487. <summary>
  20488. Looks up a localized string similar to Count cannot be negative..
  20489. </summary>
  20490. </member>
  20491. <member name="P:Alphaleonis.Win32.Resources.Negative_Destination_Offset">
  20492. <summary>
  20493. Looks up a localized string similar to Destination offset cannot be negative..
  20494. </summary>
  20495. </member>
  20496. <member name="P:Alphaleonis.Win32.Resources.Negative_Length">
  20497. <summary>
  20498. Looks up a localized string similar to Length cannot be negative..
  20499. </summary>
  20500. </member>
  20501. <member name="P:Alphaleonis.Win32.Resources.Negative_Lock_Length">
  20502. <summary>
  20503. Looks up a localized string similar to Lock length cannot be negative..
  20504. </summary>
  20505. </member>
  20506. <member name="P:Alphaleonis.Win32.Resources.Negative_Offset">
  20507. <summary>
  20508. Looks up a localized string similar to Offset cannot be negative..
  20509. </summary>
  20510. </member>
  20511. <member name="P:Alphaleonis.Win32.Resources.No_Stream_Seeking_Support">
  20512. <summary>
  20513. Looks up a localized string similar to This stream does not support seeking..
  20514. </summary>
  20515. </member>
  20516. <member name="P:Alphaleonis.Win32.Resources.Not_A_Reparse_Point">
  20517. <summary>
  20518. Looks up a localized string similar to The file or directory is not a reparse point..
  20519. </summary>
  20520. </member>
  20521. <member name="P:Alphaleonis.Win32.Resources.Not_A_Valid_Guid">
  20522. <summary>
  20523. Looks up a localized string similar to Argument is not a valid Volume GUID..
  20524. </summary>
  20525. </member>
  20526. <member name="P:Alphaleonis.Win32.Resources.Path_Is_Zero_Length_Or_Only_White_Space">
  20527. <summary>
  20528. Looks up a localized string similar to Path is a zero-length string or contains only white space..
  20529. </summary>
  20530. </member>
  20531. <member name="P:Alphaleonis.Win32.Resources.Privilege_Name_Cannot_Be_Empty">
  20532. <summary>
  20533. Looks up a localized string similar to Privilege name cannot be empty..
  20534. </summary>
  20535. </member>
  20536. <member name="P:Alphaleonis.Win32.Resources.Read_Incomplete_Header">
  20537. <summary>
  20538. Looks up a localized string similar to Incomplete header read..
  20539. </summary>
  20540. </member>
  20541. <member name="P:Alphaleonis.Win32.Resources.Requires_Windows_Vista_Or_Higher">
  20542. <summary>
  20543. Looks up a localized string similar to This method requires Windows Vista or higher..
  20544. </summary>
  20545. </member>
  20546. <member name="P:Alphaleonis.Win32.Resources.Returned_Invalid_Security_Descriptor">
  20547. <summary>
  20548. Looks up a localized string similar to Invalid security descriptor returned from system..
  20549. </summary>
  20550. </member>
  20551. <member name="P:Alphaleonis.Win32.Resources.Source_Offset_And_Length_Outside_Bounds">
  20552. <summary>
  20553. Looks up a localized string similar to Source offset and length outside the bounds of the array.
  20554. </summary>
  20555. </member>
  20556. <member name="P:Alphaleonis.Win32.Resources.Target_Directory_Is_A_File">
  20557. <summary>
  20558. Looks up a localized string similar to The target directory is a file, not a directory: [{0}].
  20559. </summary>
  20560. </member>
  20561. <member name="P:Alphaleonis.Win32.Resources.Target_File_Is_A_Directory">
  20562. <summary>
  20563. Looks up a localized string similar to The target file is a directory, not a file: [{0}].
  20564. </summary>
  20565. </member>
  20566. <member name="P:Alphaleonis.Win32.Resources.Transaction_Already_Aborted">
  20567. <summary>
  20568. Looks up a localized string similar to Transaction already aborted..
  20569. </summary>
  20570. </member>
  20571. <member name="P:Alphaleonis.Win32.Resources.Transaction_Already_Committed">
  20572. <summary>
  20573. Looks up a localized string similar to Transaction already committed..
  20574. </summary>
  20575. </member>
  20576. <member name="P:Alphaleonis.Win32.Resources.Transaction_Invalid">
  20577. <summary>
  20578. Looks up a localized string similar to Invalid transaction object..
  20579. </summary>
  20580. </member>
  20581. <member name="P:Alphaleonis.Win32.Resources.Transaction_Not_Active">
  20582. <summary>
  20583. Looks up a localized string similar to Transaction not active..
  20584. </summary>
  20585. </member>
  20586. <member name="P:Alphaleonis.Win32.Resources.Transaction_Not_Requested">
  20587. <summary>
  20588. Looks up a localized string similar to Transaction not requested..
  20589. </summary>
  20590. </member>
  20591. <member name="P:Alphaleonis.Win32.Resources.Transactional_Conflict">
  20592. <summary>
  20593. Looks up a localized string similar to Transactional conflict..
  20594. </summary>
  20595. </member>
  20596. <member name="P:Alphaleonis.Win32.Resources.UNC_Path_Should_Match_Format">
  20597. <summary>
  20598. Looks up a localized string similar to Network share path should match the format: \\server\share.
  20599. </summary>
  20600. </member>
  20601. <member name="P:Alphaleonis.Win32.Resources.Unlock_Position_Negative">
  20602. <summary>
  20603. Looks up a localized string similar to Backup FileStream Unlock Position must not be negative..
  20604. </summary>
  20605. </member>
  20606. <member name="P:Alphaleonis.Win32.Resources.Unsupported_Path_Format">
  20607. <summary>
  20608. Looks up a localized string similar to The given path&apos;s format is not supported: [{0}].
  20609. </summary>
  20610. </member>
  20611. <member name="T:Alphaleonis.Win32.SafeGlobalMemoryBufferHandle">
  20612. <summary>Represents a block of native memory of a specified size allocated using the LocalAlloc function from Kernel32.dll.</summary>
  20613. </member>
  20614. <member name="M:Alphaleonis.Win32.SafeGlobalMemoryBufferHandle.#ctor">
  20615. <summary>Creates new instance with zero IntPtr.</summary>
  20616. </member>
  20617. <member name="M:Alphaleonis.Win32.SafeGlobalMemoryBufferHandle.#ctor(System.Int32)">
  20618. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.SafeGlobalMemoryBufferHandle"/> class allocating the specified number of bytes of unmanaged memory.</summary>
  20619. <param name="capacity">The capacity.</param>
  20620. </member>
  20621. <member name="M:Alphaleonis.Win32.SafeGlobalMemoryBufferHandle.ReleaseHandle">
  20622. <summary>Called when object is disposed or finalized.</summary>
  20623. </member>
  20624. <member name="T:Alphaleonis.Win32.SafeNativeMemoryBufferHandle">
  20625. <summary>Base class for classes representing a block of unmanaged memory.</summary>
  20626. </member>
  20627. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.#ctor(System.Int32)">
  20628. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.SafeNativeMemoryBufferHandle"/> specifying the allocated capacity of the memory block.</summary>
  20629. <param name="capacity">The capacity.</param>
  20630. </member>
  20631. <member name="P:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.Capacity">
  20632. <summary>Gets the capacity. Only valid if this instance was created using a constructor that specifies the size,
  20633. it is not correct if this handle was returned by a native method using p/invoke.
  20634. </summary>
  20635. </member>
  20636. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.CopyFrom(System.Byte[],System.Int32,System.Int32)">
  20637. <summary>Copies data from a one-dimensional, managed 8-bit unsigned integer array to the unmanaged memory pointer referenced by this instance.</summary>
  20638. <param name="source">The one-dimensional array to copy from. </param>
  20639. <param name="startIndex">The zero-based index into the array where Copy should start.</param>
  20640. <param name="length">The number of array elements to copy.</param>
  20641. </member>
  20642. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.CopyTo(System.Byte[],System.Int32,System.Int32)">
  20643. <summary>Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array.</summary>
  20644. <param name="destination">The array to copy to.</param>
  20645. <param name="destinationOffset">The zero-based index in the destination array where copying should start.</param>
  20646. <param name="length">The number of array elements to copy.</param>
  20647. </member>
  20648. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.CopyTo(System.Int32,System.Byte[],System.Int32,System.Int32)">
  20649. <summary>Copies data from this unmanaged memory pointer to a managed 8-bit unsigned integer array.</summary>
  20650. <param name="sourceOffset">The offset in the buffer to start copying from.</param>
  20651. <param name="destination">The array to copy to.</param>
  20652. <param name="destinationOffset">The zero-based index in the destination array where copying should start.</param>
  20653. <param name="length">The number of array elements to copy.</param>
  20654. </member>
  20655. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.StructureToPtr(System.Object,System.Boolean)">
  20656. <summary>Marshals data from a managed object to an unmanaged block of memory.</summary>
  20657. </member>
  20658. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.PtrToStructure``1(System.Int32)">
  20659. <summary>Marshals data from an unmanaged block of memory to a newly allocated managed object of the specified type.</summary>
  20660. <returns>A managed object containing the data pointed to by the ptr parameter.</returns>
  20661. </member>
  20662. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.PtrToStringUni(System.Int32,System.Int32)">
  20663. <summary>Allocates a managed System.String and copies a specified number of characters from an unmanaged Unicode string into it.</summary>
  20664. <returns>A managed string that holds a copy of the unmanaged string if the value of the ptr parameter is not null; otherwise, this method returns null.</returns>
  20665. </member>
  20666. <member name="M:Alphaleonis.Win32.SafeNativeMemoryBufferHandle.PtrToStringUni">
  20667. <summary>Allocates a managed System.String and copies all characters up to the first null character from an unmanaged Unicode string into it.</summary>
  20668. <returns>A managed string that holds a copy of the unmanaged string if the value of the ptr parameter is not null; otherwise, this method returns null.</returns>
  20669. </member>
  20670. <member name="T:Alphaleonis.Win32.Security.Crc64">
  20671. <summary>Implements an ISO-3309 compliant 64-bit CRC hash algorithm.</summary>
  20672. </member>
  20673. <member name="M:Alphaleonis.Win32.Security.Crc64.#ctor">
  20674. <summary>Initializes a new instance of <see cref="T:Alphaleonis.Win32.Security.Crc64"/> </summary>
  20675. </member>
  20676. <member name="M:Alphaleonis.Win32.Security.Crc64.#ctor(System.UInt64,System.UInt64)">
  20677. <summary>Initializes a new instance of <see cref="T:Alphaleonis.Win32.Security.Crc64"/></summary>
  20678. <param name="polynomial">The polynomial.</param>
  20679. <param name="seed">The seed.</param>
  20680. </member>
  20681. <member name="M:Alphaleonis.Win32.Security.Crc64.Initialize">
  20682. <summary>
  20683. Initializes an implementation of the
  20684. <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class.
  20685. </summary>
  20686. </member>
  20687. <member name="M:Alphaleonis.Win32.Security.Crc64.HashCore(System.Byte[],System.Int32,System.Int32)">
  20688. <summary>When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash.</summary>
  20689. <param name="array">The input to compute the hash code for..</param>
  20690. <param name="ibStart">The offset into the byte array from which to begin using data.</param>
  20691. <param name="cbSize">The number of bytes in the byte array to use as data.</param>
  20692. </member>
  20693. <member name="M:Alphaleonis.Win32.Security.Crc64.HashFinal">
  20694. <summary>
  20695. Finalizes the hash computation after the last data is processed by the cryptographic stream
  20696. object.
  20697. </summary>
  20698. <returns>
  20699. This method finalizes any partial computation and returns the correct hash value for the data
  20700. stream.
  20701. </returns>
  20702. </member>
  20703. <member name="P:Alphaleonis.Win32.Security.Crc64.HashSize">
  20704. <summary>Gets the size, in bits, of the computed hash code.</summary>
  20705. <value>The size, in bits, of the computed hash code.</value>
  20706. </member>
  20707. <member name="M:Alphaleonis.Win32.Security.Crc64.CalculateHash(System.UInt64,System.UInt64[],System.Collections.Generic.IList{System.Byte},System.Int32,System.Int32)">
  20708. <summary>Calculates the hash.</summary>
  20709. <param name="seed">The seed.</param>
  20710. <param name="table">The table.</param>
  20711. <param name="buffer">The buffer.</param>
  20712. <param name="start">The start.</param>
  20713. <param name="size">The size.</param>
  20714. <returns>The calculated hash.</returns>
  20715. </member>
  20716. <member name="M:Alphaleonis.Win32.Security.Crc64.UInt64ToBigEndianBytes(System.UInt64)">
  20717. <summary>Int 64 to big endian bytes.</summary>
  20718. <param name="value">The value.</param>
  20719. <returns>A byte[].</returns>
  20720. </member>
  20721. <member name="M:Alphaleonis.Win32.Security.Crc64.InitializeTable(System.UInt64)">
  20722. <summary>Initializes the table.</summary>
  20723. <param name="polynomial">The polynomial.</param>
  20724. <returns>An ulong[].</returns>
  20725. </member>
  20726. <member name="M:Alphaleonis.Win32.Security.Crc64.CreateTable(System.UInt64)">
  20727. <summary>Creates a table.</summary>
  20728. <param name="polynomial">The polynomial.</param>
  20729. <returns>A new array of ulong.</returns>
  20730. </member>
  20731. <member name="T:Alphaleonis.Win32.Security.HashType">
  20732. <summary>Enum containing the supported hash types.</summary>
  20733. </member>
  20734. <member name="F:Alphaleonis.Win32.Security.HashType.CRC32">
  20735. <summary>CRC-32 (Cyclic Redundancy Check)</summary>
  20736. </member>
  20737. <member name="F:Alphaleonis.Win32.Security.HashType.CRC64ISO3309">
  20738. <summary>CRC-64 ISO-3309 compliant.</summary>
  20739. </member>
  20740. <member name="F:Alphaleonis.Win32.Security.HashType.MD5">
  20741. <summary>MD5 (Message digest)</summary>
  20742. </member>
  20743. <member name="F:Alphaleonis.Win32.Security.HashType.RIPEMD160">
  20744. <summary>RIPEMD-160 is a 160-bit cryptographic hash function. It is intended for use as a replacement for the 128-bit hash functions MD4, MD5, and RIPEMD.</summary>
  20745. </member>
  20746. <member name="F:Alphaleonis.Win32.Security.HashType.SHA1">
  20747. <summary>SHA-1 (Secure Hash Algorithm)</summary>
  20748. </member>
  20749. <member name="F:Alphaleonis.Win32.Security.HashType.SHA256">
  20750. <summary>SHA-256 (Secure Hash Algorithm)</summary>
  20751. </member>
  20752. <member name="F:Alphaleonis.Win32.Security.HashType.SHA384">
  20753. <summary>SHA-384 (Secure Hash Algorithm)</summary>
  20754. </member>
  20755. <member name="F:Alphaleonis.Win32.Security.HashType.SHA512">
  20756. <summary>SHA-512 (Secure Hash Algorithm)</summary>
  20757. </member>
  20758. <member name="T:Alphaleonis.Win32.Security.ObjectType">
  20759. <summary>The ObjectType (SE_OBJECT_TYPE) enumeration contains values that correspond to the types of Windows objects that support security.
  20760. The functions, such as GetSecurityInfo and SetSecurityInfo, that set and retrieve the security information of an object, use these values to indicate the type of object.
  20761. </summary>
  20762. </member>
  20763. <member name="F:Alphaleonis.Win32.Security.ObjectType.UnknownObjectType">
  20764. <summary>Unknown object type.</summary>
  20765. </member>
  20766. <member name="F:Alphaleonis.Win32.Security.ObjectType.FileObject">
  20767. <summary>Indicates a file or directory. The name string that identifies a file or directory object can be in one of the following formats:
  20768. A relative path, such as FileName.dat or ..\FileName
  20769. An absolute path, such as FileName.dat, C:\DirectoryName\FileName.dat, or G:\RemoteDirectoryName\FileName.dat.
  20770. A UNC name, such as \\ComputerName\ShareName\FileName.dat.
  20771. </summary>
  20772. </member>
  20773. <member name="F:Alphaleonis.Win32.Security.ObjectType.Service">
  20774. <summary>Indicates a Windows service. A service object can be a local service, such as ServiceName, or a remote service, such as \\ComputerName\ServiceName.</summary>
  20775. </member>
  20776. <member name="F:Alphaleonis.Win32.Security.ObjectType.Printer">
  20777. <summary>Indicates a printer. A printer object can be a local printer, such as PrinterName, or a remote printer, such as \\ComputerName\PrinterName.</summary>
  20778. </member>
  20779. <member name="F:Alphaleonis.Win32.Security.ObjectType.RegistryKey">
  20780. <summary>Indicates a registry key. A registry key object can be in the local registry, such as CLASSES_ROOT\SomePath or in a remote registry, such as \\ComputerName\CLASSES_ROOT\SomePath.
  20781. The names of registry keys must use the following literal strings to identify the predefined registry keys: "CLASSES_ROOT", "CURRENT_USER", "MACHINE", and "USERS".
  20782. </summary>
  20783. </member>
  20784. <member name="F:Alphaleonis.Win32.Security.ObjectType.LmShare">
  20785. <summary>Indicates a network share. A share object can be local, such as ShareName, or remote, such as \\ComputerName\ShareName.</summary>
  20786. </member>
  20787. <member name="F:Alphaleonis.Win32.Security.ObjectType.KernelObject">
  20788. <summary>Indicates a local kernel object. The GetSecurityInfo and SetSecurityInfo functions support all types of kernel objects.
  20789. The GetNamedSecurityInfo and SetNamedSecurityInfo functions work only with the following kernel objects: semaphore, event, mutex, waitable timer, and file mapping.</summary>
  20790. </member>
  20791. <member name="F:Alphaleonis.Win32.Security.ObjectType.WindowObject">
  20792. <summary>Indicates a window station or desktop object on the local computer. You cannot use GetNamedSecurityInfo and SetNamedSecurityInfo with these objects because the names of window stations or desktops are not unique.</summary>
  20793. </member>
  20794. <member name="F:Alphaleonis.Win32.Security.ObjectType.DsObject">
  20795. <summary>Indicates a directory service object or a property set or property of a directory service object.
  20796. The name string for a directory service object must be in X.500 form, for example: CN=SomeObject,OU=ou2,OU=ou1,DC=DomainName,DC=CompanyName,DC=com,O=internet</summary>
  20797. </member>
  20798. <member name="F:Alphaleonis.Win32.Security.ObjectType.DsObjectAll">
  20799. <summary>Indicates a directory service object and all of its property sets and properties.</summary>
  20800. </member>
  20801. <member name="F:Alphaleonis.Win32.Security.ObjectType.ProviderDefinedObject">
  20802. <summary>Indicates a provider-defined object.</summary>
  20803. </member>
  20804. <member name="F:Alphaleonis.Win32.Security.ObjectType.WmiGuidObject">
  20805. <summary>Indicates a WMI object.</summary>
  20806. </member>
  20807. <member name="F:Alphaleonis.Win32.Security.ObjectType.RegistryWow6432Key">
  20808. <summary>Indicates an object for a registry entry under WOW64.</summary>
  20809. </member>
  20810. <member name="T:Alphaleonis.Win32.Security.SecurityDescriptorControl">
  20811. <summary>The SECURITY_DESCRIPTOR_CONTROL data type is a set of bit flags that qualify the meaning of a security descriptor or its components.
  20812. Each security descriptor has a Control member that stores the SECURITY_DESCRIPTOR_CONTROL bits.</summary>
  20813. </member>
  20814. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.None">
  20815. <summary></summary>
  20816. </member>
  20817. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.OwnerDefaulted">
  20818. <summary>SE_OWNER_DEFAULTED (0x0001) - Indicates an SD with a default owner security identifier (SID). You can use this bit to find all of the objects that have default owner permissions set.</summary>
  20819. </member>
  20820. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.GroupDefaulted">
  20821. <summary>SE_GROUP_DEFAULTED (0x0002) - Indicates an SD with a default group SID. You can use this bit to find all of the objects that have default group permissions set.</summary>
  20822. </member>
  20823. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.DaclPresent">
  20824. <summary>SE_DACL_PRESENT (0x0004) - Indicates an SD that has a discretionary access control list (DACL). If this flag is not set, or if this flag is set and the DACL is NULL, the SD allows full access to everyone.</summary>
  20825. </member>
  20826. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.DaclDefaulted">
  20827. <summary>SE_DACL_DEFAULTED (0x0008) - Indicates an SD with a default DACL. For example, if an object creator does not specify a DACL, the object receives the default DACL from the access token of the creator. This flag can affect how the system treats the DACL, with respect to access control entry (ACE) inheritance. The system ignores this flag if the SE_DACL_PRESENT flag is not set.</summary>
  20828. </member>
  20829. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SaclPresent">
  20830. <summary>SE_SACL_PRESENT (0x0010) - Indicates an SD that has a system access control list (SACL).</summary>
  20831. </member>
  20832. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SaclDefaulted">
  20833. <summary>SE_SACL_DEFAULTED (0x0020) - Indicates an SD with a default SACL. For example, if an object creator does not specify an SACL, the object receives the default SACL from the access token of the creator. This flag can affect how the system treats the SACL, with respect to ACE inheritance. The system ignores this flag if the SE_SACL_PRESENT flag is not set.</summary>
  20834. </member>
  20835. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.DaclAutoInheritReq">
  20836. <summary>SE_DACL_AUTO_INHERIT_REQ (0x0100) - Requests that the provider for the object protected by the SD automatically propagate the DACL to existing child objects. If the provider supports automatic inheritance, it propagates the DACL to any existing child objects, and sets the SE_DACL_AUTO_INHERITED bit in the security descriptors of the object and its child objects.</summary>
  20837. </member>
  20838. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SaclAutoInheritReq">
  20839. <summary>SE_SACL_AUTO_INHERIT_REQ (0x0200) - Requests that the provider for the object protected by the SD automatically propagate the SACL to existing child objects. If the provider supports automatic inheritance, it propagates the SACL to any existing child objects, and sets the SE_SACL_AUTO_INHERITED bit in the SDs of the object and its child objects.</summary>
  20840. </member>
  20841. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.DaclAutoInherited">
  20842. <summary>SE_DACL_AUTO_INHERITED (0x0400) - Windows 2000 only. Indicates an SD in which the DACL is set up to support automatic propagation of inheritable ACEs to existing child objects. The system sets this bit when it performs the automatic inheritance algorithm for the object and its existing child objects. This bit is not set in SDs for Windows NT versions 4.0 and earlier, which do not support automatic propagation of inheritable ACEs.</summary>
  20843. </member>
  20844. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SaclAutoInherited">
  20845. <summary>SE_SACL_AUTO_INHERITED (0x0800) - Windows 2000: Indicates an SD in which the SACL is set up to support automatic propagation of inheritable ACEs to existing child objects. The system sets this bit when it performs the automatic inheritance algorithm for the object and its existing child objects. This bit is not set in SDs for Windows NT versions 4.0 and earlier, which do not support automatic propagation of inheritable ACEs.</summary>
  20846. </member>
  20847. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.DaclProtected">
  20848. <summary>SE_DACL_PROTECTED (0x1000) - Windows 2000: Prevents the DACL of the SD from being modified by inheritable ACEs.</summary>
  20849. </member>
  20850. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SaclProtected">
  20851. <summary>SE_SACL_PROTECTED (0x2000) - Windows 2000: Prevents the SACL of the SD from being modified by inheritable ACEs.</summary>
  20852. </member>
  20853. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.RmControlValid">
  20854. <summary>SE_RM_CONTROL_VALID (0x4000) - Indicates that the resource manager control is valid.</summary>
  20855. </member>
  20856. <member name="F:Alphaleonis.Win32.Security.SecurityDescriptorControl.SelfRelative">
  20857. <summary>SE_SELF_RELATIVE (0x8000) - Indicates an SD in self-relative format with all of the security information in a contiguous block of memory. If this flag is not set, the SD is in absolute format. For more information, see Absolute and Self-Relative Security Descriptors.</summary>
  20858. </member>
  20859. <member name="T:Alphaleonis.Win32.Security.SecurityInformation">
  20860. <summary>The SECURITY_INFORMATION data type identifies the object-related security information being set or queried.
  20861. This security information includes:
  20862. The owner of an object;
  20863. The primary group of an object;
  20864. The discretionary access control list (DACL) of an object;
  20865. The system access control list (SACL) of an object;
  20866. </summary>
  20867. <remarks>
  20868. An unsigned 32-bit integer specifies portions of a SECURITY_DESCRIPTOR by means of bit flags.
  20869. Individual bit values (combinable with the bitwise OR operation) are as shown in the following table.
  20870. </remarks>
  20871. </member>
  20872. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.None">
  20873. <summary></summary>
  20874. </member>
  20875. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Owner">
  20876. <summary>OWNER_SECURITY_INFORMATION (0x00000001) - The owner identifier of the object is being referenced.</summary>
  20877. </member>
  20878. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Group">
  20879. <summary>GROUP_SECURITY_INFORMATION (0x00000002) - The primary group identifier of the object is being referenced.</summary>
  20880. </member>
  20881. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Dacl">
  20882. <summary>DACL_SECURITY_INFORMATION (0x00000004) - The DACL of the object is being referenced.</summary>
  20883. </member>
  20884. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Sacl">
  20885. <summary>SACL_SECURITY_INFORMATION (0x00000008) - The SACL of the object is being referenced.</summary>
  20886. </member>
  20887. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Label">
  20888. <summary>LABEL_SECURITY_INFORMATION (0x00000010) - The mandatory integrity label is being referenced. The mandatory integrity label is an ACE in the SACL of the object.</summary>
  20889. <remarks>Windows Server 2003 and Windows XP: This bit flag is not available.</remarks>
  20890. </member>
  20891. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Attribute">
  20892. <summary>ATTRIBUTE_SECURITY_INFORMATION (0x00000020) - The resource properties of the object being referenced.
  20893. The resource properties are stored in SYSTEM_RESOURCE_ATTRIBUTE_ACE types in the SACL of the security descriptor.
  20894. </summary>
  20895. <remarks>Windows Server 2008 R2, Windows 7, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This bit flag is not available.</remarks>
  20896. </member>
  20897. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Scope">
  20898. <summary>SCOPE_SECURITY_INFORMATION (0x00000040) - The Central Access Policy (CAP) identifier applicable on the object that is being referenced.
  20899. Each CAP identifier is stored in a SYSTEM_SCOPED_POLICY_ID_ACE type in the SACL of the SD.
  20900. </summary>
  20901. <remarks>Windows Server 2008 R2, Windows 7, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This bit flag is not available.</remarks>
  20902. </member>
  20903. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.Backup">
  20904. <summary>BACKUP_SECURITY_INFORMATION (0x00010000) - All parts of the security descriptor. This is useful for backup and restore software that needs to preserve the entire security descriptor.</summary>
  20905. <remarks>Windows Server 2008 R2, Windows 7, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP: This bit flag is not available.</remarks>
  20906. </member>
  20907. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.UnprotectedSacl">
  20908. <summary>UNPROTECTED_SACL_SECURITY_INFORMATION (0x10000000) - The SACL inherits ACEs from the parent object.</summary>
  20909. </member>
  20910. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.UnprotectedDacl">
  20911. <summary>UNPROTECTED_DACL_SECURITY_INFORMATION (0x20000000) - The DACL inherits ACEs from the parent object.</summary>
  20912. </member>
  20913. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.ProtectedSacl">
  20914. <summary>PROTECTED_SACL_SECURITY_INFORMATION (0x40000000) - The SACL cannot inherit ACEs.</summary>
  20915. </member>
  20916. <member name="F:Alphaleonis.Win32.Security.SecurityInformation.ProtectedDacl">
  20917. <summary>PROTECTED_DACL_SECURITY_INFORMATION (0x80000000) - The DACL cannot inherit access control entries (ACEs).</summary>
  20918. </member>
  20919. <member name="T:Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle">
  20920. <summary>An IntPtr wrapper which can be used as the result of a Marshal.AllocHGlobal operation.
  20921. <para>Calls Marshal.FreeHGlobal when disposed or finalized.</para>
  20922. </summary>
  20923. </member>
  20924. <member name="M:Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle.#ctor">
  20925. <summary>Creates new instance with zero IntPtr.</summary>
  20926. </member>
  20927. <member name="M:Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle.CopyFrom(System.Byte[],System.Int32,System.Int32)">
  20928. <summary>Copies data from a one-dimensional, managed 8-bit unsigned integer array to the unmanaged memory pointer referenced by this instance.</summary>
  20929. <param name="source">The one-dimensional array to copy from.</param>
  20930. <param name="startIndex">The zero-based index into the array where Copy should start.</param>
  20931. <param name="length">The number of array elements to copy.</param>
  20932. </member>
  20933. <member name="M:Alphaleonis.Win32.Security.SafeLocalMemoryBufferHandle.ReleaseHandle">
  20934. <summary>Called when object is disposed or finalized.</summary>
  20935. </member>
  20936. <member name="M:Alphaleonis.Win32.Security.NativeMethods.AdjustTokenPrivileges(System.IntPtr,System.Boolean,Alphaleonis.Win32.Security.TokenPrivileges@,System.UInt32,Alphaleonis.Win32.Security.TokenPrivileges@,System.UInt32@)">
  20937. <summary>The AdjustTokenPrivileges function enables or disables privileges in the specified access token. Enabling or disabling privileges in an access token requires TOKEN_ADJUST_PRIVILEGES access.</summary>
  20938. <returns>
  20939. If the function succeeds, the return value is nonzero.
  20940. To determine whether the function adjusted all of the specified privileges, call GetLastError.
  20941. </returns>
  20942. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  20943. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  20944. </member>
  20945. <member name="M:Alphaleonis.Win32.Security.NativeMethods.LookupPrivilegeDisplayName(System.String,System.String,System.Text.StringBuilder@,System.UInt32@,System.UInt32@)">
  20946. <summary>The LookupPrivilegeDisplayName function retrieves the display name that represents a specified privilege.</summary>
  20947. <returns>
  20948. If the function succeeds, the return value is nonzero.
  20949. If the function fails, it returns zero. To get extended error information, call GetLastError.
  20950. </returns>
  20951. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  20952. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  20953. </member>
  20954. <member name="M:Alphaleonis.Win32.Security.NativeMethods.LookupPrivilegeValue(System.String,System.String,Alphaleonis.Win32.Security.Luid@)">
  20955. <summary>The LookupPrivilegeValue function retrieves the locally unique identifier (LUID) used on a specified system to locally represent the specified privilege name.</summary>
  20956. <returns>
  20957. If the function succeeds, the function returns nonzero.
  20958. If the function fails, it returns zero. To get extended error information, call GetLastError.
  20959. </returns>
  20960. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  20961. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  20962. </member>
  20963. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetNamedSecurityInfo(System.String,Alphaleonis.Win32.Security.ObjectType,Alphaleonis.Win32.Security.SecurityInformation,System.IntPtr@,System.IntPtr@,System.IntPtr@,System.IntPtr@,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@)">
  20964. <summary>The GetNamedSecurityInfo function retrieves a copy of the security descriptor for an object specified by name.
  20965. <para>&#160;</para>
  20966. <returns>
  20967. <para>If the function succeeds, the return value is ERROR_SUCCESS.</para>
  20968. <para>If the function fails, the return value is a nonzero error code defined in WinError.h.</para>
  20969. </returns>
  20970. <para>&#160;</para>
  20971. <remarks>
  20972. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  20973. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  20974. </remarks>
  20975. </summary>
  20976. </member>
  20977. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityInfo(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Security.ObjectType,Alphaleonis.Win32.Security.SecurityInformation,System.IntPtr@,System.IntPtr@,System.IntPtr@,System.IntPtr@,Alphaleonis.Win32.SafeGlobalMemoryBufferHandle@)">
  20978. <summary>The GetSecurityInfo function retrieves a copy of the security descriptor for an object specified by a handle.</summary>
  20979. <returns>
  20980. If the function succeeds, the function returns nonzero.
  20981. If the function fails, it returns zero. To get extended error information, call GetLastError.
  20982. </returns>
  20983. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  20984. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  20985. </member>
  20986. <member name="M:Alphaleonis.Win32.Security.NativeMethods.SetSecurityInfo(System.Runtime.InteropServices.SafeHandle,Alphaleonis.Win32.Security.ObjectType,Alphaleonis.Win32.Security.SecurityInformation,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">
  20987. <summary>The SetSecurityInfo function sets specified security information in the security descriptor of a specified object.
  20988. The caller identifies the object by a handle.</summary>
  20989. <returns>
  20990. If the function succeeds, the function returns ERROR_SUCCESS.
  20991. If the function fails, it returns a nonzero error code defined in WinError.h.
  20992. </returns>
  20993. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  20994. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  20995. </member>
  20996. <member name="M:Alphaleonis.Win32.Security.NativeMethods.SetNamedSecurityInfo(System.String,Alphaleonis.Win32.Security.ObjectType,Alphaleonis.Win32.Security.SecurityInformation,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">
  20997. <summary>The SetNamedSecurityInfo function sets specified security information in the security descriptor of a specified object. The caller identifies the object by name.
  20998. <para>&#160;</para>
  20999. <returns>
  21000. <para>If the function succeeds, the function returns ERROR_SUCCESS.</para>
  21001. <para>If the function fails, it returns a nonzero error code defined in WinError.h.</para>
  21002. </returns>
  21003. <para>&#160;</para>
  21004. <remarks>
  21005. <para>Minimum supported client: Windows XP [desktop apps only]</para>
  21006. <para>Minimum supported server: Windows Server 2003 [desktop apps only]</para>
  21007. </remarks>
  21008. </summary>
  21009. </member>
  21010. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorDacl(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.Boolean@,System.IntPtr@,System.Boolean@)">
  21011. <summary>The GetSecurityDescriptorDacl function retrieves a pointer to the discretionary access control list (DACL) in a specified security descriptor.</summary>
  21012. <returns>
  21013. If the function succeeds, the function returns nonzero.
  21014. If the function fails, it returns zero. To get extended error information, call GetLastError.
  21015. </returns>
  21016. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21017. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21018. </member>
  21019. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorSacl(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.Boolean@,System.IntPtr@,System.Boolean@)">
  21020. <summary>The GetSecurityDescriptorSacl function retrieves a pointer to the system access control list (SACL) in a specified security descriptor.</summary>
  21021. <returns>
  21022. If the function succeeds, the function returns nonzero.
  21023. If the function fails, it returns zero. To get extended error information, call GetLastError.
  21024. </returns>
  21025. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21026. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21027. </member>
  21028. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorGroup(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.IntPtr@,System.Boolean@)">
  21029. <summary>The GetSecurityDescriptorGroup function retrieves the primary group information from a security descriptor.</summary>
  21030. <returns>
  21031. If the function succeeds, the function returns nonzero.
  21032. If the function fails, it returns zero. To get extended error information, call GetLastError.
  21033. </returns>
  21034. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21035. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21036. </member>
  21037. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorControl(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,Alphaleonis.Win32.Security.SecurityDescriptorControl@,System.UInt32@)">
  21038. <summary>The GetSecurityDescriptorControl function retrieves a security descriptor control and revision information.</summary>
  21039. <returns>
  21040. If the function succeeds, the function returns nonzero.
  21041. If the function fails, it returns zero. To get extended error information, call GetLastError.
  21042. </returns>
  21043. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21044. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21045. </member>
  21046. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorOwner(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle,System.IntPtr@,System.Boolean@)">
  21047. <summary>The GetSecurityDescriptorOwner function retrieves the owner information from a security descriptor.</summary>
  21048. <returns>
  21049. If the function succeeds, the function returns nonzero.
  21050. If the function fails, it returns zero. To get extended error information, call GetLastError.
  21051. </returns>
  21052. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21053. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21054. </member>
  21055. <member name="M:Alphaleonis.Win32.Security.NativeMethods.GetSecurityDescriptorLength(Alphaleonis.Win32.SafeGlobalMemoryBufferHandle)">
  21056. <summary>The GetSecurityDescriptorLength function returns the length, in bytes, of a structurally valid security descriptor. The length includes the length of all associated structures.</summary>
  21057. <returns>
  21058. If the function succeeds, the function returns the length, in bytes, of the SECURITY_DESCRIPTOR structure.
  21059. If the SECURITY_DESCRIPTOR structure is not valid, the return value is undefined.
  21060. </returns>
  21061. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21062. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21063. </member>
  21064. <member name="M:Alphaleonis.Win32.Security.NativeMethods.LocalFree(System.IntPtr)">
  21065. <summary>Frees the specified local memory object and invalidates its handle.</summary>
  21066. <returns>
  21067. If the function succeeds, the return value is <see langword="null"/>.
  21068. If the function fails, the return value is equal to a handle to the local memory object. To get extended error information, call GetLastError.
  21069. </returns>
  21070. <remarks>SetLastError is set to <see langword="false"/>.</remarks>
  21071. <remarks>
  21072. Note The local functions have greater overhead and provide fewer features than other memory management functions.
  21073. New applications should use the heap functions unless documentation states that a local function should be used.
  21074. For more information, see Global and Local Functions.
  21075. </remarks>
  21076. <remarks>Minimum supported client: Windows XP [desktop apps only]</remarks>
  21077. <remarks>Minimum supported server: Windows Server 2003 [desktop apps only]</remarks>
  21078. </member>
  21079. <member name="T:Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes">
  21080. <summary>Class used to represent the SECURITY_ATTRIBUES native Win32 structure. It provides initialization function from an <see cref="T:System.Security.AccessControl.ObjectSecurity"/> object.</summary>
  21081. </member>
  21082. <member name="M:Alphaleonis.Win32.Security.NativeMethods.SecurityAttributes.ToUnmanagedSecurityAttributes(System.Security.AccessControl.ObjectSecurity)">
  21083. <summary>Marshals an ObjectSecurity instance to unmanaged memory.</summary>
  21084. <returns>A safe handle containing the marshalled security descriptor.</returns>
  21085. <param name="securityDescriptor">The security descriptor.</param>
  21086. </member>
  21087. <member name="T:Alphaleonis.Win32.Security.Crc32">
  21088. <summary>Implements a 32-bit CRC hash algorithm compatible with Zip etc.</summary>
  21089. <remarks>
  21090. Crc32 should only be used for backward compatibility with older file formats
  21091. and algorithms. It is not secure enough for new applications.
  21092. If you need to call multiple times for the same data either use the HashAlgorithm
  21093. interface or remember that the result of one Compute call needs to be ~ (XOR) before
  21094. being passed in as the seed for the next Compute call.
  21095. </remarks>
  21096. </member>
  21097. <member name="M:Alphaleonis.Win32.Security.Crc32.#ctor">
  21098. <summary>
  21099. Initializes a new instance of Crc32.
  21100. </summary>
  21101. </member>
  21102. <member name="M:Alphaleonis.Win32.Security.Crc32.#ctor(System.UInt32,System.UInt32)">
  21103. <summary>Initializes a new instance of Crc32.</summary>
  21104. <param name="polynomial">The polynomial.</param>
  21105. <param name="seed">The seed.</param>
  21106. </member>
  21107. <member name="M:Alphaleonis.Win32.Security.Crc32.Initialize">
  21108. <summary>
  21109. Initializes an implementation of the
  21110. <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class.
  21111. </summary>
  21112. </member>
  21113. <member name="M:Alphaleonis.Win32.Security.Crc32.HashCore(System.Byte[],System.Int32,System.Int32)">
  21114. <summary>When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash.</summary>
  21115. <param name="array">The input to compute the hash code for..</param>
  21116. <param name="ibStart">The offset into the byte array from which to begin using data.</param>
  21117. <param name="cbSize">The number of bytes in the byte array to use as data.</param>
  21118. </member>
  21119. <member name="M:Alphaleonis.Win32.Security.Crc32.HashFinal">
  21120. <summary>
  21121. Finalizes the hash computation after the last data is processed by the cryptographic stream
  21122. object.
  21123. </summary>
  21124. <returns>
  21125. This method finalizes any partial computation and returns the correct hash value for the data
  21126. stream.
  21127. </returns>
  21128. </member>
  21129. <member name="P:Alphaleonis.Win32.Security.Crc32.HashSize">
  21130. <summary>Gets the size, in bits, of the computed hash code.</summary>
  21131. <value>The size, in bits, of the computed hash code.</value>
  21132. </member>
  21133. <member name="M:Alphaleonis.Win32.Security.Crc32.InitializeTable(System.UInt32)">
  21134. <summary>Initializes the table.</summary>
  21135. <param name="polynomial">The polynomial.</param>
  21136. <returns>The table.</returns>
  21137. </member>
  21138. <member name="M:Alphaleonis.Win32.Security.Crc32.CalculateHash(System.UInt32[],System.UInt32,System.Collections.Generic.IList{System.Byte},System.Int32,System.Int32)">
  21139. <summary>Calculates the hash.</summary>
  21140. <param name="table">The table.</param>
  21141. <param name="seed">The seed.</param>
  21142. <param name="buffer">The buffer.</param>
  21143. <param name="start">The start.</param>
  21144. <param name="size">The size.</param>
  21145. <returns>The calculated hash.</returns>
  21146. </member>
  21147. <member name="M:Alphaleonis.Win32.Security.Crc32.UInt32ToBigEndianBytes(System.UInt32)">
  21148. <summary>Int 32 to big endian bytes.</summary>
  21149. <param name="uint32">The second uint 3.</param>
  21150. <returns>A byte[].</returns>
  21151. </member>
  21152. <member name="T:Alphaleonis.Win32.Security.Privilege">
  21153. <summary>Represents a privilege for an access token. The privileges available on the local machine are available as
  21154. static instances from this class. To create a <see cref="T:Alphaleonis.Win32.Security.Privilege"/> representing a privilege on another system,
  21155. use the constructor specifying a system name together with one of these static instances.
  21156. </summary>
  21157. <seealso cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/>
  21158. </member>
  21159. <member name="F:Alphaleonis.Win32.Security.Privilege.AssignPrimaryToken">
  21160. <summary>Required to assign the primary token of a process. User Right: Replace a process-level token.</summary>
  21161. </member>
  21162. <member name="F:Alphaleonis.Win32.Security.Privilege.Audit">
  21163. <summary>Required to generate audit-log entries. Give this privilege to secure servers. User Right: Generate security audits.</summary>
  21164. </member>
  21165. <member name="F:Alphaleonis.Win32.Security.Privilege.Backup">
  21166. <summary>Required to perform backup operations. This privilege causes the system to grant all read access control to any file, regardless of the access control list (ACL) specified for the file. Any access request other than read is still evaluated with the ACL. User Right: Back up files and directories.</summary>
  21167. </member>
  21168. <member name="F:Alphaleonis.Win32.Security.Privilege.ChangeNotify">
  21169. <summary>Required to receive notifications of changes to files or directories. This privilege also causes the system to skip all traversal access checks. It is enabled by default for all users. User Right: Bypass traverse checking.</summary>
  21170. </member>
  21171. <member name="F:Alphaleonis.Win32.Security.Privilege.CreateGlobal">
  21172. <summary>Required to create named file mapping objects in the global namespace during Terminal Services sessions. This privilege is enabled by default for administrators, services, and the local system account. User Right: Create global objects.</summary>
  21173. <remarks>Windows XP/2000: This privilege is not supported. Note that this value is supported starting with Windows Server 2003, Windows XP SP2, and Windows 2000 SP4.</remarks>
  21174. </member>
  21175. <member name="F:Alphaleonis.Win32.Security.Privilege.CreatePagefile">
  21176. <summary>Required to create a paging file. User Right: Create a pagefile.</summary>
  21177. </member>
  21178. <member name="F:Alphaleonis.Win32.Security.Privilege.CreatePermanent">
  21179. <summary>Required to create a permanent object. User Right: Create permanent shared objects.</summary>
  21180. </member>
  21181. <member name="F:Alphaleonis.Win32.Security.Privilege.CreateSymbolicLink">
  21182. <summary>Required to create a symbolic link. User Right: Create symbolic links.</summary>
  21183. </member>
  21184. <member name="F:Alphaleonis.Win32.Security.Privilege.CreateToken">
  21185. <summary>Required to create a primary token. User Right: Create a token object.</summary>
  21186. </member>
  21187. <member name="F:Alphaleonis.Win32.Security.Privilege.Debug">
  21188. <summary>Required to debug and adjust the memory of a process owned by another account. User Right: Debug programs.</summary>
  21189. </member>
  21190. <member name="F:Alphaleonis.Win32.Security.Privilege.EnableDelegation">
  21191. <summary>Required to mark user and computer accounts as trusted for delegation. User Right: Enable computer and user accounts to be trusted for delegation.</summary>
  21192. </member>
  21193. <member name="F:Alphaleonis.Win32.Security.Privilege.Impersonate">
  21194. <summary>Required to impersonate. User Right: Impersonate a client after authentication.</summary>
  21195. <remarks>Windows XP/2000: This privilege is not supported. Note that this value is supported starting with Windows Server 2003, Windows XP SP2, and Windows 2000 SP4.</remarks>
  21196. </member>
  21197. <member name="F:Alphaleonis.Win32.Security.Privilege.IncreaseBasePriority">
  21198. <summary>Required to increase the base priority of a process. User Right: Increase scheduling priority.</summary>
  21199. </member>
  21200. <member name="F:Alphaleonis.Win32.Security.Privilege.IncreaseQuota">
  21201. <summary>Required to increase the quota assigned to a process. User Right: Adjust memory quotas for a process.</summary>
  21202. </member>
  21203. <member name="F:Alphaleonis.Win32.Security.Privilege.IncreaseWorkingSet">
  21204. <summary>Required to allocate more memory for applications that run in the context of users. User Right: Increase a process working set.</summary>
  21205. </member>
  21206. <member name="F:Alphaleonis.Win32.Security.Privilege.LoadDriver">
  21207. <summary>Required to load or unload a device driver. User Right: Load and unload device drivers.</summary>
  21208. </member>
  21209. <member name="F:Alphaleonis.Win32.Security.Privilege.LockMemory">
  21210. <summary>Required to lock physical pages in memory. User Right: Lock pages in memory.</summary>
  21211. </member>
  21212. <member name="F:Alphaleonis.Win32.Security.Privilege.MachineAccount">
  21213. <summary>Required to create a computer account. User Right: Add workstations to domain.</summary>
  21214. </member>
  21215. <member name="F:Alphaleonis.Win32.Security.Privilege.ManageVolume">
  21216. <summary>Required to enable volume management privileges. User Right: Manage the files on a volume.</summary>
  21217. </member>
  21218. <member name="F:Alphaleonis.Win32.Security.Privilege.ProfileSingleProcess">
  21219. <summary>Required to gather profiling information for a single process. User Right: Profile single process.</summary>
  21220. </member>
  21221. <member name="F:Alphaleonis.Win32.Security.Privilege.Relabel">
  21222. <summary>Required to modify the mandatory integrity level of an object. User Right: Modify an object label.</summary>
  21223. </member>
  21224. <member name="F:Alphaleonis.Win32.Security.Privilege.RemoteShutdown">
  21225. <summary>Required to shut down a system using a network request. User Right: Force shutdown from a remote system.</summary>
  21226. </member>
  21227. <member name="F:Alphaleonis.Win32.Security.Privilege.Restore">
  21228. <summary>Required to perform restore operations. This privilege causes the system to grant all write access control to any file, regardless of the ACL specified for the file. Any access request other than write is still evaluated with the ACL. Additionally, this privilege enables you to set any valid user or group SID as the owner of a file. User Right: Restore files and directories.</summary>
  21229. </member>
  21230. <member name="F:Alphaleonis.Win32.Security.Privilege.Security">
  21231. <summary>Required to perform a number of security-related functions, such as controlling and viewing audit messages. This privilege identifies its holder as a security operator. User Right: Manage auditing and security log.</summary>
  21232. </member>
  21233. <member name="F:Alphaleonis.Win32.Security.Privilege.Shutdown">
  21234. <summary>Required to shut down a local system. User Right: Shut down the system.</summary>
  21235. </member>
  21236. <member name="F:Alphaleonis.Win32.Security.Privilege.SyncAgent">
  21237. <summary>Required for a domain controller to use the LDAP directory synchronization services. This privilege enables the holder to read all objects and properties in the directory, regardless of the protection on the objects and properties. By default, it is assigned to the Administrator and LocalSystem accounts on domain controllers. User Right: Synchronize directory service data.</summary>
  21238. </member>
  21239. <member name="F:Alphaleonis.Win32.Security.Privilege.SystemEnvironment">
  21240. <summary>Required to modify the nonvolatile RAM of systems that use this type of memory to store configuration information. User Right: Modify firmware environment values.</summary>
  21241. </member>
  21242. <member name="F:Alphaleonis.Win32.Security.Privilege.SystemProfile">
  21243. <summary>Required to gather profiling information for the entire system. User Right: Profile system performance.</summary>
  21244. </member>
  21245. <member name="F:Alphaleonis.Win32.Security.Privilege.SystemTime">
  21246. <summary>Required to modify the system time. User Right: Change the system time.</summary>
  21247. </member>
  21248. <member name="F:Alphaleonis.Win32.Security.Privilege.TakeOwnership">
  21249. <summary>Required to take ownership of an object without being granted discretionary access. This privilege allows the owner value to be set only to those values that the holder may legitimately assign as the owner of an object. User Right: Take ownership of files or other objects.</summary>
  21250. </member>
  21251. <member name="F:Alphaleonis.Win32.Security.Privilege.Tcb">
  21252. <summary>This privilege identifies its holder as part of the trusted computer base. Some trusted protected subsystems are granted this privilege. User Right: Act as part of the operating system.</summary>
  21253. </member>
  21254. <member name="F:Alphaleonis.Win32.Security.Privilege.TimeZone">
  21255. <summary>Required to adjust the time zone associated with the computer's internal clock. User Right: Change the time zone.</summary>
  21256. </member>
  21257. <member name="F:Alphaleonis.Win32.Security.Privilege.TrustedCredManAccess">
  21258. <summary>Required to access Credential Manager as a trusted caller. User Right: Access Credential Manager as a trusted caller.</summary>
  21259. </member>
  21260. <member name="F:Alphaleonis.Win32.Security.Privilege.Undock">
  21261. <summary>Required to undock a laptop. User Right: Remove computer from docking station.</summary>
  21262. </member>
  21263. <member name="F:Alphaleonis.Win32.Security.Privilege.UnsolicitedInput">
  21264. <summary>Required to read unsolicited input from a terminal device. User Right: Not applicable.</summary>
  21265. </member>
  21266. <member name="M:Alphaleonis.Win32.Security.Privilege.#ctor(System.String,Alphaleonis.Win32.Security.Privilege)">
  21267. <summary>Create a new <see cref="T:Alphaleonis.Win32.Security.Privilege"/> representing the specified privilege on the specified system.</summary>
  21268. <param name="systemName">Name of the system.</param>
  21269. <param name="privilege">The privilege to copy the privilege name from.</param>
  21270. </member>
  21271. <member name="P:Alphaleonis.Win32.Security.Privilege.Name">
  21272. <summary>Gets the system name identifying this privilege.</summary>
  21273. <value>The system name identifying this privilege.</value>
  21274. </member>
  21275. <member name="M:Alphaleonis.Win32.Security.Privilege.LookupDisplayName">
  21276. <summary>Retrieves the display name that represents this privilege.</summary>
  21277. <returns>The display name that represents this privilege.</returns>
  21278. </member>
  21279. <member name="M:Alphaleonis.Win32.Security.Privilege.LookupLuid">
  21280. <summary>Retrieves the locally unique identifier (LUID) used on to represent this privilege (on the system from which it originates).</summary>
  21281. <returns>the locally unique identifier (LUID) used on to represent this privilege (on the system from which it originates).</returns>
  21282. </member>
  21283. <member name="M:Alphaleonis.Win32.Security.Privilege.Equals(Alphaleonis.Win32.Security.Privilege)">
  21284. <summary>Indicates whether the current object is equal to another object of the same type.</summary>
  21285. <param name="other">An object to compare with this object.</param>
  21286. <returns><see langword="true"/> if the current object is equal to the <paramref name="other"/> parameter; otherwise, <see langword="false"/>.</returns>
  21287. </member>
  21288. <member name="M:Alphaleonis.Win32.Security.Privilege.Equals(System.Object)">
  21289. <summary>Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.</summary>
  21290. <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
  21291. <returns><see langword="true"/> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <see langword="false"/>.</returns>
  21292. <exception cref="T:System.NullReferenceException"/>
  21293. </member>
  21294. <member name="M:Alphaleonis.Win32.Security.Privilege.GetHashCode">
  21295. <summary>Serves as a hash function for a particular type.</summary>
  21296. <returns>A hash code for the current Object.</returns>
  21297. </member>
  21298. <member name="M:Alphaleonis.Win32.Security.Privilege.ToString">
  21299. <summary>Returns the system name for this privilege.</summary>
  21300. <remarks>This is equivalent to <see cref="P:Alphaleonis.Win32.Security.Privilege.Name"/>.</remarks>
  21301. <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.</returns>
  21302. </member>
  21303. <member name="M:Alphaleonis.Win32.Security.Privilege.#ctor(System.String)">
  21304. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Security.Privilege"/> class, representing a privilege with the specified name on the local system.</summary>
  21305. <param name="name">The name.</param>
  21306. </member>
  21307. <member name="T:Alphaleonis.Win32.Security.PrivilegeEnabler">
  21308. <summary>Used to enable one or more privileges. The privileges specified will be enabled during the lifetime of the instance. Users create an instance of this object in a <c>using</c> statement to ensure that it is properly disposed when the elevated privileges are no longer needed.</summary>
  21309. </member>
  21310. <member name="M:Alphaleonis.Win32.Security.PrivilegeEnabler.#ctor(Alphaleonis.Win32.Security.Privilege,Alphaleonis.Win32.Security.Privilege[])">
  21311. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/> class.
  21312. This will enable the privileges specified (unless already enabled), and ensure that they are disabled again when
  21313. the object is disposed. (Any privileges already enabled will not be disabled).
  21314. </summary>
  21315. <param name="privilege">The privilege to enable.</param>
  21316. <param name="privileges">Additional privileges to enable.</param>
  21317. </member>
  21318. <member name="M:Alphaleonis.Win32.Security.PrivilegeEnabler.Dispose">
  21319. <summary>Makes sure any privileges enabled by this instance are disabled.</summary>
  21320. </member>
  21321. <member name="P:Alphaleonis.Win32.Security.PrivilegeEnabler.EnabledPrivileges">
  21322. <summary>Gets the enabled privileges. Note that this might not contain all privileges specified to the constructor. Only the privileges actually enabled by this instance is returned.</summary>
  21323. <value>The enabled privileges.</value>
  21324. </member>
  21325. <member name="T:Alphaleonis.Win32.Security.InternalPrivilegeEnabler">
  21326. <summary>
  21327. This object is used to enable a specific privilege for the currently running process during its lifetime.
  21328. It should be disposed as soon as the elevated privilege is no longer needed.
  21329. For more information see the documentation on AdjustTokenPrivileges on MSDN.
  21330. </summary>
  21331. </member>
  21332. <member name="M:Alphaleonis.Win32.Security.InternalPrivilegeEnabler.#ctor(Alphaleonis.Win32.Security.Privilege)">
  21333. <summary>Initializes a new instance of the <see cref="T:Alphaleonis.Win32.Security.PrivilegeEnabler"/> class and enabling the specified privilege for the currently running process.</summary>
  21334. <param name="privilegeName">The name of the privilege.</param>
  21335. </member>
  21336. <member name="M:Alphaleonis.Win32.Security.InternalPrivilegeEnabler.Dispose">
  21337. <summary>
  21338. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
  21339. In this case the privilege previously enabled will be disabled.
  21340. </summary>
  21341. </member>
  21342. <member name="M:Alphaleonis.Win32.Security.InternalPrivilegeEnabler.AdjustPrivilege(System.Boolean)">
  21343. <summary>Adjusts the privilege.</summary>
  21344. <param name="enable"><see langword="true"/> the privilege will be enabled, otherwise disabled.</param>
  21345. </member>
  21346. <member name="M:Alphaleonis.Win32.Win32Errors.GetHrFromWin32Error(System.UInt32)">
  21347. <summary>Use this to translate error codes into HRESULTs like 0x80070006 for ERROR_INVALID_HANDLE.</summary>
  21348. </member>
  21349. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SUCCESS">
  21350. <summary>(0) The operation completed successfully.</summary>
  21351. </member>
  21352. <member name="F:Alphaleonis.Win32.Win32Errors.NO_ERROR">
  21353. <summary>(0) The operation completed successfully.</summary>
  21354. </member>
  21355. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INVALID_FUNCTION">
  21356. <summary>(1) Incorrect function.</summary>
  21357. </member>
  21358. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_FILE_NOT_FOUND">
  21359. <summary>(2) The system cannot find the file specified.</summary>
  21360. </member>
  21361. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_PATH_NOT_FOUND">
  21362. <summary>(3) The system cannot find the path specified.</summary>
  21363. </member>
  21364. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_ACCESS_DENIED">
  21365. <summary>(5) Access is denied.</summary>
  21366. </member>
  21367. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INVALID_DRIVE">
  21368. <summary>(15) The system cannot find the drive specified.</summary>
  21369. </member>
  21370. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NOT_SAME_DEVICE">
  21371. <summary>(17) The system cannot move the file to a different disk drive.</summary>
  21372. </member>
  21373. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NO_MORE_FILES">
  21374. <summary>(18) There are no more files.</summary>
  21375. </member>
  21376. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NOT_READY">
  21377. <summary>(21) The device is not ready.</summary>
  21378. </member>
  21379. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SEEK">
  21380. <summary>(25) The drive cannot locate a specific area or track on the disk.</summary>
  21381. </member>
  21382. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SHARING_VIOLATION">
  21383. <summary>(32) The process cannot access the file because it is being used by another process.</summary>
  21384. </member>
  21385. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_LOCK_VIOLATION">
  21386. <summary>(33) The process cannot access the file because another process has locked a portion of the file.</summary>
  21387. </member>
  21388. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_HANDLE_EOF">
  21389. <summary>(38) Reached the end of the file.</summary>
  21390. </member>
  21391. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_BAD_NETPATH">
  21392. <summary>(53) The network path was not found.</summary>
  21393. </member>
  21394. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NETWORK_ACCESS_DENIED">
  21395. <summary>(65) Network access is denied.</summary>
  21396. </member>
  21397. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_BAD_NET_NAME">
  21398. <summary>(67) The network name cannot be found.</summary>
  21399. </member>
  21400. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_FILE_EXISTS">
  21401. <summary>(80) The file exists.</summary>
  21402. </member>
  21403. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INVALID_PARAMETER">
  21404. <summary>(87) The parameter is incorrect.</summary>
  21405. </member>
  21406. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INSUFFICIENT_BUFFER">
  21407. <summary>(122) The data area passed to a system call is too small.</summary>
  21408. </member>
  21409. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INVALID_NAME">
  21410. <summary>(123) The filename, directory name, or volume label syntax is incorrect.</summary>
  21411. </member>
  21412. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SAME_DRIVE">
  21413. <summary>(143) The system cannot join or substitute a drive to or for a directory on the same drive.</summary>
  21414. </member>
  21415. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_DIR_NOT_EMPTY">
  21416. <summary>(145) The directory is not empty.</summary>
  21417. </member>
  21418. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NOT_LOCKED">
  21419. <summary>(158) The segment is already unlocked.</summary>
  21420. </member>
  21421. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_ALREADY_EXISTS">
  21422. <summary>(183) Cannot create a file when that file already exists.</summary>
  21423. </member>
  21424. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_ENVVAR_NOT_FOUND">
  21425. <summary>(203) The system could not find the environment option that was entered.</summary>
  21426. </member>
  21427. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_MORE_DATA">
  21428. <summary>(234) More data is available.</summary>
  21429. </member>
  21430. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_DIRECTORY">
  21431. <summary>(267) The directory name is invalid.</summary>
  21432. </member>
  21433. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_OPERATION_ABORTED">
  21434. <summary>(995) The I/O operation has been aborted because of either a thread exit or an application request.</summary>
  21435. </member>
  21436. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_IO_PENDING">
  21437. <summary>(997) Overlapped I/O operation is in progress.</summary>
  21438. </member>
  21439. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_BAD_DEVICE">
  21440. <summary>(1200) The specified device name is invalid.</summary>
  21441. </member>
  21442. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_EXTENDED_ERROR">
  21443. <summary>(1208) An extended error has occurred.</summary>
  21444. </member>
  21445. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NO_NETWORK">
  21446. <summary>(1222) The network is not present or not started.</summary>
  21447. </member>
  21448. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_REQUEST_ABORTED">
  21449. <summary>(1235) The request was aborted.</summary>
  21450. </member>
  21451. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SUCCESS_REBOOT_INITIATED">
  21452. <summary>(1641) The requested operation completed successfully.
  21453. <para>The system will be restarted so the changes can take effect.</para>
  21454. </summary>
  21455. </member>
  21456. <member name="F:Alphaleonis.Win32.Win32Errors.RPC_X_BAD_STUB_DATA">
  21457. <summary>(1783) The stub received bad data.</summary>
  21458. </member>
  21459. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SUCCESS_REBOOT_REQUIRED">
  21460. <summary>(3010) The requested operation is successful.
  21461. <para>Changes will not be effective until the system is rebooted.</para>
  21462. </summary>
  21463. </member>
  21464. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_SUCCESS_RESTART_REQUIRED">
  21465. <summary>(3011) The requested operation is successful.
  21466. <para>Changes will not be effective until the service is restarted.</para>
  21467. </summary>
  21468. </member>
  21469. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_NOT_A_REPARSE_POINT">
  21470. <summary>(4390) The file or directory is not a reparse point.</summary>
  21471. </member>
  21472. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_FILE_READ_ONLY">
  21473. <summary>(6009) The specified file is read only.</summary>
  21474. </member>
  21475. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_BAD_RECOVERY_POLICY">
  21476. <summary>(6012) Recovery policy configured for this system contains invalid recovery certificate.</summary>
  21477. </member>
  21478. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_INVALID_TRANSACTION">
  21479. <summary>(6700) The transaction handle associated with this operation is not valid.</summary>
  21480. </member>
  21481. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTION_NOT_ACTIVE">
  21482. <summary>(6701) The requested operation was made in the context
  21483. <para>of a transaction that is no longer active.</para>
  21484. </summary>
  21485. </member>
  21486. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTION_REQUEST_NOT_VALID">
  21487. <summary>(6702) The requested operation is not valid
  21488. <para>on the Transaction object in its current state.</para>
  21489. </summary>
  21490. </member>
  21491. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTION_NOT_REQUESTED">
  21492. <summary>(6703) The caller has called a response API, but the response is not expected
  21493. <para>because the TM did not issue the corresponding request to the caller.</para>
  21494. </summary>
  21495. </member>
  21496. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTION_ALREADY_ABORTED">
  21497. <summary>(6704) It is too late to perform the requested operation,
  21498. <para>since the Transaction has already been aborted.</para>
  21499. </summary>
  21500. </member>
  21501. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTION_ALREADY_COMMITTED">
  21502. <summary>(6705) It is too late to perform the requested operation,
  21503. <para>since the Transaction has already been committed.</para>
  21504. </summary>
  21505. </member>
  21506. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTIONAL_CONFLICT">
  21507. <summary>(6800) The function attempted to use a name
  21508. <para>that is reserved for use by another transaction.</para>
  21509. </summary>
  21510. </member>
  21511. <member name="F:Alphaleonis.Win32.Win32Errors.ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE">
  21512. <summary>(6805) The remote server or share does not support transacted file operations.</summary>
  21513. </member>
  21514. <member name="F:Alphaleonis.Win32.Win32Errors.S_OK">
  21515. <summary>(0) The operation completed successfully.</summary>
  21516. </member>
  21517. <member name="F:Alphaleonis.Win32.Win32Errors.NERR_Success">
  21518. <summary>(0) The operation completed successfully.</summary>
  21519. </member>
  21520. <member name="F:Alphaleonis.Win32.Win32Errors.NERR_UseNotFound">
  21521. <summary>(2250) The network connection could not be found.</summary>
  21522. </member>
  21523. <member name="F:Alphaleonis.Win32.Win32Errors.NERR_NetNameNotFound">
  21524. <summary>(2310) This shared resource does not exist.</summary>
  21525. </member>
  21526. <member name="F:Alphaleonis.Win32.Win32Errors.NERR_FileIdNotFound">
  21527. <summary>(2314) There is not an open file with that identification number.</summary>
  21528. </member>
  21529. <member name="F:Alphaleonis.Win32.Win32Errors.CR_SUCCESS">
  21530. <summary>(0) The operation completed successfully.</summary>
  21531. </member>
  21532. <member name="M:Alphaleonis.Utils.GetEnumDescription(System.Enum)">
  21533. <summary>Gets an attribute on an enum field value.</summary>
  21534. <returns>The description belonging to the enum option, as a string</returns>
  21535. <param name="enumValue">One of the <see cref="T:Alphaleonis.Win32.Filesystem.DeviceGuid"/> enum types.</param>
  21536. </member>
  21537. <member name="M:Alphaleonis.Utils.IsNullOrWhiteSpace(System.String)">
  21538. <summary>Indicates whether a specified string is null, empty, or consists only of white-space characters.</summary>
  21539. <returns><see langword="true"/> if the <paramref name="value"/> parameter is null or <see cref="F:System.String.Empty"/>, or if <paramref name="value"/> consists exclusively of white-space characters.</returns>
  21540. <param name="value">The string to test.</param>
  21541. </member>
  21542. <member name="M:Alphaleonis.Utils.UnitSizeToText``1(``0)">
  21543. <summary>Converts a number of type T to string, suffixed with a unit size.</summary>
  21544. </member>
  21545. <member name="M:Alphaleonis.Utils.PercentCalculate(System.Double,System.Double,System.Double)">
  21546. <summary>Calculates a percentage value.</summary>
  21547. <param name="currentValue"/>
  21548. <param name="minimumValue"/>
  21549. <param name="maximumValue"/>
  21550. </member>
  21551. </members>
  21552. </doc>