Azure - ADlsError / WebHDFS error while deleting ADLS file

↘锁芯ラ 提交于 2019-11-28 14:40:01

If we don't assgin permission for our file then we will have no permission to operate the file. If it is that case, please refer to my demo. The following is my detail steps and sample code. It works correctly for me.

Assign permission for the file on the Azure portal.

1.In our Data Lake Store account blade, click Data Explorer

2.click the file or folder for which you want to provide access to the Azure AD application, and then click Access

3.Add "assign permission" ,in Select User or Group blade, look for the Azure Active Directory application you created earlier.

4.select appropriate permission


5.Check the file has got permission

Demo Code:

 var applicationId = "Application Id";
 var secretKey = "Secret Key";
 var tenantId = "Tenant Id";
 var adlsAccountName = "ADLS Account Name";
 var creds = ApplicationTokenProvider.LoginSilentAsync(tenantId, applicationId, secretKey).Result;
 var adlsFileSystemClient = new DataLakeStoreFileSystemManagementClient(creds);
 var status = adlsFileSystemClient.FileSystem.GetFileStatus(adlsAccountName, "/mytempdir/myinputfile.txt");
 var deletResult = adlsFileSystemClient.FileSystem.Delete(adlsAccountName, "/mytempdir/myinputfile.txt");

Delete file

Get file status

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!