I need a script to send a shortcut of the selected file/files to a specific folder.
This script creates a shortcut of the current selected file in the same folder:
Code: Select all
foreach($file, "<get SelectedItemsPathNames |>") {
if (exists($file) == 1) {
new(getpathcomponent($file, "base"), "link", $file);
}
}
Thanks.