PowerShell中的DateTime函数

时间:2010-11-15 12:51:24

标签: datetime powershell

我在PowerShell中编写了一个应用程序,我希望将秒转换为日期。

在C#中有一个AddSeconds函数,可以添加秒数。 PowerShell中的哪些功能可以实现类似的性能?

2 个答案:

答案 0 :(得分:3)

好吧,既然.NET框架就在您的指尖,您可以做到

$d1 = [System.DateTime]::Now

然后

$d2 = $d1.AddSeconds(30)

Get-Date似乎是DateTime对象的包装器,以下内容可以正常工作:

$d3 = Get-Date 23.10.2010 -Format dd.MM.yyyy

答案 1 :(得分:2)

PS C:\> $date = Get-Date

PS C:\> $date.AddSeconds(10)

Monday, November 15, 2010 6:24:31 PM