FileSystemManager.copyFileSync
2020-08-26 16:16 更新
解释:用于实现文件拷贝的同步接口。
Web 态说明:受浏览器限制,Web 态不支持文件系统相关功能,调用该方法会抛出一个标准的 Error 对象。
方法参数:String srcPath, String destPath
srcPath
参数说明:文件/目录路径。
destPath
参数说明:拷贝操作的目标文件名。
若接口调用失败,会抛出一个标准的Error对象
示例
图片示例
代码示例
<view class="wrap">
<button type="primary" bindtap="copyFileSync">拷贝文件</button>
</view>
Page({
data: {
filePath: ''
},
onLoad() {
this.fileSystemManager = swan.getFileSystemManager();
swan.downloadFile({
url: 'https://smartprogram.baidu.com/docs/img/logo.png',
success: res => {
swan.showToast({
title: `文件预下载完成,临时路径为${res.tempFilePath}`,
icon: 'none'
});
// 此为 “本地临时文件” 路径。
this.data.filePath = res.tempFilePath;
}
});
},
copyFileSync() {
try {
let result = this.fileSystemManager.copyFileSync(
this.data.filePath,
`${swan.env.USER_DATA_PATH}/copyFileSync.txt`
);
swan.showToast({
title: result,
icon: 'none'
});
console.log('copyFileSync success', result);
}
catch (err) {
swan.showToast({
title: `${err}`,
icon: 'none'
});
console.log('copyFileSync fail', err);
}
}
});
以上内容是否对您有帮助:
更多建议: