我有一个 CSV 文件,它的时间戳采用 DD.MM.YYYY HH:MM 24 小时格式,我需要在 Powershell 中添加 48 小时并以 DD 月、YYYY HH:MM 格式返回。
因此 13.03.2013 23:12 将返回为 2013 年 3 月 15 日 23:12,或 14.03.2013 10:00 将返回为 2013 年 3 月 16 日 10:00。
我试过使用
$newDate = [DateTime]::$_.Timestamp.AddHours(48)
但是 Powershell 一直告诉我—— “你不能在空值表达式上调用方法。”