parent
5bc414fd59
commit
2f0fbbd3cb
@ -88,23 +88,20 @@ public readonly struct Chapter : IComparable
|
|||||||
/// <returns>true if chapter is present</returns>
|
/// <returns>true if chapter is present</returns>
|
||||||
internal bool CheckChapterIsDownloaded(string downloadLocation)
|
internal bool CheckChapterIsDownloaded(string downloadLocation)
|
||||||
{
|
{
|
||||||
string newFilePath = GetArchiveFilePath(downloadLocation);
|
|
||||||
if (!Directory.Exists(Path.Join(downloadLocation, parentManga.folderName)))
|
if (!Directory.Exists(Path.Join(downloadLocation, parentManga.folderName)))
|
||||||
return false;
|
return false;
|
||||||
FileInfo[] archives = new DirectoryInfo(Path.Join(downloadLocation, parentManga.folderName)).GetFiles();
|
FileInfo[] archives = new DirectoryInfo(Path.Join(downloadLocation, parentManga.folderName)).GetFiles();
|
||||||
Regex chapterInfoRex = new(@"Ch\.[0-9.]+");
|
Regex volChRex = new(@".*Vol(?:ume)?\.?([0-9]+).*Ch(?:apter)?\.?([0-9]+[\.0-9]*).*");
|
||||||
Regex chapterRex = new(@"[0-9]+(\.[0-9]+)?");
|
|
||||||
|
|
||||||
if (File.Exists(newFilePath))
|
Chapter t = this;
|
||||||
return true;
|
return archives.Select(archive => archive.Name).Any(archiveFileName =>
|
||||||
|
|
||||||
string cn = this.chapterNumber;
|
|
||||||
if (archives.FirstOrDefault(archive => chapterRex.Match(chapterInfoRex.Match(archive.Name).Value).Value == cn) is { } path)
|
|
||||||
{
|
{
|
||||||
File.Move(path.FullName, newFilePath);
|
Match m = volChRex.Match(archiveFileName);
|
||||||
return true;
|
string archiveVolNum = m.Groups[1].Value;
|
||||||
}
|
string archiveChNum = m.Groups[2].Value;
|
||||||
return false;
|
return archiveVolNum == t.volumeNumber &&
|
||||||
|
archiveChNum == t.chapterNumber;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates full file path of chapter-archive
|
/// Creates full file path of chapter-archive
|
||||||
|
Loading…
Reference in New Issue
Block a user