AzureStorage.FileShare.directory_exists

You're seeing just the function directory_exists, go back to AzureStorage.FileShare module for more information.
Link to this function

directory_exists(context, share, path)

View Source

Specs

directory_exists(AzureStorage.Request.Context.t(), String.t(), String.t()) ::
  {:ok, String.t()} | {:error, String.t()}

Check if directories exist.

context |> AzureStorage.FileShare.directory_exists("testfileshare", "exist-dir")
{:ok, ""}

context |> AzureStorage.FileShare.directory_exists("testfileshare", "not-exist")
{:error, "ResourceNotFound"}