リンクをクリップボードにコピー
コピー完了
例えばなんですが、デスクトップに置いてあるファイルの一覧をScriptでalertできますでしょうか?
可能であればCS6.0でも使えるものが知りたいです。
リンクをクリップボードにコピー
コピー完了
Totally doable. Here's one way to do that:
var path = '~/Desktop';
var folderObject = new Folder(path);
var folderItems = folderObject.getFiles();
alert(folderItems.join('\n'));
You can read more about Folder object here:http://estk.aenhancers.com/3%20-%20File%20System%20Access/folder-object.html
リンクをクリップボードにコピー
コピー完了