File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -208,8 +208,7 @@ Default mode connection:
208208// Startup.cs
209209services .AddFileSystemStorageAsDefault (opt =>
210210{
211- opt .CommonPath = Path .Combine (Environment .CurrentDirectory , " {YOUR_BUCKET_NAME}" );
212- opt .Path = " {YOUR_BUCKET_NAME}" ;
211+ opt .BaseFolder = Path .Combine (Environment .CurrentDirectory , " {YOUR_BUCKET_NAME}" );
213212});
214213```
215214Using in default mode:
@@ -230,8 +229,7 @@ Provider-specific mode connection:
230229// Startup.cs
231230services .AddFileSystemStorage (new FileSystemStorageOptions
232231{
233- CommonPath = Path .Combine (Environment .CurrentDirectory , " {YOUR_BUCKET_NAME}" ),
234- Path = " {YOUR_BUCKET_NAME}"
232+ BaseFolder = Path .Combine (Environment .CurrentDirectory , " {YOUR_BUCKET_NAME}" ),
235233});
236234```
237235Using in provider-specific mode
You can’t perform that action at this time.
0 commit comments