From ca727e9f23964b3c3cf6242e3680007fb3700529 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Sat, 8 Dec 2018 23:55:49 +0200 Subject: [PATCH] Improve naming of exported partition files --- DiscordChatExporter.Core/Services/ExportService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Core/Services/ExportService.cs b/DiscordChatExporter.Core/Services/ExportService.cs index 055e6be..9ffbdea 100644 --- a/DiscordChatExporter.Core/Services/ExportService.cs +++ b/DiscordChatExporter.Core/Services/ExportService.cs @@ -69,7 +69,7 @@ namespace DiscordChatExporter.Core.Services foreach (var partition in partitions) { // Compose new file name - var partitionFilePath = $"{fileNameWithoutExt}-{partitionNumber}{fileExt}"; + var partitionFilePath = $"{fileNameWithoutExt} [{partitionNumber} of {partitions.Count}]{fileExt}"; // Compose full file path if (dirPath.IsNotBlank())