The following code yields the value I want.
PS> $tt = gci -Path \\Munis2\musys_read\export_test\* -Include "ARLMA_*.csv" | sort LastWriteTime -Descending
PS> $ticks = $tt[0].LastWriteTime | Format-Custom @{expr={$_.Date.Ticks};depth=1}
PS> $ticks
class DateTime
{
$_.Date.Ticks = 637819488000000000
}
That value is $_.Date.Ticks
I have been searching for ways to extract this value, and cannot come up with a way to do it.