在 Applescript 中,获取 Finder 窗口中选定的文件非常容易。
tell application "Finder"
set finderSelList to selection as alias list
end tell
Powershell 中是否有等效项?
我希望能够获取资源管理器窗口中任意选择的文件作为文件对象数组。因此
get-explorer-selection|%{do-something-to $_}
返回get-explorer-selection
最前面的资源管理器窗口中选定文件的数组