mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Ensure file date formats are consistent
This commit is contained in:
@@ -218,7 +218,7 @@ namespace SabreTools.FileTypes.Archives
|
|||||||
// Fill in common details and add to the list
|
// Fill in common details and add to the list
|
||||||
rarEntryRom.Filename = entry.Key;
|
rarEntryRom.Filename = entry.Key;
|
||||||
rarEntryRom.Parent = gamename;
|
rarEntryRom.Parent = gamename;
|
||||||
rarEntryRom.Date = entry.LastModifiedTime?.ToString("yyyy/MM/dd hh:mm:ss");
|
rarEntryRom.Date = entry.LastModifiedTime?.ToString("yyyy/MM/dd HH:mm:ss");
|
||||||
found.Add(rarEntryRom);
|
found.Add(rarEntryRom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -211,7 +211,7 @@ namespace SabreTools.FileTypes.Archives
|
|||||||
// Fill in common details and add to the list
|
// Fill in common details and add to the list
|
||||||
tarEntryRom.Filename = entry.Key;
|
tarEntryRom.Filename = entry.Key;
|
||||||
tarEntryRom.Parent = gamename;
|
tarEntryRom.Parent = gamename;
|
||||||
tarEntryRom.Date = entry.LastModifiedTime?.ToString("yyyy/MM/dd hh:mm:ss");
|
tarEntryRom.Date = entry.LastModifiedTime?.ToString("yyyy/MM/dd HH:mm:ss");
|
||||||
found.Add(tarEntryRom);
|
found.Add(tarEntryRom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -372,7 +372,7 @@ namespace SabreTools.FileTypes.Archives
|
|||||||
// Fill in common details and add to the list
|
// Fill in common details and add to the list
|
||||||
zipEntryRom.Filename = localFile.Filename;
|
zipEntryRom.Filename = localFile.Filename;
|
||||||
zipEntryRom.Parent = gamename;
|
zipEntryRom.Parent = gamename;
|
||||||
zipEntryRom.Date = localFile.LastModified.ToString("yyyy/MM/dd hh:mm:ss");
|
zipEntryRom.Date = localFile.LastModified.ToString("yyyy/MM/dd HH:mm:ss");
|
||||||
found.Add(zipEntryRom);
|
found.Add(zipEntryRom);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -429,7 +429,7 @@ namespace SabreTools.FileTypes.Archives
|
|||||||
// Fill in common details and add to the list
|
// Fill in common details and add to the list
|
||||||
zipEntryRom.Filename = localFile.FullName;
|
zipEntryRom.Filename = localFile.FullName;
|
||||||
zipEntryRom.Parent = gamename;
|
zipEntryRom.Parent = gamename;
|
||||||
zipEntryRom.Date = localFile.LastWriteTime.ToString("yyyy/MM/dd hh:mm:ss");
|
zipEntryRom.Date = localFile.LastWriteTime.ToString("yyyy/MM/dd HH:mm:ss");
|
||||||
found.Add(zipEntryRom);
|
found.Add(zipEntryRom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user