2024-11-04, 01:56 AM
I edited the files directly via powershell. I made this script and ran it for each of these shows' affected seasons:
#All files in folder
$files = get-childitem "X:\Example\Season 3"
$time = (get-date).ToString("2023-10-22 HH:mm:ss")
Foreach ($file in $files) {
$file.LastWriteTime = $time
$file.CreationTime = $time
}
The files appear to be correct in file explorer and both the creation and modified dates are 22nd October 2023.
For the recently added section in dashboard > libraries > display it is currently set to Use Date scanned into the library. I did prefer that when i set this up as many files have creation/modified dates all over the place between 1970 - yesterday.
#All files in folder
$files = get-childitem "X:\Example\Season 3"
$time = (get-date).ToString("2023-10-22 HH:mm:ss")
Foreach ($file in $files) {
$file.LastWriteTime = $time
$file.CreationTime = $time
}
The files appear to be correct in file explorer and both the creation and modified dates are 22nd October 2023.
For the recently added section in dashboard > libraries > display it is currently set to Use Date scanned into the library. I did prefer that when i set this up as many files have creation/modified dates all over the place between 1970 - yesterday.