This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Runtime.InteropServices;
namespace System.IO
{
/// <summary>Specifies whether to search the current directory, or the current directory and all subdirectories. </summary>
// Token: 0x020001C6 RID: 454
[ComVisible(true)]
[Serializable]
public enum SearchOption
{
/// <summary>Includes only the current directory in a search.</summary>
// Token: 0x040006E7 RID: 1767
TopDirectoryOnly,
/// <summary>Includes the current directory and all the subdirectories in a search operation. This option includes reparse points like mounted drives and symbolic links in the search.</summary>
// Token: 0x040006E8 RID: 1768
AllDirectories
}
}