Questo sito potrebbe offrire funzionalità limitate durante le operazioni di manutenzione per migliorare l'esperienza utente. Se un articolo non risolve il tuo problema e vuoi richiedere supporto, la nostra comunità di supporto è pronta ad aiutarti tramite @FirefoxSupport su Twitter e /r/firefox su Reddit.

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Open C:\folder\ link as file://C:\folder\

  • 4 risposte
  • 5 hanno questo problema
  • 4 visualizzazioni
  • Ultima risposta di asq

more options

I want to have links (on my local html page) written like C:\folder\ I want that they open as file://C:\folder\

How is it possible to do? Should I define new "c" protocol or something?

Firefox 27, Windows 7 Thank you!

I want to have links (on my local html page) written like C:\folder\ I want that they open as file://C:\folder\ How is it possible to do? Should I define new "c" protocol or something? Firefox 27, Windows 7 Thank you!

Modificato da asq il

Tutte le risposte (4)

more options

Two ways you can define it in HTML Page

  1. Use the path as "file:///C:/Users/Hello.html"
  2. Use both the files in same folder and mention only the file name "Hello.html"
more options

iamjayakumars, thank you! But if I want to use the path as "C:/Users/Hello.html" and "C:/Users/" e.g. to open it in Windows File Explorer from Firefox link, how should I do it? Can I define a new protocol, or I need to write JavaScript to add "file:///" in front of such address?

more options

To open a local file you must use "file:///"

more options

Thank you, iamjayakumars! Can I hide "file:///" from end-user? It's more convenient (for example, in documentation like dokuwiki) if user just puts a link "C:/Users/" in a page and it works. It's harder for users to add every time "file:///". So can it be prepended automatically or redefined as a new protocol? Sorry for the newbie question. Thank you in advance.