作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 AppleScript 中,我经常需要在作为 POSIX 路径的文件和作为 AppleScript 的 native 文件别名的文件之间进行转换。
方法是通过标准添加中的 POSIX File 类:
set aFile to POSIX file "/"
get aFile's POSIX path
我如何在 JXA 中执行这些类型转换/转换?我试过了
var app = Application.currentApplication();
app.includeStandardAdditions = true;
app.POSIXFile().make('/');
但我只得到
Error on line 4: Error: POSIXFile is not a valid class for application «Appname»
最佳答案
这就在 documentation 中:
使用路径
:
var file = Path('/');
然后您可以在 AppleScript 中允许引用文件的任何地方使用 file
。
虽然我仍然不知道标准添加的 POSIXFile
类型发生了什么(或者我需要如何调用它)。
关于javascript-automation - 我如何在 JXA 中使用 POSIX 路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37765950/
我是一名优秀的程序员,十分优秀!