Offers codes to facilitate the manipulation of files and directories in projects produced by LSCode.
- .Net Standard 2.1
- Directory manipulation
- File manipulation
- FTP functionalities
- Magick.NET-Q8-AnyCPU
- Microsoft.Extensions.DependencyInjection.Abstractions
- Microsoft.NET.Test.Sdk
- NUnit
- NUnit3TestAdapter
- NUnit.Analyzers
- coverlet.collector
- Click on the following link and see here some ways to install: click here.
First install the package, for example:
<PackageReference Include="LSCode.Files" Version="x.x.x" />
In the file where the services used in the application are added (Startup.cs
, Program.cs
or others), you must import the following namespace:
using LSCode.Files.Directories.Extensions;
Then add the following line to register the service:
services.AddDirectoryService();
//or
builder.Services.AddDirectoryService();
In the file that you want to use the service, you must import the following namespace:
using LSCode.Files.Directories.Interfaces;
Then add the interface in the constructor:
using LSCode.Files.Directories.Interfaces;
namespace MyNamespace
{
public class MyClass
{
private readonly IDirectoryService _service;
public MyClass(IDirectoryService service) => _service = service;
}
}
The following link contains the list of functionalities present in the service.
Each method has a description of itself, its parameters and return:
Link: click here.
First install the package, for example:
<PackageReference Include="LSCode.Files" Version="x.x.x" />
In the file where the services used in the application are added (Startup.cs
, Program.cs
or others), you must import the following namespace:
using LSCode.Files.Files.Extensions;
Then add the following line to register the service:
services.AddFileService();
//or
builder.Services.AddFileService();
In the file that you want to use the service, you must import the following namespace:
using LSCode.Files.Files.Interfaces;
Then add the interface in the constructor:
using LSCode.Files.Files.Interfaces;
namespace MyNamespace
{
public class MyClass
{
private readonly IFileService _service;
public MyClass(IFileService service) => _service = service;
}
}
The following link contains the list of functionalities present in the service.
Each method has a description of itself, its parameters and return:
Link: click here.
First install the package, for example:
<PackageReference Include="LSCode.Files" Version="x.x.x" />
In the file where the services used in the application are added (Startup.cs
, Program.cs
or others), you must import the following namespace:
using LSCode.Files.FTP.Extensions;
Then add the following line to register the service:
services.AddFTPService("user", "password");
//or
builder.Services.AddFTPService("user", "password");
In the file that you want to use the service, you must import the following namespace:
using LSCode.Files.FTP.Interfaces;
Then add the interface in the constructor:
using LSCode.Files.FTP.Interfaces;
namespace MyNamespace
{
public class MyClass
{
private readonly IFTPService _service;
public MyClass(IFTPService service) => _service = service;
}
}
The following link contains the list of functionalities present in the service.
Each method has a description of itself, its parameters and return:
Link: click here.