0

I have set up the HelloSign API download method so that after I sign my document, it will automatically download into my folder. However, I am facing a problem where it does not let me download it into the folder.

I found out that there is an issue with the Windows 10 folder's read-only feature. I tried to disable it by following online tutorials but all did not work for me.

Here's an image of the error I got:

image

Here's my back-end code:

client.DownloadSignatureRequestFiles(reqid, @"C:\Users\Bryan\Documents\PDFFolder", SignatureRequest.FileType.PDF);

mkl
  • 90,588
  • 15
  • 125
  • 265
John Arc
  • 173
  • 1
  • 17

1 Answers1

1

You need to specify the name of a file by which you are going to save the file and make sure you have R & W access to the specified folder, in your case it is PDFFolder

GitHub Documentation

Try this:

client.DownloadSignatureRequestFiles(reqid, @"C:\Users\Bryan\Documents\PDFFolder\output.pdf", SignatureRequest.FileType.PDF);
Prashant Pimpale
  • 10,349
  • 9
  • 44
  • 84