HarmonyOS 鸿蒙Next 获取“文件管理”App的 Documents 目录的路径

发布于 1周前 作者 songsunli 来自 鸿蒙OS

HarmonyOS 鸿蒙Next 获取“文件管理”App的 Documents 目录的路径

应用下载文件到 cacheDir 目录后,想将下载后的文件转存到“文件管理”App的 Documents 目录中,目前不知道如何获取这个目录的路径

3 回复

参考下面的demo

import fs from '[@ohos](/user/ohos).file.fs';
import { common } from '[@kit](/user/kit).AbilityKit';
import { picker } from '[@kit](/user/kit).CoreFileKit';
import { BusinessError } from '[@kit](/user/kit).BasicServicesKit';

[@Entry](/user/Entry)
[@Component](/user/Component)
struct Index {
 [@State](/user/State) message: string = 'Hello World';
 private appContext: common.Context = getContext(this);
 private fileDir: string = ''

 createFile() {
   let cacheDir = this.appContext.cacheDir;
   this.fileDir = cacheDir + '/HelloWorld.txt'
   let file = fs.openSync(this.fileDir, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE)
   let writeLen = fs.writeSync(file.fd, 'hello world!');
   console.info("write data to file succeed and size is:" + writeLen);
   fs.closeSync(file)
 }

 saveFile() {
   try {
     let documentSaveOptions = new picker.DocumentSaveOptions();
     documentSaveOptions.newFileNames = ['HelloWorld.txt'];
     let documentPicker = new picker.DocumentViewPicker();
     documentPicker.save(documentSaveOptions).then((documentSaveResult: Array<string>) => {
       let uri = documentSaveResult[0];
       let sanFile = fs.openSync(this.fileDir, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE)
       let pubFile = fs.openSync(uri, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE)
       fs.copyFileSync(sanFile.fd, pubFile.fd)
       fs.close(sanFile)
       fs.close(pubFile)
       console.info('DocumentViewPicker.save successfully, documentSaveResult uri: ' +
       JSON.stringify(documentSaveResult));
     }).catch((err: BusinessError) => {
       console.error('DocumentViewPicker.save failed with err: ' + JSON.stringify(err));
     });
   } catch (error) {
     let err: BusinessError = error as BusinessError;
     console.error('DocumentViewPicker failed with err: ' + JSON.stringify(err));
   }
 }

 build() {
   Row() {
     Column() {
       Button(this.message)
         .fontSize(50)
         .fontWeight(FontWeight.Bold)
         .onClick(() => {
           this.createFile();
           this.saveFile();
         })
     }
     .width('100%')
   }
   .height('100%')
 }
}

更多关于HarmonyOS 鸿蒙Next 获取“文件管理”App的 Documents 目录的路径的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


import { Environment } from '[@kit](/user/kit).CoreFileKit';
//真机需要申请这个权限 ohos.permission.READ_WRITE_DOCUMENTS_DIRECTORY
try {
if (canIUse('SystemCapability.FileManagement.File.Environment.FolderObtain')) {

const docDir = Environment.getUserDocumentDir();
//...业务代码
}
} catch (error) {
console.error(`failed to getUserDocumentDir because: ${JSON.stringify(error)}`);
}

在HarmonyOS鸿蒙Next系统中,获取“文件管理”App的Documents目录路径,可以通过系统提供的API接口来实现。这通常涉及到访问应用的数据目录权限。

具体步骤如下:

  1. 权限声明:首先,需要在应用的config.json文件中声明所需的权限,如ohos.permission.READ_EXTERNAL_STORAGEohos.permission.WRITE_EXTERNAL_STORAGE,以允许应用访问外部存储。

  2. 使用API获取路径:在代码中,可以使用StorageManagerUri相关API来获取特定应用的Documents目录路径。不过,由于直接获取其他应用(如“文件管理”)的特定目录路径可能受系统安全策略限制,通常需要用户交互(如文件选择器)来间接访问。

  3. 间接访问:推荐使用系统提供的文件选择器API,让用户从“文件管理”中选择文件或目录,从而获取所选文件或目录的路径。这种方式更符合用户隐私保护和系统安全策略。

示例代码(简化,不直接获取“文件管理”App的Documents目录):

// 注意:这里不提供直接获取路径的代码,而是使用文件选择器作为示例
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
startActivityForResult(intent, REQUEST_CODE_PICK_FILE);

如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html

回到顶部