/// <summary>
/// 当前对象
/// </summary>
private object objCurrentObject = null;
private bool bolIsEmpty = false;
/// <summary>
/// 该目录为空
/// </summary>
public bool IsEmpty
{
get { return bolIsEmpty; }
}
private int intSearchedCount = 0;
/// <summary>
/// 已找到的对象的个数
/// </summary>
public int SearchedCount
{
get { return intSearchedCount; }
}
private bool bolIsFile = true;
/// <summary>
/// 当前对象是否为文件,若为true则当前对象为文件,否则为目录
/// </summary>
public bool IsFile
{
get { return bolIsFile; }
}
private int intLastErrorCode = 0;
/// <summary>
/// 最后一次操作的Win32错误代码
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/