# Microsoft Windows [Version 10.0.17134.648]
# powershell 5.1.17134.48
# Calculate time to complete task using Notepad++ "backup on save" feature. Create a copy and paste table of files sorted by LastWriteTime.
# Can be used as a shortcut: powershell -noexit $time = (Get-Date).AddDays(-1); gci * -exclude _*, 1* | where {$_.LastWriteTime -gt $time}| sort -property LastWriteTime -descending | Format-Table LastWriteTime, length, @{n='foo';e={$_.Name -replace '(?<=^.*\.html).*$' -replace '(?<=^.*\.jpg).*$'}} -HideTableHeaders
# start it in %userprofile%\Documents\NOTEPAD++ AUTOBACKUP
Set-Location -Path "$env:userprofile\Documents\NOTEPAD++ AUTOBACKUP"
# how old a file? Today? 4 days old?
$time = (Get-Date).AddDays(-1)
# $time = (Get-Date).AddDays(-4)
# do you want to exclude files with -exclude? Do you want to include with -include?
gci * -exclude _*, 1* | where {$_.LastWriteTime -gt $time}| sort -property LastWriteTime -descending | Format-Table LastWriteTime, length, @{n='foo';e={$_.Name -replace '(?<=^.*\.html).*$' -replace '(?<=^.*\.jpg).*$'}} -HideTableHeaders
gci * -exclude _*, 1* | where {$_.LastWriteTime -gt $time} | sort -property LastWriteTime -descending | Format-Table LastWriteTime, length, Name -HideTableHeaders
# gci * | where {$_.LastWriteTime -gt $time} | sort -property LastWriteTime -descending | Format-Table LastWriteTime, length, @{n='foo';e={$_.Name -replace '(?<=^.*\.html).*$' -replace '(?<=^.*\.jpg).*$'}} -HideTableHeaders
# gci * -include [0-9][0-9][0-9]*, avail* | where {$_.LastWriteTime -gt $time} | sort -property LastWriteTime -descending | Format-Table LastWriteTime, length, @{n='foo';e={$_.Name -replace '(?<=^.*\.html).*$' -replace '(?<=^.*\.jpg).*$'}} -HideTableHeaders
输出:
5/4/2019 10 : 47 : 27 AM 114036 springhill_falls2bd750_885.jpg
5/4/2019 10 : 45 : 25 AM 1301974 springhill_falls2bd750_885.psp
5/4/2019 10 : 37 : 08 AM 19268 springhill_falls2bd13.html
5/4/2019 10 : 37 : 08 AM 94007 available13.html
5/4/2019 10 : 37 : 08 AM 36729 index.html
5/4/2019 10 : 32 : 16 AM 62801 aj.php
和:
5/4/2019 10 : 47 : 27 AM 114036 springhill_falls2bd750_885.jpg.2019-05-04_104748.bak
5/4/2019 10 : 45 : 25 AM 1301974 springhill_falls2bd750_885.psp.2019-05-04_105221.bak
5/4/2019 10 : 37 : 08 AM 19268 springhill_falls2bd13.html.2019-05-04_105856.bak
5/4/2019 10 : 37 : 08 AM 94007 available13.html.2019-05-04_105657.bak
5/4/2019 10 : 37 : 08 AM 36729 index.html.2019-05-04_105657.bak
5/4/2019 10 : 32 : 16 AM 62801 aj.php.2019-05-04_103229.bak
Microsoft Windows [版本 10.0.17134.648]
powershell 5.1.17134.48
使用 Notepad++ / NPP / Notepad Plus“保存时备份”功能计算完成任务的时间。
创建按 LastWriteTime 排序的文件的复制和粘贴表。
可以用作快捷方式:
powershell -noexit $time = (Get-Date).AddDays(-1); gci * -exclude _*, 1* |
where {$_.LastWriteTime -gt $time} | sort -property LastWriteTime -descending |
Format-Table LastWriteTime, length, @{n='foo';e={$_.Name
-replace '(?<=^.*\.html).*$' -replace '(?<=^.*\.jpg).*$'}} -HideTableHeaders
在 NPP 自动备份所在的目录中启动它。我的文件备份到%userprofile%\Documents\NOTEPAD++ AUTOBACKUP
此脚本创建一个格式化的表格输出,其中包含编辑后的文件名、大小、日期和每次写入文件的时间。可以很容易地修改要搜索的文件、如何编辑文件名以及要搜索文件的天数。这是跟踪文件处理时间、任务完成时间、项目时间的便捷方式。
有关正则表达式的信息,请参阅下面的 LotPings 答案。
我将使用具有零长度后视断言的 RegEx来删除
html
from之后的所有内容$_.Name
这可以通过计算属性来完成,
Select-Object
或者也可以在Format-*
示例输出:
Add-Member
您可以像这样添加一个新属性请注意,上面的代码片段假定您的名字始终以
.yyyy-mm-dd_iiiiii.bak
. 如果他们有其他格式,那么您必须在问题中包含该信息,并且您可能需要使用其他字符串方法,如 replace、substring... 来删除不必要的部分