I'm trying to wrap my head around Epoch time in PowerShell. Basically, I have a CSV that has a column with Epoch time in microseconds. I want to grab only records that fall within "yesterday midnight and today midnight UTC (but not including today midnight UTC").
Will something like this work? How do you convert a datetime to microseconds? I've only seen posts about seconds..
$yesterdayMidnight = (Get-Date -Hour 0 -Minute 0 -Second 0).AddDays(-1)
$todayMidnight = Get-Date -Hour 0 -Minute 0 -Second 0
Import-Csv "Q:\data.csv" | ForEach-Object {
if (($_."Time-UTC-MicroSec" -le $yesterdayMidnight) -and ($_."Time-UTC-MicroSec" -lt $todayMidnight)) {
# do stuff with records
}
Example file:
ID1 ID2 ID3 Time-UTC-MicroSec 2080101 26 501032 1483232054547470 2080101 5 501032 1483231158598830 2080101 30 501012 1483230264931800 2080101 28 501032 1483230721849650 2080101 28 501032 1483231194379190
I got the convert function from here. First you just have to divide by a million to convert microseconds back to seconds.