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.

Today I saw in a Java application several different approaches to load a file.

  • file:/
  • file://
  • file:///

What is the difference of these three URL beginnings and what is the preferred way of using them?

Thanks a lot Stefan

share|improve this question

2 Answers

up vote 13 down vote accepted
  • file:/ is invalid as far as I know

  • file:// is the prefix for the file protocol

  • file:/// is the prefix for the file protocol, plus a leading / pointing to the root directory of the current drive (On Windows) or the overall root directory (On Linux / Unix).

share|improve this answer
3  
+1 On windows remote drives, the file:// protocol prefix leads to even four slashes: file:////other/mydir/myfile.txt for a file \\other\mydir\myfile.txt (see mindprod.com/jgloss/uri.html). – Chris Lercher Sep 1 '10 at 10:10
1  
@chris_li ahahahaha, hadn't thought of that scenario! That looks just crazy. Great addition. – Pekka 웃 Sep 1 '10 at 10:11

file:/ is invalid, and shouldn't work file:/// is a shorthand for: file://localhost/ file:// is the recommended method

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.