4 references to GetFileSystemEntries
Aspire.Hosting.Azure.Kusto.Tests (1)
KustoFunctionalTests.cs (1)
265return Directory.GetFileSystemEntries(temp.Path, searchPattern, enumerationOptions);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\Directory.cs (3)
186public static string[] GetFileSystemEntries(string path) => GetFileSystemEntries(path, "*", enumerationOptions: EnumerationOptions.Compatible); 188public static string[] GetFileSystemEntries(string path, string searchPattern) => GetFileSystemEntries(path, searchPattern, enumerationOptions: EnumerationOptions.Compatible); 191=> GetFileSystemEntries(path, searchPattern, EnumerationOptions.FromSearchOption(searchOption));