diff --git a/src/Files.App/Utils/Storage/Operations/FilesystemHelpers.cs b/src/Files.App/Utils/Storage/Operations/FilesystemHelpers.cs index e774bccdfa71..998fb4d21c47 100644 --- a/src/Files.App/Utils/Storage/Operations/FilesystemHelpers.cs +++ b/src/Files.App/Utils/Storage/Operations/FilesystemHelpers.cs @@ -394,7 +394,7 @@ public async Task CopyItemsFromClipboard(DataPackageView packageVi using var imageStream = await imgSource.OpenReadAsync(); var folder = await StorageFileExtensions.DangerousGetFolderFromPathAsync(destination); // Set the name of the file to be the current time and date - var file = await folder.CreateFileAsync($"{DateTime.Now:mm-dd-yy-HHmmss}.png", CreationCollisionOption.GenerateUniqueName); + var file = await folder.CreateFileAsync($"{DateTime.Now:MM-dd-yy-HHmmss}.png", CreationCollisionOption.GenerateUniqueName); SoftwareBitmap softwareBitmap;