ImgMetadataRemover/ImageCore/IFileOutputPathFormatter.cs

15 lines
547 B
C#
Raw Normal View History

2022-01-23 17:30:05 +00:00
namespace Image
{
/// <summary>
/// IOutputFormatter is an interface for generating the output path and destination file name.
/// </summary>
public interface IFileOutputPathFormatter
{
/// <summary>
/// Generates an absolute output path given the initial absolute file path.
/// </summary>
/// <param name="initialFilePath">The initial file path.</param>
/// <returns>The formatted absolute output path.</returns>
string GetOutputPath(string initialFilePath);
}
}