ImgMetadataRemover/ImageCore/Files/IFileOutputFormatter.cs

15 lines
549 B
C#
Raw Normal View History

namespace Image.Files
2022-01-23 17:30:05 +00:00
{
/// <summary>
/// IOutputFormatter is an interface for generating the output path and destination file name.
/// </summary>
2022-01-25 20:57:22 +00:00
public interface IFileOutputFormatter
2022-01-23 17:30:05 +00:00
{
/// <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);
}
}