internal static IFileSystemChild IFileSystemChildMapper(IFileSystemChild child)
 {
     return(child);
 }
 internal static bool IFileSystemChildComparer(IFileSystemChild current, IFileSystemChild other)
 {
     return(current.FullName == other.FullName && current.Exists == other.Exists);
 }