You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return!filter.HasFlag(HandlesFilter.IncludeNonFiles);// When requested, keep non-File object handle. Else, discard.
166
166
}
167
167
// Discard handle if Query and file's path are not null and file's path does not contain query */
168
-
return(queryis not null)&&(h.FileFullPathis not null)&&(!h.FileFullPath.Contains(query.Replace(Path.AltDirectorySeparatorChar,Path.DirectorySeparatorChar)));
168
+
return(queryis not null)&&(h.FileFullPath?.Contains(query.Replace(Path.AltDirectorySeparatorChar,Path.DirectorySeparatorChar))==false);
0 commit comments