Skip to content Skip to sidebar Skip to footer

How To Show File Path In ?

I tried but not working. How to fix?

Solution 1:

The file input cannot be prepopulated by the webpage.

This is to avoid situations such as:

<inputtype="file"
  value="path-to-standard-location-for-quicken-data-files"
  style="display: none">

Solution 2:

I am afraid that for security reasons this is not possible. The browser will dictate how the file input field will be handled and only the user can change the value by clicking on the Browse button.

From the W3C specification:

input type="file": Creates a file select control. User agents may use the value of the value attribute as the initial file name.

Solution 3:

As you don't know anything about the file structure on the users end, you cannot predefine the file to pick. And it would be pretty insecure when you could just make the <input /> hidden and send it with a form...

Post a Comment for "How To Show File Path In ?"