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.
Explorer /select,C:\MyFolder\MyFile.txt
上述命令在 Windows 上执行时会打开 MyFolder 目录并选择(突出显示)名为“MyFile.txt”的文件。
我有一个 Java 应用程序,它利用这个命令让用户知道文件很重要,但我想让这个功能跨系统兼容。在 Mac OSX 和 Linux 等 Unix 操作系统上,此命令的等效项是什么?
对于 Mac,您可以使用open -R filename
open -R filename
从开放的手册:
-R 在 Finder 中显示文件而不是打开它们。
我不知道如何选择一个项目,但使用“/usr/bin/open /Users/foobar/Documents/”至少会打开一个 Finder 窗口,其中 Documents 目录处于活动状态。