Dreamweaver 的捆绑包标识符是什么?
对于 Mac Os X 终端,我尝试通过以下代码启动 Dreamweaver:
open -b "com.adobe.Dreamweaver"
但它没有帮助。
Dreamweaver 的正确包标识符是什么?
谢谢。
For Mac Os X Terminal I am trying to launch Dreamweaver by below code:
open -b "com.adobe.Dreamweaver"
But it does not help.
What is the correct bundle identifier for Dreamweaver?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会起作用的。如果您确实需要知道包标识符,请执行以下操作:
如果您有时需要访问
LaunchServices
数据库,lsregister
是一个很好的实用程序。would work. If you really need to know the bundle identifier, do the following:
lsregister
is a nice utility to know, if you need to access theLaunchServices
database sometimes.查看该应用程序的
Contents
文件夹中的Info.plist
文件。在那里你会发现类似的内容:
另请参阅如何查找捆绑包标识符。
Have a look at the
Info.plist
file in theContents
folder of that application.There you find something like:
See also How to Find a Bundle Identifier.