Skip to content

Commit a32e522

Browse files
authored
Merge pull request #152 from umbraco-community/feature/issue-151
Set CanAddPhysical to false
2 parents 62f85fc + a410f5f commit a32e522

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/UmbracoFileSystemProviders.Azure/AzureBlobFileSystem.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,11 @@ public AzureBlobFileSystem(string alias)
159159
/// </summary>
160160
public AzureFileSystem FileSystem { get; }
161161

162-
public bool CanAddPhysical => throw new NotImplementedException();
162+
/// <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;
163167

164168
/// <summary>
165169
/// Adds a file to the file system.

0 commit comments

Comments
 (0)