Check out 10 Ways To Get a File Path On a Mac at YouTube for closed captioning and more options.
10 Ways To Get a File Path On a Mac
Comments: 2 Responses to “10 Ways To Get a File Path On a Mac”
Comments Closed.
Check out 10 Ways To Get a File Path On a Mac at YouTube for closed captioning and more options.
There was so much info packed into this post I had to from YouTube to get the transcript. I want to share a secret about Gary... He has AppleJuice in his veins... that's why he knows so much. ❤️🍎
I use a Quick Service like this but it adds "file://" to the beginning. This creates a clickable link to the file, paste in Reminders, Pages, Calendar notes etc. You need
1. "Run JavaScript"
function run(input, parameters) {
input = "file://" + input;
input=input.replace(/ /g,"%20");
return input;
}
2. Then "Copy to Clipboard. "
The links won't work across machines with different User account names. Using "~/" isn't interpreted. :-/