Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhuvaneswarin authored Mar 20, 2020
2 parents a7f07a2 + c7d002f commit 1c584ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Models/AzureFileProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ protected async Task CreateFolderAsync(string path, string name, IEnumerable<obj
BlobResultSegment items = await AsyncReadCall(path, "Read");
string checkName = name.Contains(" ") ? name.Replace(" ", "%20") : name;
if (await IsFolderExists(path + name) || (items.Results.Where(x => x.Uri.Segments.Last().Replace("/", "").ToLower() == checkName.ToLower()).Select(i => i).ToArray().Length > 0))
{
this.isFolderAvailable = true;
{
this.isFolderAvailable = true;
}
else
{
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ To do so, open the command prompt and run the below commands one after the other
```
git clone https://github.com/ej2-azure-aspcore-file-provider ej2-azure-aspcore-file-provider
cd ej2-azure-aspcore-file-provider
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
<RootNamespace>Syncfusion.EJ2.FileManager.AzureFileProvider</RootNamespace>
<AssemblyName>Syncfusion.EJ2.FileManager.AzureFileProvider</AssemblyName>
<AssemblyVersion>17.4.0.40</AssemblyVersion>
<FileVersion>17.4.0.40</FileVersion>
<Version>17.4.0.40</Version>
<AssemblyVersion>17.4.0.43</AssemblyVersion>
<FileVersion>17.4.0.43</FileVersion>
<Version>17.4.0.43</Version>
<Product>Syncfusion file manager Azure file provider for Essential JS 2</Product>
<Company>Syncfusion Inc.</Company>
<PackageId>Syncfusion.EJ2.FileManager.AzureFileProvider</PackageId>
Expand All @@ -26,7 +26,7 @@
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.3" />
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="17.4.0.40"/>
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="*" />
</ItemGroup>

</Project>

0 comments on commit 1c584ed

Please sign in to comment.