拿起你的新盾牌,我要给你洒一些。
我正在尝试让 Photoshop CS4 使用 AppScript+Python 打开一个包含 JPEG 图像的文件夹,在 BASH 中可以这样描述:
#!/bin/bash
for F in `ls ~/Desktop/test`; do
open -a "Adobe Photoshop CS4" $F
# proceed to mutilate the image appearance
done
我在ls ~/Desktop/test
舞台上失败了。我真的很想请 Finder 为我列出一个文件夹,然后一次将结果输入 Photoshop 进行处理。
与 Adobe 的 ExtendScript 桥等效的 JavaScript 将是:
#target photoshop
var folder = Folder("~/Desktop/test");
var images = folder.getFiles();
for (var i=0; i < images.length; i++) {
if (images[i] instanceof File && images[i].hidden == false) {
var doc = app.open(images[i]);
// do something to the image here
doc.close(SaveOptions.DONOTSAVECHANGES);
}
}
我可以给我一个document_file
像 x = app('Finder').home.folders['Desktop']().folders['test']().items()[0]
尝试app('Adobe Photoshop CS4').open(x)
这个对象会抛出一个OSERROR: 1230
, 和一个MESSAGE: File/Folder expected
.
(呃,哦,这document_file
实际上响应URL()
,所以File.makewithurl(x.URL())
可以输入open()
)
嗯,已经解决了这个问题,有没有办法通过向 Finder 询问由UNIX 路径指定的给定文件夹中的文件列表来实际做到这一点?