鸿蒙NEXT开发实战往期必看文章:
一分钟了解”纯血版!鸿蒙HarmonyOS Next应用开发!
“非常详细的” 鸿蒙HarmonyOS Next应用开发学习路线!(从零基础入门到精通)
HarmonyOS NEXT应用开发案例实践总结合(持续更新......)
HarmonyOS NEXT应用开发性能优化实践总结(持续更新......)
场景介绍
FileUri提供了关于文件URI的基本操作,对外提供了URI与沙箱路径之间互相转换、远端URI判定、获取URI所在目录路径的URI等接口,方便用户将文件URI与沙箱路径相互转换。
基本概念
结果集:满足使用场景正确的路径或者URI。
约束限制
-
转换或者判断URI类型之前必须保证传入的参数正确有效。
-
为保证数据的准确性,在转换或者判断过程中只允许处理一个对象。
接口说明
接口的详细说明,请参考API参考
接口名称 | 描述 |
---|---|
FileManagement_ErrCode OH_FileUri_GetUriFromPath(const char *path, unsigned int length, char **result) | 通过传入的路径PATH获取到对应的URI。 |
FileManagement_ErrCode OH_FileUri_GetPathFromUri(const char *uri, unsigned int length, char **result) | 通过传入的URI获取到对应的沙箱路径PATH。 |
FileManagement_ErrCode OH_FileUri_GetFullDirectoryUri(const char *uri, unsigned int length, char **result) | 获取所在路径URI,文件获取所在路径URI,如果URI指向目录则获取当前路径URI。 |
bool OH_FileUri_IsValidUri(const char *uri, unsigned int length) | 判断传人的URI的格式是否正确。 |
FileManagement_ErrCode OH_FileUri_GetFileName(const char *uri, unsigned int length, char **result) | 通过传入的URI获取到对应的文件名称。 |
开发步骤
在CMake脚本中链接动态库
CMakeLists.txt中添加以下lib。
target_link_libraries(sample PUBLIC libohfileuri.so)
添加头文件
#include <filemanagement/file_uri/oh_file_uri.h>
-
调用OH_FileUri_GetUriFromPath接口,在接口中malloc的内存需要在使用完后释放,因此需要free对应的内存。示例代码如下所示:
#include <cstring> void OH_FileUri_GetUriFromPathExample() { char *path = "/data/storage/el2/base/files/test.txt"; unsigned int length = strlen(path); char *uriResult = NULL; FileManagement_ErrCode ret = OH_FileUri_GetUriFromPath(path, length ,&uriResult); if (ret == 0 && uriResult !=NULL) { printf("pathUri=%s", uriResult); // 应用a获取到的URI为:file://com.example.demo/data/storage/el2/base/files/test.txt } if (uriResult != NULL) { free(uriResult); } }
-
调用OH_FileUri_GetPathFromUri通过URi转成对应的PATH,在接口中malloc的内存需要在使用完后释放,因此需要free对应的内存。示例代码如下所示:
#include <cstring> void OH_FileUri_GetPathFromUriExample() { char *uri = "file://com.example.demo/data/storage/el2/base/files/test.txt"; unsigned int length = strlen(uri); char *pathResult = NULL; FileManagement_ErrCode ret = OH_FileUri_GetPathFromUri(uri, length, &pathResult); if (ret == 0 && pathResult != NULL) { printf("pathResult=%s", pathResult); // PathResult值为:/data/storage/el2/base/files/test.txt } if (pathResult != NULL) { free(pathResult); } }
-
调用OH_FileUri_GetFullDirectoryUri获取URI所在路径的URI,在接口中malloc的内存需要在使用完后释放,因此需要free对应的内存。示例代码如下所示:
#include <cstring> void OH_FileUri_GetFullDirectoryUriExample() { char *uri = "file://com.example.demo/data/storage/el2/base/files/test.txt"; unsigned int length = strlen(uri); char *uriResult = NULL; FileManagement_ErrCode ret = OH_FileUri_GetFullDirectoryUri(uri, length, &uriResult); if (ret == 0 && uriResult != NULL) { printf("pathUri=%s",uriResult);//URI所在路径的URI:file://com.example.demo/data/storage/el2/base/files/ } if (uriResult != NULL) { free(uriResult); } }
-
可以调用OH_FileUri_IsValidUri接口进行URI格式验证。 示例代码如下所示:
#include <cstring> void OH_FileUri_IsValidUriExample() { char *uri = "file://com.example.demo/data/storage/el2/base/files/test.txt"; unsigned int length = strlen(uri); bool falgs = OH_FileUri_IsValidUri(uri, length); printf("The URI is valid? falgs=%d", falgs); }
-
调用OH_FileUri_GetFileName获取URI中的文件名称,在接口中malloc的内存需要在使用完后释放,因此需要free对应的内存。示例代码如下所示:
#include <cstring> void OH_FileUri_GetFileNameExample() { char *uri = "file://com.example.demo/data/storage/el2/base/files/test.txt"; unsigned int length = strlen(uri); char *uriResult = NULL; FileManagement_ErrCode ret = OH_FileUri_GetFileName(uri, length, &uriResult); if (ret == 0 && uriResult != NULL) { printf("pathUri=%s",uriResult);//获取到URI中的文件名:test.txt } if (uriResult != NULL) { free(uriResult); } }