Can you write folder actions with javascript (jxa)?

前端 未结 2 1178
面向向阳花
面向向阳花 2021-01-24 01:49

I am looking for a direct translation of AppleScript\'s

on adding folder items to this_folder

but I can\'t seem to find it anywhere, neither t

2条回答
  •  深忆病人
    2021-01-24 02:20

    Using Automator I could build a Folder Action workflow to display the path of a file moved to a folder using only JavaScript:

    function run(input, parameters) {
       var app = Application.currentApplication();
       app.includeStandardAdditions = true;
       var text = "FileName = " + input[0];
       var options = { };
       app.displayAlert(text, options);
    
       return input;
    }
    

    I hope that could help.

提交回复
热议问题