Files
AohCopyRou/IFileService.cs
2025-12-18 20:21:02 +08:00

12 lines
452 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace CopyRou
{
public interface IFileService
{
bool MatchFolderName(string folderName, string numPart, string versionPart);
List<string> CopyRouFiles(string sourceFolder, string number, string destPath, ILogger logger);
Task ProcessCodes(List<string> codes, List<string> sourcePaths, string destPath, IProgress<int> progress, ILogger logger);
}
}