Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the UNC path to a folder on my local computer, and how can I access it? I have tried: 1. Security for the folder -- set to Everyone Full Control (for now!) 2. Sharing permissions -- set to Everyone Full Control (for now!)

I can see the folder in \, but can't go in ( is not accessible.) Error message: "You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access pernmissions. The network location cannot be reached. For information about network troubleshooting, see Windows Help."

My computer is not connected to a network.

share|improve this question

2 Answers

If you're going to access your local computer (or any computer) using UNC, you'll need to setup a share. If you haven't already setup a share, you could use the default administrative shares. Example:

\\localhost\c$\my_dir

... accesses a folder called "my_dir" via UNC on your C: drive. By default all the hard drives on your machine are shared with hidden shares like c$, d$, etc.

share|improve this answer
Thanks for your reply William. Does that only work if you are a local administrator? I get 'Windows cannot find '\\localhost\c$\SSRSFileShare'. Check the spelling and try again, or try searching for the item by clicking the Start button and then clicking Search'. I am a 'Debugger User'. (=power user?) – xt_20 May 10 '10 at 1:13
1  
\\localhost and \\127.0.0.1 are exactly the same. I suspect that if \\localhost didn't work it was because the MS Loopback adapter wasn't installed. Either should work for you equally well. – William Leara May 11 '10 at 15:33
up vote 0 down vote accepted

Resolved. I had to create a local administrator, then add a Microsoft Loopback adapter (http://support.microsoft.com/kb/839013), then reference the location as \127.0.0.1\SSRSFileShare

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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