有没有办法创建快捷方式始终指向Windows中文件夹的最新(或最大等)?
例如:
abc / file1 2012-01-01 xxx
abc / file2 2013-01-01 xxx
快捷方式 - >指向file2
编辑file1后:
abc / file1 2013-02-01 xxx
abc / file2 2013-01-01 xxx
快捷方式 - >指向file1
答案 0 :(得分:1)
您可以使用PowerShell脚本为您打开文件:
$dir = "C:\test_code"
$filter="*.txt"
$latest = Get-ChildItem -Path $dir -Filter $filter | Sort-Object LastAccessTime -Descending | Select-Object -First 1
Invoke-Item $latest.fullname