in tool/TeamCity.Docker/FileSystem.cs [33:46]
public IEnumerable<string> EnumerateFileSystemEntries(string path, string searchPattern)
{
if (path == null)
{
throw new ArgumentNullException(nameof(path));
}
if (searchPattern == null)
{
throw new ArgumentNullException(nameof(searchPattern));
}
return Directory.EnumerateFileSystemEntries(path, searchPattern, SearchOption.AllDirectories);
}