I want to get a window when I want to download a plot to pdf, where I can choose the location of the downloaded plot. Here is my code on the server side:
output$export = downloadHandler(
filename = function() {"plots.pdf"},
content = function(file) {
ggsave(file="Analyse.pdf", width=11, height=8.5)
}
Now it instantly downloads the file to my working directory but I would like to have a window where I can choose the download location. Maybe it is a silly question but I did not have any success yet by finding a solution on the web.
I hope you guys can help me out!