Download Cover and Create Series Info before Chapters.

Create Publication Directory when calling SaveSeriesInfo and DownloadCover
This commit is contained in:
2023-05-19 20:55:04 +02:00
parent c9602d5f67
commit bc99735f76
2 changed files with 6 additions and 3 deletions

View File

@ -57,7 +57,10 @@ public abstract class Connector
/// <param name="publication">Publication to save series.json for</param>
public void SaveSeriesInfo(Publication publication)
{
string seriesInfoPath = Path.Join(downloadLocation, publication.folderName, "series.json");
//Check if Publication already has a Folder and a series.json
string publicationFolder = Path.Join(downloadLocation, publication.folderName);
Directory.CreateDirectory(publicationFolder);
string seriesInfoPath = Path.Join(publicationFolder, "series.json");
if(!File.Exists(seriesInfoPath))
File.WriteAllText(seriesInfoPath,publication.GetSeriesInfo());
}