Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How to access the local filesystem from a webpage in Firefox

  • 4 답장
  • 1 이 문제를 만남
  • 2 보기
  • 최종 답변자: mark_1

more options

We are wanting to move our intranet users from IE to Firefox but we have some places where we want to be able to open local (or network) files or directories. I have found quite a few references in Stack Overflow and otherwise but most of them are quite old and none of the old techniques seem to work with the current version of Firefox Quantum (v68 at the time of writing).

The Local Filesystem Links extension seems to work well but I would rather not rely on an extension, particularly one that also requires installation of an addon module, if possible. Can anybody tell me how to access the local filesystem from a webpage in Firefox by just changing settings in about: config? Or is this just not possible anymore?

I am hoping to get something like <a href="file://///networkdrive/directory"> working if possible

We are wanting to move our intranet users from IE to Firefox but we have some places where we want to be able to open local (or network) files or directories. I have found quite a few references in Stack Overflow and otherwise but most of them are quite old and none of the old techniques seem to work with the current version of Firefox Quantum (v68 at the time of writing). The Local Filesystem Links extension seems to work well but I would rather not rely on an extension, particularly one that also requires installation of an addon module, if possible. Can anybody tell me how to access the local filesystem from a webpage in Firefox by just changing settings in about: config? Or is this just not possible anymore? I am hoping to get something like <a href="file://///networkdrive/directory"> working if possible

선택된 해결법

Your timing is excellent, there is now a Policy/GPO way to do this as of Firefox 68. No extension required. See:


There also is an old school method which is backwards compatible and doesn't require an extension. It involves adding some lines to an optional user.js file (in the user's current Firefox profile), but which might be more conveniently deployed through an Autoconfig file (in the program folder). Those are both files Firefox reads at startup.

// == FILE URI LINK POLICY (checkloaduri) ==

// Create policy enabling http: or https: pages to link to file:
user_pref("capability.policy.policynames", "filelinks");
user_pref("capability.policy.filelinks.checkloaduri.enabled", "allAccess");

// Sites to which the policy applies (protocol://hostname protocol://hostname)
user_pref("capability.policy.filelinks.sites", "http://example.com http://intranet");
 

More info on Autoconfig: Customizing Firefox Using AutoConfig

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (4)

more options

선택된 해결법

Your timing is excellent, there is now a Policy/GPO way to do this as of Firefox 68. No extension required. See:


There also is an old school method which is backwards compatible and doesn't require an extension. It involves adding some lines to an optional user.js file (in the user's current Firefox profile), but which might be more conveniently deployed through an Autoconfig file (in the program folder). Those are both files Firefox reads at startup.

// == FILE URI LINK POLICY (checkloaduri) ==

// Create policy enabling http: or https: pages to link to file:
user_pref("capability.policy.policynames", "filelinks");
user_pref("capability.policy.filelinks.checkloaduri.enabled", "allAccess");

// Sites to which the policy applies (protocol://hostname protocol://hostname)
user_pref("capability.policy.filelinks.sites", "http://example.com http://intranet");
 

More info on Autoconfig: Customizing Firefox Using AutoConfig

more options

Thanks for that, I tried the old school method on my local machine and it worked perfectly, I will pass the policy method on to our IT team so they can apply it business-wide. I raised the same question on Stack Overflow, do you mind if I post your answer there?

more options

Hi mark_1, please feel free to share the info. And let us know how the new policy method works out.

more options

Our IT team have added the policy and it is working for us but I had to do the following to get the directories to open in Windows Explorer rather than in a webpage within Firefox.

In about:config I added 2 preferences

network.protocol-handler.expose.file – set this to false network.protocol-handler.external.file – set this to true

Thanks very much for your help