NuGet.FileSystemExtensions.GetFilesSafe C# (CSharp) Method

GetFilesSafe() static private method

static private GetFilesSafe ( this fileSystem, string path ) : IEnumerable
fileSystem this
path string
return IEnumerable
        internal static IEnumerable<string> GetFilesSafe(this IFileSystem fileSystem, string path)
        {
            return GetFilesSafe(fileSystem, path, "*.*");
        }

Same methods

FileSystemExtensions::GetFilesSafe ( this fileSystem, string path, string filter ) : IEnumerable