-2

I have tried FileUpload, it can select only files and also I cannot get full path of the file when I try with browsers other than Internet Explorer. I think I need an alternative for FolderBrowserDialog for asp.net.

  • 3
    You can't get the full-path of the client-file, only the filename. Why do you need it? – Tim Schmelter Nov 29 '16 at 11:57
  • Possible duplicate of [Does HTML5 allow drag-drop upload of folders or a folder tree?](http://stackoverflow.com/questions/3590058/does-html5-allow-drag-drop-upload-of-folders-or-a-folder-tree) – Josh Lee Nov 29 '16 at 18:55

1 Answers1

1

You can't get the full filepath from a file being upload, because it's on the client's computer, the browser has no access to this information, for security.

Stormhashe
  • 704
  • 6
  • 16