软件雏形

This commit is contained in:
2025-12-18 20:21:02 +08:00
parent 9b81cacea5
commit 18a2c9b4b2
12 changed files with 973 additions and 20 deletions

12
IFileService.cs Normal file
View File

@@ -0,0 +1,12 @@
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);
}
}