Posted 17 December 2019, 7:56 am EST
I need to to find the location of the saved temporary reports because I want to verify if they are existed or not.
Thank you.
Forums Home / ActiveReports / General Discussion
Posted by: sonnguyentruong87 on 17 December 2019, 7:56 am EST
Posted 17 December 2019, 7:56 am EST
I need to to find the location of the saved temporary reports because I want to verify if they are existed or not.
Thank you.
Posted 17 December 2019, 9:30 am EST
Hello,
It will save in ResourcesRootDirectory as you are using the following code in your sample.
public void Configuration(IAppBuilder app)
{
app.UseErrorPage();
app.UseDesigner(config => config.UseFileStore(ResourcesRootDirectory));
app.UseReporting(config => config.UseFileStore(ResourcesRootDirectory));
}
Thanks,
Mohit