New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
/*File path -Models/AzureFileProvider.cs*/
protected async Task<FileManagerResponse> GetFilesAsync(string path, string filter, FileManagerDirectoryContent[] selectedItems)
{
...
...
for(var i=0;i<details.Count;i++)
{
if(details[i].Name == "About.txt")
{
details.RemoveAt(i);
}
}
readResponse.Files = details;
return readResponse;
} |