I want to remove the SaveAs dialog from CefSharp and want the file to save directly to the specified location.Nothing seems to work out please help public void OnBeforeDownload(IWebBrowser chromiumWebBrowser, IBrowser browser, DownloadItem downloadItem, IBeforeDownloadCallback callback) { OnBeforeDownloadFired?.Invoke(this, downloadItem);
if (!callback.IsDisposed)
{
using (callback)
{
callback.Continue("C:/Users/Wissensquelle/Downloads/bhavansh.txt", showDialog: false);
}
}
}