up vote 4 down vote favorite
1
share [g+] share [fb]

I want to look at some options that will help to manage the size of an Exchange mailbox. There are lots of utilities out there that will extract an attachment from an email and replace it with a file:// URL link.

Now comes the wrinkle - the file:// URL works great on Windows - what is the equivalent on the Mac?

link|improve this question
feedback

2 Answers

Try using file:///URL

You need the extra forward slash to signify the root directory of the drive.

link|improve this answer
Thanks John One other thing to mention: the file will be located on a Windows server, e.g. \\server\user\email\attachment1.pdf – Steve French Feb 5 '10 at 22:02
To access a share, you can use file://///server/user/email/attachment1.pdf (simply append the UNC to file:/// and flip the backslashes), although this does not work from a webpage: bugzilla.mozilla.org/show_bug.cgi?id=62851 – John T Feb 5 '10 at 22:05
feedback

Try using this syntax

smb://FILE PATH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.