Accessing Azure File Shares in different ways

Kelvin Thom 6 Reputation points
2020-06-16T11:57:58.4+00:00

I have some questions about Azure File Share. Is it possible for my end users to access the file share via a browser? For example, can they goto a site, login and then see the file shares I have setup? Is there a mobile app on Android/IOS my users can download to access the Azure file share? Can my users share the files and/or folders that are in my file share? Let's say they want to share a file with an external user who is not on my tenant, is it possible to share the file or folder so the external client can access that file or folder? Thanks...

Azure Files
Azure Files
An Azure service that offers file shares in the cloud.
1,420 questions
{count} vote

3 answers

Sort by: Most helpful
  1. Ryan Hill 30,281 Reputation points Microsoft Employee Moderator
    2020-06-24T00:00:12.55+00:00

    Hi @Kelvin Thom ,

    There isn't a native solution that will allow users to access your Azure File Share outside of what's previously been mentioned. The reason being is that File Share is an SMB protocol implementation that can't be accessed over HTTP, like you can with blobs. If you want to provide a UI access to Azure File Share, you can use these examples as guidance for implementing a custom solution.

    2 people found this answer helpful.

  2. T. Kujala 8,761 Reputation points
    2020-06-16T12:18:17.51+00:00

    Hi @KelvinThom-8975,

    Here are the ways to access Azure Files.

    What are different ways to access files in Azure Files?

    You can mount the file share on your local machine by using the SMB 3.0 protocol, or you can use tools like Storage Explorer to access files in your file share. From your application, you can use storage client libraries, REST APIs, PowerShell, or Azure CLI to access your files in the Azure file share.

    More information here:

    https://learn.microsoft.com/en-us/azure/storage/files/storage-files-faq

    A file share can be accessed via browser if the application uses REST APIs.

    1 person found this answer helpful.

  3. Kelvin Thom 6 Reputation points
    2020-06-17T11:05:18.21+00:00

    Bump. I guess there is no native Azure mobile app end users can use to access the file share. I've read through the FAQ as well as other articles.

    When I tried one of the fileshare urls, I get the following

    <Error>
    <Code>InvalidHeaderValue</Code>
    <Message>The value for one of the HTTP headers is not in the correct format. RequestId:########-####-####-####-############ Time:2020-06-17T11:01:35.8791313Z</Message>
    <HeaderName>x-ms-version</HeaderName>
    <HeaderValue/>
    </Error>

    So, maybe there is a different format I'm supposed to be using instead of the url provided.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.