Try your search with a different keyword or use * as a wildcard.
IRoxyFilemanService.cs
using Microsoft.AspNetCore.Http;
namespace Nop.Services.Media.RoxyFileman;
///
/// RoxyFileman service interface
///
public partial interface IRoxyFilemanService
{
#region Configuration
///
/// Initial service configuration
///
/// The base path for the current request
/// A task that represents the asynchronous operation
Task ConfigureAsync(string pathBase);
#endregion
#region Directories
///
/// Copy the directory
///
/// Path to the source directory
/// Path to the destination directory
void CopyDirectory(string sourcePath, string destinationPath);
///
/// Create the new directory
///
/// Path to the parent directory
/// Name of the new directory
void CreateDirectory(string parentDirectoryPath, string name);
///
/// Delete the directory
///
/// Path to the directory
void DeleteDirectory(string path);
///
/// Download the directory from the server as a zip archive
///
/// Path to the directory
byte[] DownloadDirectory(string path);
///
/// Get all available directories as a directory tree
///
/// Type of the file
/// List of directories
IEnumerable