Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个奇怪的......无论如何使用powershell来查看写入文件需要多长时间?
所以,如果我创建一个文件 - powershell 可以告诉我创建该文件需要多长时间(即 25 毫秒或任何数字)。另外,如果我删除一个文件,它还能告诉我时间吗?
谢谢
Measure-Command可以为您做到这一点。
例如
Measure-Command { new-item -Path test.txt -ItemType File -Force }
你的意思是这样的?
$before = Get-Date # do stuff $after = Get-Date echo ($after - $before).TotalMilliseconds