Class DirectoryOperationsService
Provides services for performing operations on directories.
Inheritance
ServiceFactoryEx<DirectoryOperationsService, object, object, object, object, object, object, object, object, object>
DirectoryOperationsService
Inherited Members
Namespace: Coree.NETStandard.Services.DirectoryOperationsManagement
Assembly: Coree.NETStandard.dll
Syntax
public class DirectoryOperationsService : ServiceFactoryEx<DirectoryOperationsService>, IDisposable, IDirectoryOperationsService
Remarks
This class can be used to ensure the existence of directories, potentially logging actions depending on configuration.
Constructors
| Edit this page View SourceDirectoryOperationsService(ILogger<DirectoryOperationsService>?)
Initializes a new instance of the DirectoryOperationsService class.
Declaration
public DirectoryOperationsService(ILogger<DirectoryOperationsService>? logger = null)
Parameters
Type | Name | Description |
---|---|---|
ILogger<DirectoryOperationsService> | logger | Optional. The logger used for logging operations within the service. |
Remarks
If a logger is not provided, logging will not be performed.
Methods
| Edit this page View SourceEnsureDirectory(string)
Ensures that a specified directory exists. If the directory does not exist, it attempts to create it.
Declaration
public bool EnsureDirectory(string directory)
Parameters
Type | Name | Description |
---|---|---|
string | directory | The path of the directory to check and create if necessary. |
Returns
Type | Description |
---|---|
bool | true if the directory exists or was successfully created; false if the creation failed. |
Remarks
This method logs a debug message if the directory creation fails due to an exception.
Examples
bool isDirectoryEnsured = EnsureDirectory(@"C:\path\to\directory");
Console.WriteLine(isDirectoryEnsured);