ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Web.Viewer Assembly / GrapeCity.ActiveReports.Aspnetcore.Viewer Namespace / ReportingSettings Class / UseFileStore Method
A System.String value indicating the base directory for the file store.
Example

In This Topic
    UseFileStore Method (ReportingSettings)
    In This Topic
    Uses the built-in file store for report files and resources.
    Syntax
    'Declaration
     
    Public Sub UseFileStore( _
       ByVal rootPath As DirectoryInfo _
    ) 
    public void UseFileStore( 
       DirectoryInfo rootPath
    )

    Parameters

    rootPath
    A System.String value indicating the base directory for the file store.
    Example
    app.UseReporting(settings =>
    {
    	settings.UseFileStore(new DirectoryInfo("/path/to/dir"));
    });
    See Also