We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62f85fc + a410f5f commit a32e522Copy full SHA for a32e522
src/UmbracoFileSystemProviders.Azure/AzureBlobFileSystem.cs
@@ -159,7 +159,11 @@ public AzureBlobFileSystem(string alias)
159
/// </summary>
160
public AzureFileSystem FileSystem { get; }
161
162
- public bool CanAddPhysical => throw new NotImplementedException();
+ /// <summary>
163
+ /// Indicates whether the filesystem can add/copy a file that is on local disk, in a fast and efficient way.
164
+ /// We can't so always returns false.
165
+ /// </summary>
166
+ public bool CanAddPhysical => false;
167
168
/// <summary>
169
/// Adds a file to the file system.
0 commit comments