0

这是一个奇怪的......无论如何使用powershell来查看写入文件需要多长时间?

所以,如果我创建一个文件 - powershell 可以告诉我创建该文件需要多长时间(即 25 毫秒或任何数字)。另外,如果我删除一个文件,它还能告诉我时间吗?

谢谢

4

2 回答 2

2

Measure-Command可以为您做到这一点。

例如

Measure-Command { new-item -Path test.txt -ItemType File -Force }

于 2012-11-08T13:29:34.113 回答
1

你的意思是这样的?

$before = Get-Date
# do stuff
$after = Get-Date
echo ($after - $before).TotalMilliseconds
于 2012-11-08T13:28:56.547 回答