Message 1 of 3
Server path
Not applicable
03-09-2016
07:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hoping this is possible.
I have an external txt file that I'm trying to read in to my addin. It sits in a folder on the companies server.
If I create a property using a mapped drive it will access the text file.
internal static string templateFolder = @"N:\EAE_RevitArch_Custom\";
The problem is, not everyone has this mapped drive so I'm trying to create the property using the server name
internal static string templateFolder = @"\\eckles\EA-FILES\CAD_Content\EAE_RevitArch_Custom\";
I've read several posts that discuss linking to Revit server, etc but I can't find anything that is specific to what I'm trying.
Any help would be greatly appreciated.