当前位置: 首页 > 工具软件 > PowerTip > 使用案例 >

PowerTip of the Day-Creating Time Spans

利博远
2023-12-01

原文地址:http://app.en25.com/e/es.aspx?s=1403&e=5491&elq=8184bb918aa3406299da2caa939745da

原文:

A time span represents a time interval, and you can use time spans to subtract or add time to a date. For example, to get the date seven days ago:

PS> (Get-Date) - (New-Timespan -day 7)

 

翻译:

时间差代表时间上的间隔,你可以使用时间差来对一个指定时间进行加法和减法运算。比如,获得七天之前的日期:

PS> (Get-Date) - (New-Timespan -day 7)

 

 

笔记:

这里是powershell的写法,等同于c#下的adddays了。

转载于:https://www.cnblogs.com/aspnetx/archive/2010/07/09/1774110.html

 类似资料:

相关阅读

相关文章

相关问答