ImgMetadataRemover/ImageCore/Files/IFilesRetriever.cs

17 lines
527 B
C#
Raw Normal View History

2022-01-23 17:30:05 +00:00
using System.Collections.Generic;
2022-01-25 20:57:22 +00:00
namespace Image.Files
2022-01-23 17:30:05 +00:00
{
/// <summary>
/// An to interface enabling implementation of filename retrievers.
/// </summary>
public interface IFilesRetriever
{
/// <summary>
/// Returns all filenames from given path.
/// </summary>
/// <param name="directoryPath">The path.</param>
/// <returns>An enumerable containing all file names.</returns>
IEnumerable<string> GetFilenamesFromPath(string directoryPath);
}
}