Skip to content

Instantly share code, notes, and snippets.

@melmatsuoka
Last active August 29, 2015 14:09
Show Gist options
  • Save melmatsuoka/9662231b9a5e24a82a78 to your computer and use it in GitHub Desktop.
Save melmatsuoka/9662231b9a5e24a82a78 to your computer and use it in GitHub Desktop.
Get selected files in active Path Finder window
tell application "Path Finder"
set theSelection to selection
set selectionList to theSelection as list -- list of fsItems (fsFiles and fsFolders)
set LF to character id 10
set AppleScript's text item delimiters to LF
if theSelection is not missing value then
set fileList to {}
repeat with aFile in selectionList
set end of fileList to POSIX path of aFile
end repeat
return fileList as string
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment