3

I need to open an "Save As" dialog box where the user clicks on a link in the browser. The save as dialog needs to display the client system folder structure (Dialog similar to save as in word, excel, etc)

I did refer some similar question related to it. But often the downloaded file gets save in the Download path set by the client.

I don't want to use ActiveX control and looking to do the same using Javascript

Is it possible to open a "Save as" dialog using javascript and save the download file to that specific path in the local client system.?

If this is not possible, which most of the article has pointed out. They state that its not possible due to security. But they don't clearly point the reason (what is the security problem that would arise by doing so, If there is a restriction to browsers to not perform such operation etc.,)

Trigger Save As dialog similar to the image from browser

Pradeep K
  • 307
  • 6
  • 17

1 Answers1

2

Is it possible to open a "Save as" dialog using javascript and save the download file to that specific path in the local client system.?

No. You can suggest to the browser that it open the dialog, but you cannot tell it where to default to.

If this is not possible, which most of the article has pointed out. They state that its not possible due to security. But they don't clearly point the reason...

Because people don't read things before they click them. So if I give you a link to a file and want to put is on your drive at C:\Windows\System32\blahblah and I set that as the default in the file save dialog, sadly a significant percentage of people are going to just blindly click Save without thinking through the implications. Modern operating systems (and old *nix ones) try to protect users from themselves by making certain operations privileged, but still, at least on Windows that's usually just another Yes/No popup users frequently say Yes to without thinking.

So best if the browser picks the user's standard document folder, or one they've specifically, intentionally configured, rather than let the web page say where to default to.

T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875
  • Crowder., Thanks for the answer explains the reason. Do you know any article that explain it .. Is part of an assignment I am doing, But in order to note it. Some articles to justify the statement would allow me to get a deeper understanding. Do you know where I can refer to on this.? – Pradeep K Mar 23 '17 at 06:56
  • @PradeepK: I don't know of one off-hand, no. (Also, just so you know, questions asking for links to articles are off-topic for Stack Overflow, so posting a question asking that wouldn't be best.) – T.J. Crowder Mar 23 '17 at 06:59