LongTextFilePathProvider
using kCura.WinEDDS;
using Relativity.DataExchange.Io;
using Relativity.Logging;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Directories
{
public class LongTextFilePathProvider : FilePathProvider
{
public LongTextFilePathProvider(ILabelManagerForArtifact labelManagerForArtifact, ExportFile exportSettings, IDirectory directoryHelper, ILog logger)
: base(labelManagerForArtifact, exportSettings, directoryHelper, logger)
{
}
protected override string GetSubdirectoryLabel(int objectExportInfoArtifactId)
{
return base.LabelManagerForArtifact.GetTextSubdirectoryLabel(objectExportInfoArtifactId);
}
}
}