Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the local directory path where reports are stored.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
public virtual void SetOutputDirectory(
_FsrmReportGenerationContext context,
string Path
)
public:
virtual void SetOutputDirectory(
_FsrmReportGenerationContext context,
String^ Path
)
abstract SetOutputDirectory :
context:_FsrmReportGenerationContext *
Path:string -> unit
override SetOutputDirectory :
context:_FsrmReportGenerationContext *
Path:string -> unit
Public Overridable Sub SetOutputDirectory (
context As _FsrmReportGenerationContext,
Path As String
)
Parameters
context
Type: Microsoft.Storage._FsrmReportGenerationContextThe report context (for example, if the report is scheduled or runs on demand). For possible values, see the _FsrmReportGenerationContext enumeration.
Path
Type: System.StringThe full path to the local directory where the reports are stored. The path can contain environment variables. The path is limited to 150 characters.
Implements
IFsrmReportManager.SetOutputDirectory(_FsrmReportGenerationContext, String)
Remarks
The reports are stored in the following folders under the given path.
Context |
Folder |
|---|---|
FsrmReportGenerationContext_ScheduledReport |
Scheduled |
FsrmReportGenerationContext_InteractiveReport |
Interactive |
FsrmReportGenerationContext_IncidentReport |
Incident |
See Also
FsrmReportManager
FsrmReportManagerClass Class
Microsoft.Storage Namespace
Return to top