/// <summary>
 /// Constructs the <see cref="WindowsScanFileInfo"/> from a <see cref="Win32.Win32FindData"/>.
 /// </summary>
 internal WindowsScanFileInfo(Win32.Win32FindData find, string path)
 {
     Name              = find.cFileName;
     FullName          = path;
     Size              = find.Size;
     Attributes        = find.dwFileAttributes;
     CreationTimeUtc   = find.CreationTimeUtc;
     LastAccessTimeUtc = find.LastAccessTimeUtc;
     LastWriteTimeUtc  = find.LastWriteTimeUtc;
 }
 public FolderNode(Win32.Win32FindData find)
     : this(find, FileNodeType.Directory, FileNodeFlags.None)
 {
 }
 protected FolderNode(Win32.Win32FindData find, FileNodeType type, FileNodeFlags rootType)
     : base(find, type, rootType)
 {
 }