Send shortcut "link" of selected item to a specific folder
Posted: 12 May 2023 18:27
Hi,
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:
How do I modify it to make it create the shortcut in another folder?
Thanks.
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.