此代码应创建一个目录:
<div class="container">
<div>First name: <span>[[employee.first]]</span></div>
<div>Last name: <span>[[employee.last]]</span></div>
<button on-click="testClick">Click</button>
</div>
testClick(e) {
const event = new CustomEvent('onUpdate', { bubbles: true, composed: true, detail: this.employee });
this.dispatchEvent(event);
}
当我运行它时,它会创建两个目录:
File[] dirs = context.getExternalFilesDirs(type);
File dir = new File(dirs[dirs.length-1].getAbsolutePath());
dir.mkdirs();
return dir;
mnt/sdcard/Android/data/com.test.sdcard
为什么要创建这两个?
重要的是我只有一个目录。