Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法创建快捷方式总是指向 Windows 中文件夹的最新(或最大等)?
例如: 文件夹/文件1 2012-01-01 xxx 文件夹/文件2 2013-01-01 xxx
文件夹/快捷方式 -> 指向 file2
编辑文件1后:
文件夹/文件1 2013-02-01 xxx 文件夹/文件2 2013-01-01 xxx
文件夹/快捷方式 -> 指向 file1
您可以使用 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