1
Jirajine 2019-06-03 18:53:01 +08:00 via Android 1
自己写个呗。这个又不难
|
2
ps1aniuge 2019-06-03 19:06:49 +08:00
|
3
ps1aniuge 2019-06-03 19:08:33 +08:00
字符界面的进度条:
Install-Module psInlineProgress 图片: https://communary.files.wordpress.com/2016/04/inlineprogressbartests.png -------- powershell 脚本,图形界面的进度条。 https://gallery.technet.microsoft.com/Progress-Bar-With-d3924344 图示: https://gallery.technet.microsoft.com/site/view/file/143776/1/PWShell_PB.jpg --------- wpf 界面的进度条: https://gallery.technet.microsoft.com/scriptcenter/PoshProgressBar-a72dc1d8 |
4
kokutou 2019-06-03 19:19:23 +08:00
如果要显示进度,就肯定要先统计所有文件数量或者所有文件大小。。。
基于这个,感觉用 copy 和 dir 应该可以组合写一个。。。 |
5
ysc3839 2019-06-03 21:27:51 +08:00
单文件 copy 带进度条好办,用 CopyFileEx 就可以实现。但是多文件的话还要统计文件数目,会降低性能。
rm -r 快是因为不统计文件数目,直接递归删除。 |