This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| person1 | |
| a1 | |
| b1 | |
| 2021-11-01 - 2021-11-07 (2021-11-01 - 2021-11-03): c1 | |
| 2021-11-01 - 2021-11-07 (2021-11-02 - ): c2 | |
| person2 | |
| a1 | |
| b2 | |
| 2021-11-01 - 2021-11-07 ( - ): c2 | |
| b3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Option Explicit | |
| ' セルに代入しても自動変換されないように値を加工する | |
| ' BUG: 日本語以外には対応していない | |
| ' BUG: サロゲートペアには対応してない | |
| Function SafeValue(v As Variant) As Variant | |
| Dim c As String | |
| Dim narrowString As String | |
| c = Left(v, 1) | |
| narrowString = StrConv(c, vbNarrow) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-Item * | % { | |
| $folder = $_ | |
| Write-Warning $folder | |
| Get-ChildItem $folder -Recurse | Measure-Object -Sum Length | Select-Object @{Name="Folder"; E={$folder.FullName}},Count,Sum | |
| # [GC]::Collect() | |
| } | Sort-Object Sum -Desc | Format-Table -AutoSize |
OlderNewer