HarmonyOS鸿蒙体系上File文件常用操纵

打印 上一主题 下一主题

主题 1005|帖子 1005|积分 3015

HarmonyOS鸿蒙体系上,file文件常用操纵记录

1.创建文件

  1. createFile(fileName: string, content: string): string {
  2.     // 获取应用文件路径
  3.     let context = getContext(this) as common.UIAbilityContext;
  4.     let filesDirPath = context.filesDir + '/' + fileName;
  5.     // 新建并打开文件
  6.     let file = fs.openSync(filesDirPath, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE);
  7.     // 写入一段内容至文件
  8.     let writeLen = fs.writeSync(file.fd, content);
  9.     // 从文件读取一段内容
  10.     let buf = new ArrayBuffer(1024);
  11.     let readLen = fs.readSync(file.fd, buf, { offset: 0 });
  12.     // 关闭文件
  13.     fs.closeSync(file);
  14.     return filesDirPath
  15.   }
复制代码
2.将沙箱文件移动到分布式文件夹

  1. /**
  2.    * 创建分布式文件
  3.    */
  4.   async createDistributedFile(uri: string) {
  5.     // 获取应用文件路径
  6.     let context = getContext(this) as common.UIAbilityContext;
  7.     let filesDir = context.distributedFilesDir;
  8.     let fileName = this.getFileName(uri)
  9.     try {
  10.       let destUriPath = filesDir + '/' + fileName
  11.       this.tempFilePath = fileName
  12.       //给新建的文件写入内容
  13.       // mMediaFileUtils.writeFileContent(destUriPath,content)
  14.       // 新建并打开文件
  15.       let writeFile = fs.openSync(destUriPath, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE);
  16.       //设置文件权限
  17.       securityLabel.setSecurityLabel(destUriPath, 's1').then(() => {
  18.       })
  19.       // fs.write(file.fd,content)
  20.       //读取原文件内容
  21.       // 读取图片为buffer
  22.       const file = fs.openSync(uri, fs.OpenMode.READ_ONLY);
  23.       let photoSize = fs.statSync(file.fd).size;
  24.       let buffer = new ArrayBuffer(photoSize);
  25.       fs.readSync(file.fd, buffer);
  26.       fs.closeSync(file);
  27.       //开始写入内容
  28.       let writeLen = fs.write(writeFile.fd, buffer)
  29.     } catch (error) {
  30.     }
  31.   }
复制代码
3.读取分布式文件

  1.   /**
  2.    * 读取分布式文件
  3.    * @param filePath
  4.    */
  5.   readDistributedFile(filePath: string) {
  6.     let context = getContext(this) as common.UIAbilityContext;
  7.     let distributedFilesDir = context.distributedFilesDir;
  8.     let distributedFilesDirs = fs.listFileSync(distributedFilesDir);
  9.     for (let i = 0; i < distributedFilesDirs.length; i++) {
  10.       let fileName = distributedFilesDir + '/' + distributedFilesDirs[i]
  11.       this.readFile(fileName)
  12.     }
  13.   }
复制代码
4.读取文件内容

  1.   /**
  2.    * 读取文件
  3.    * @param filePath 文件路径
  4.    */
  5.   readFile(filePath: string) {
  6.     try {
  7.       // 打开分布式目录下的文件
  8.       let file = fs.openSync(filePath, fs.OpenMode.READ_WRITE);
  9.       // 定义接收读取数据的缓存
  10.       let arrayBuffer = new ArrayBuffer(4096);
  11.       // 读取文件的内容,返回值是读取到的字节个数
  12.       class Option {
  13.         public offset: number = 0;
  14.         public length: number = 0;
  15.       }
  16.       let option = new Option();
  17.       option.length = arrayBuffer.byteLength;
  18.       let num = fs.readSync(file.fd, arrayBuffer, option);
  19.       // 打印读取到的文件数据
  20.       let buf = buffer.from(arrayBuffer, 0, num);
  21.       Log.info('读取的文件内容: ' + buf.toString());
  22.     } catch (error) {
  23.       let err: BusinessError = error as BusinessError;
  24.       Log.error(`Failed to openSync / readSync. Code: ${err.code}, message: ${err.message}`);
  25.     }
  26.   }
复制代码
5.产看文件列表(沙箱和分布式文件夹)

  1.   /**
  2.    * 查看文件列表 沙箱文件夹 和 分布式文件夹
  3.    */
  4.   lookFilesList(): string {
  5.           //沙箱文件夹
  6.     let allFiles = ''
  7.     let context = getContext(this) as common.UIAbilityContext;
  8.     let filesDir = context.filesDir;
  9.     let files = fs.listFileSync(filesDir);
  10.     for (let i = 0; i < files.length; i++) {
  11.       Log.info(`当前设备文件 name: ${files[i]}`);
  12.     }
  13.         //分布式文件夹
  14.     let distributedFilesDir = context.distributedFilesDir;
  15.     Log.info('context.distributedFilesDir: ' + distributedFilesDir)
  16.     let distributedFilesDirs = fs.listFileSync(distributedFilesDir);
  17.     if (distributedFilesDirs.length > 0) {
  18.       for (let i = 0; i < distributedFilesDirs.length; i++) {
  19.         Log.info(`分布式文件 name: ${distributedFilesDirs[i]}`);
  20.       }
  21.     }
  22.     return allFiles;
  23.   }
复制代码
6.删除分布式下指定文件

  1.   /**
  2.    * 删除分布式指定文件
  3.    */
  4.   deleteDistributedFile(fileName: string) {
  5.     let context = getContext(this) as common.UIAbilityContext;
  6.     let filePath = context.distributedFilesDir + '/' + fileName
  7.     securityLabel.setSecurityLabel(filePath, 's1').then(() => {
  8.       Log.info('Succeeded in setSecurityLabeling.');
  9.     })
  10.     try {
  11.       fs.rmdir(filePath)
  12.       Log.info('刪除文件成功')
  13.     } catch (error) {
  14.       let err: BusinessError = error as BusinessError;
  15.       Log.error(`Failed to openSync / readSync. Code: ${err.code}, message: ${err.message}`);
  16.     }
  17.   }
复制代码
7. 删除当地文件

  1.   /**
  2.    * 删除本地文件
  3.    */
  4.   deleteCurrentDeviceFile() {
  5.     let context = getContext(this) as common.UIAbilityContext;
  6.     let filesDir = context.filesDir;
  7.     let filesDirs = fs.listFileSync(filesDir);
  8.     if (filesDirs.length <= 0) {
  9.       return
  10.     }
  11.     let fileName = filesDirs + '/' + filesDirs[0]
  12.     securityLabel.setSecurityLabel(fileName, 's1').then(() => {
  13.       Log.info('Succeeded in setSecurityLabeling.');
  14.     })
  15.     try {
  16.       fs.rmdir(fileName)
  17.       Log.info('刪除文件成功')
  18.     } catch (error) {
  19.       let err: BusinessError = error as BusinessError;
  20.       Log.error(`Failed to openSync / readSync. Code: ${err.code}, message: ${err.message}`);
  21.     }
  22.   }
复制代码
8.获取文件名

  1.   /**
  2.    * 获取文件名
  3.    * @param filePath
  4.    * @returns
  5.    */
  6.   getFileName(filePath: string): string {
  7.     const parts = filePath.split('/');
  8.     if (parts.length === 0) {
  9.       return '';
  10.     } // 如果没有找到任何斜杠,返回null
  11.     const fileNameWithExtension = parts[parts.length - 1];
  12.     const fileNameParts = fileNameWithExtension.split('.');
  13.     if (fileNameParts.length < 2) {
  14.       return fileNameWithExtension;
  15.     } // 如果没有扩展名,直接返回文件名
  16.     // return fileNameParts[0]; // 返回文件名(不含扩展名)
  17.     return fileNameWithExtension; // 返回文件名,含扩展名
  18.   }
复制代码
9.保存文件到当地文件夹

  1. /**
  2.    * 拉起picker保存文件
  3.    */
  4.   async saveFile(fileName: string):Promise<string>{
  5.     let saveFileUri = ''
  6.     try {
  7.       let DocumentSaveOptions = new picker.DocumentSaveOptions();
  8.       DocumentSaveOptions.newFileNames = [fileName];
  9.       let documentPicker = new picker.DocumentViewPicker();
  10.       await documentPicker.save(DocumentSaveOptions).then( (DocumentSaveResult) => {
  11.         if (DocumentSaveResult !== null && DocumentSaveResult !== undefined) {
  12.           let uri = DocumentSaveResult[0] as string;
  13.           this.realFileUri = uri
  14.            this.realSaveFile(fileName)
  15.           saveFileUri = uri
  16.         }
  17.       }).catch((err: BusinessError) => {
  18.         Log.error('saveFile-DocumentViewPicker.save failed with err: ' + JSON.stringify(err));
  19.       });
  20.     } catch (err) {
  21.       Log.error('saveFile-DocumentViewPicker failed with err: ' + err);
  22.     }
  23.     return saveFileUri
  24.   }
  25.   realFileUri: string = ''
  26.   /**
  27.    * 真正开始保存文件
  28.    */
  29.   async realSaveFile(fileName: string) {
  30.     let context = getContext(this) as common.UIAbilityContext;
  31.     let pathDir = context.distributedFilesDir;
  32.     // 获取分布式目录的文件路径
  33.     let filePath = pathDir + '/' + fileName;
  34.     // 读取buffer
  35.     const file = fs.openSync(filePath, fs.OpenMode.READ_ONLY);
  36.     let photoSize = fs.statSync(file.fd).size;
  37.     let buffer = new ArrayBuffer(photoSize);
  38.     fs.readSync(file.fd, buffer);
  39.     fs.closeSync(file);
  40.     let saveFile = fs.openSync(this.realFileUri, fs.OpenMode.WRITE_ONLY);
  41.     let writeLen = fs.write(saveFile.fd, buffer)
  42.     Log.info(`save file uri success ~~~~~` + writeLen);
  43.     //保存成功以后删除分布式上面的文件
  44.     this.deleteDistributedFile(filePath)
  45.   }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

汕尾海湾

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表