We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d7846f commit e8eb5c9Copy full SHA for e8eb5c9
src/CodeSnip/Views/SettingsView/SettingsViewModel.cs
@@ -235,7 +235,7 @@ private async Task Backup()
235
if (!Directory.Exists(backupFolder))
236
Directory.CreateDirectory(backupFolder);
237
238
- string backupFileName = $"snippets-{DateTime.Now:yyyyMMddHHmmss}.sqlite";
+ string backupFileName = $"snippets-{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.sqlite";
239
string backupFilePath = Path.Combine(backupFolder, backupFileName);
240
241
File.Copy(dbFilePath, backupFilePath);
0 commit comments