ImgMetadataRemover/ConsoleInterface/IFileBrowser.cs

17 lines
523 B
C#
Raw Normal View History

2022-01-23 17:30:05 +00:00
using System.Collections.Generic;
2022-04-02 14:22:42 +00:00
namespace ConsoleInterface
2022-01-23 17:30:05 +00:00
{
/// <summary>
2022-02-12 20:12:57 +00:00
/// An to interface enabling implementation of file browsers.
2022-01-23 17:30:05 +00:00
/// </summary>
2022-02-12 20:12:57 +00:00
public interface IFileBrowser
2022-01-23 17:30:05 +00:00
{
/// <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);
}
}