Link To Files On Shared Storage

Here at my day job, we use a shared NAS for our file storage. Telling people where they can find files was a huge pain, especially when giving one of our project managers a file path for a deliverable so they could get it to a client. We as editors spend all day in our file structure, but they don’t. Typing the file path out was a pain, so I eventually resorted to taking a screenshot from the Finder’s path bar and attaching that to the email like this:

Path Bar

 

Well, today I was checking out the trial of TotalFinder on the recommendation of several of my #postchat Twitter buddies. It has a great feature where you can copy the file path of anything in the finder in a URL format, so you can easily make clickable links to files. Very cool.

Copy URL

 

Now, I use Automator a ton, for everything from automating the making of our approval .html files using template code and a CDN link, to making file names web-safe by removing problematic characters, to launching several apps and windows as once for a specific processes. After seeing this feature in TotalFinder, I thought, “There has to be a way to do this with Automator.” The rest of my team without TotalFinder, as well as myself if I end up not liking it enough to purchase it, would definitely benefit from a feature like this. Well, a little bit of Google searching got me an answer!

Here’s how you do it. First, open Automator and create a new service:

Automator Service

 

Next, set the service’s input to: “Service receives selected files or folders in Finder. This tells the service when it’s available (i.e. this keeps it from showing up when you select text in an email, for example).

Files and Folders

 

Finder

 

Next, add a Copy to Clipboard action. This copies the file path to the clipboard in a normal colony (:) delimited file path format:

Copy to Clipboard

 

After that, add a Run Shell Script action:

Run Shell Script

 

Replace the “cat” in the text box with *exactly* the following (originally found here):

sed -e 's/:/\//g' -e 's/\ /%20/g' -e 's/^/file:\/\//g' | pbcopy

This code changes the mac file path to a URL type format that can be clicked on like a link:

Shell Code

 

For the last step, just save it with a name that makes sense:

Save As

 

If you followed these steps, you should see it on the bottom of the contextual menu when you right click a file or folder in the Finder:

Copy File Path

 

What you’ll be able to paste after selecting it from the contextual menu is a link formatted like this, that you can email, message, text, etc. to anyone who connects to the same shared storage:

File Path

 

When clicked (assuming the recipient is on the same shared storage), it opens a new Finder window at the specified path with the specified file or folder selected! I know this will make a big difference to our project managers, and a happy PM makes a happy team :)

4 Comments
  • Reply Nicolas Duchon

    12/03/2013, 1:09 pm

    That’s why I really love OSX : unix tools under the hood. I’m constantly learning new tricks with the terminal, bash scripts and the various unix tools, but I could not have figured how to obtain this with sed myself (yet). And I wasn’t even aware that you could easily get bash scripting into aqua through automator.

    Thank you a LOT for this very nice idea and for the eye opening.

  • Reply Darius

    04/14/2014, 9:50 am

    I’ve always just brought up the info window to get the selectable file path, but this is an awesome method!

  • Reply Chris Bunney

    12/14/2017, 3:15 pm

    We just shot on the RED Epic Weapon and had issues with “spanned clips”. We ended up stitching longer shots together in video post production. Not fun. Do you know if they have fixed this?
    Thanks!
    Capitola Media LLC
    San Francisco
    http://capitolamedia.com

Write a comment to Nicolas Duchon Cancel Comment