# 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 の回答を参照してください。
答え1
私は正規表現を使ってゼロ長後読みアサーションhtml
以降のすべてを削除する$_.Name
これは、計算プロパティを使用して、Select-Object
またはFormat-*
Get-ChildItem -File |
Format-Table @{n='foo';e={$_.Name -replace '(?<=^.*\.html).*$'}},Name -HideTableHeaders
サンプル出力:
available13.html available13.html.2019-03-26_081523.bak
index.html index.html.2019-03-26_081538.bak
答え2
新しいプロパティを追加するにはAdd-Member
このような
$time = (Get-Date).AddDays(-4)
$files = gci * -include index*,avail* | where {$_.LastWriteTime -gt $time}
foreach ($f in $files) {
$f | Add-Member noteproperty newName -Value `
$f.Name.Substring(0, $f.Name.Length - ".yyyy-mm-dd_iiiiii.bak".Length)
}
$files | Format-Table -HideTableHeaders newName,Length,LastWriteTime
上記のスニペットでは、名前が常に で終わることを前提としていることに注意してください.yyyy-mm-dd_iiiiii.bak
。他の形式の場合は、その情報を質問に含める必要があり、不要な部分を削除するには、replace、substringなどの他の文字列メソッドを使用する必要がある場合があります。