#鸿蒙学习大百科#如何获取某个文件的属性信息?

如何获取某个文件的属性信息?

HarmonyOS
2024-10-14 10:47:39
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
被窝终结者
let applicationContext = this.context.getApplicationContext();
let cacheDir = applicationContext.cacheDir;
let filePath = cacheDir + "/test1.txt"
fs.stat(filePath).then((stat:fs.Stat)=>{
  console.info("get file info succeed, the size of file is " + stat.size);
}).catch(()=>{
  
})
分享
微博
QQ
微信
回复
2024-10-14 14:47:34
相关问题