Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public async Task<ReturnResult> 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;

Expand Down