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(()=>{
})