System.IO.SearchOptions.cs

ylbtech-System.IO.SearchOptions.cs
1.返回顶部
1、
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:Program Files (x86)Reference AssembliesMicrosoftFramework.NETFrameworkv4.6.1mscorlib.dll
#endregion

using System.Runtime.InteropServices;

namespace System.IO
{
    //
    // 摘要:
    //     指定是否搜索当前目录中,或当前目录和所有子目录。
    [ComVisible(true)]
    public enum SearchOption
    {
        //
        // 摘要:
        //     在搜索操作中包括仅当前目录。
        TopDirectoryOnly = 0,
        //
        // 摘要:
        //     在搜索操作中包括当前目录及其所有的子目录。 此选项在搜索中包括如装入的驱动器和符号链接的重新分析点。
        AllDirectories = 1
    }
}
2、
2.返回顶部
 
3.返回顶部
 
4.返回顶部
 
5.返回顶部
 
 
6.返回顶部
 
warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
原文地址:https://www.cnblogs.com/storebook/p/12578289.html