Xbase++
Xbase++
Azure File Service: Create a Directory
See more Azure Cloud Storage Examples
Sample code to create a directory and then a sub-directory in a share in the Azure File Service.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oRest
LOCAL nBTls
LOCAL nPort
LOCAL nBAutoReconnect
LOCAL oAzAuth
LOCAL cResponseStr
nSuccess := 0
// Azure File Service Example: Create a Directory
// See: https://docs.microsoft.com/en-us/rest/api/storageservices/create-directory
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
oRest := CreateObject("Chilkat.Rest")
// Connect to the Azure Storage Blob Service
nBTls := 1
nPort := 443
nBAutoReconnect := 1
// In this example, the storage account name is "chilkat".
nSuccess := oRest:Connect("chilkat.file.core.windows.net", nPort, nBTls, nBAutoReconnect)
IF (nSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
RETURN
ENDIF
// Provide Azure Cloud credentials for the REST calls.
oAzAuth := CreateObject("Chilkat.AuthAzureStorage")
oAzAuth:AccessKey := "AZURE_ACCESS_KEY"
// The account name used here should match the 1st part of the domain passed in the call to Connect (above).
oAzAuth:Account := "chilkat"
oAzAuth:Scheme := "SharedKey"
oAzAuth:Service := "File"
// This causes the "x-ms-version: 2021-08-06" header to be automatically added.
oAzAuth:XMsVersion := "2021-08-06"
nSuccess := oRest:SetAuthAzureStorage(oAzAuth)
// Note: The application does not need to explicitly set the following
// headers: x-ms-date, Authorization. These headers
// are automatically set by Chilkat.
// Send a PUT request to create a directory named "wildlife" in the "pip" share.
cResponseStr := oRest:FullRequestNoBody("PUT", "/pip/wildlife?restype=directory")
IF (oRest:LastMethodSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
oAzAuth:destroy()
RETURN
ENDIF
// When successful, the Azure File Service will respond with a 201 (Created) response status code,
// with no XML response body. If an error response is returned, there will be an XML response body.
IF (oRest:ResponseStatusCode != 201)
// Examine the request/response to see what happened.
? "response status code = " + Str(oRest:ResponseStatusCode)
? "response status text = " + oRest:ResponseStatusText
? "response header: " + oRest:ResponseHeader
? "response body (if any): " + cResponseStr
? "---"
? "LastRequestStartLine: " + oRest:LastRequestStartLine
? "LastRequestHeader: " + oRest:LastRequestHeader
oRest:destroy()
oAzAuth:destroy()
RETURN
ENDIF
? "Successfully created the wildlife directory"
// Now create the "antarctic" subdirectory under the "wildlife" directory.
cResponseStr := oRest:FullRequestNoBody("PUT", "/pip/wildlife/antarctic?restype=directory")
IF (oRest:LastMethodSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
oAzAuth:destroy()
RETURN
ENDIF
IF (oRest:ResponseStatusCode != 201)
// Examine the request/response to see what happened.
? "response status code = " + Str(oRest:ResponseStatusCode)
? "response status text = " + oRest:ResponseStatusText
? "response header: " + oRest:ResponseHeader
? "response body (if any): " + cResponseStr
? "---"
? "LastRequestStartLine: " + oRest:LastRequestStartLine
? "LastRequestHeader: " + oRest:LastRequestHeader
oRest:destroy()
oAzAuth:destroy()
RETURN
ENDIF
? "Successfully created the wildlife/antarctic directory"
oRest:destroy()
oAzAuth:destroy()