Files
my-vault/00_Inbox/Windows Shell 获取文件名和大小.md

618 B

{{date:YYYY-MM-DD}}

Capture

获取所有文件名和大小

Get-ChildItem -Recurse -File | Select-Object DirectoryName, Name, @{N='Size(MB)';E={"{0:N2}" -f ($_.Length/1MB)}}, LastWriteTime | Export-Csv -Path "all_files_list.csv" -NoTypeInformation -Encoding UTF8

Questions

Insights

Connections

For Tomorrow


End of day: Ask Claude Code to review and find connections