0
devteam created
Dear support team,
I'm using File System Provider, and i want to save file in another server.
Please tell me how to do that.
-
ABP Framework version: v4.2.2
-
UI type: Angular
-
DB provider: EF Core
-
Tiered (MVC) or Identity Server Separated (Angular): no
-
Exception message and stack trace:
-
Steps to reproduce the issue:
1 Answer(s)
-
0
Hi,
You can create a network shared folder.
example:
Configure<AbpBlobStoringOptions>(options => { options.Containers.ConfigureDefault(container => { container.UseFileSystem(fileSystem => { fileSystem.BasePath = "@"\\server\\shared\\my-files"; }); }); });