If you cast a date time string as an actual datetime object, you can compare them.
[datetime]$x = “11/22/1971 10:45 AM”
$y = Get-Date
if ($x -gt $y) {
#whatever
}
I believe the date you’re looking at on the file object is already a date/time, so you should just be able to do a straight comparison.