Skip to main content
Participant
January 23, 2020
Question

Adobe sdk customize file save location

  • January 23, 2020
  • 1 reply
  • 610 views

Developing a site using adobe sdk to enable annotations and other features on a pdf by using the mentioned link https://documentcloud.adobe.com/view-sdk-demo/index.html . But on clicking on save button the file is saved at default browser download location. I want to change the save location by programming I went through the documentation using link below https://www.adobe.com/devnet-docs/dcsdk_io/viewSDK/howtos_ui.html#save-a-pdf.  I am encountering issue at the following api level. Any suggestions are greatly appreciated.

adobeDCView.registerCallback(
  AdobeDC.View.Enum.CallbackType.SAVE_API,
  function(metaData, content, options) {...},
  {}
);

 

 
This topic has been closed for replies.

1 reply

Legend
January 23, 2020

Web apps cannot directly write any file on the user's hard disk (with choice of location). That is fundamental and very important.

Participant
May 28, 2020

I want to save the file on a server not on local hard disk