FileSystemManager.appendFile

2020-08-26 16:16 更新

解釋:在文件結(jié)尾追加內(nèi)容。

Web 態(tài)說明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會執(zhí)行失敗回調(diào)函數(shù)。

方法參數(shù):Object object

object參數(shù)說明:

encoding 的合法值

示例 

在開發(fā)者工具中打開


圖片示例

代碼示例

<view class="wrap">
    <button type="primary"  bindtap="appendFile">在文件結(jié)尾追加內(nèi)容</button>
</view>
Page({
    data: {
        filePath: ''
    },
    onLoad() {
        this.fileSystemManager = swan.getFileSystemManager();
        swan.downloadFile({
            url: 'https://b.bdstatic.com/docs/demo.txt',
            success: res => {
                swan.showToast({
                    title: `文件預(yù)下載完成,臨時(shí)路徑為${res.tempFilePath}`,
                    icon: 'none'
                });
                // 此為 “本地臨時(shí)文件” 路徑。
                this.data.filePath = res.tempFilePath;
                // 將 “本地臨時(shí)文件” 持久化成 “本地用戶文件”。
                this.fileSystemManager.saveFileSync(res.tempFilePath, `${swan.env.USER_DATA_PATH}/a.txt`);
            }
        });
    },
    appendFile() {
        this.fileSystemManager.appendFile({
            filePath: `${swan.env.USER_DATA_PATH}/a.txt`,
            // filePath: this.data.filePath, // 不存在的文件路徑
            data: 'appendFileData',
            success: res => {
                swan.showToast({
                    title: res.errMsg,
                    icon: 'none'
                });
                console.log('appendFile success', res);
            },
            fail: err => {
                swan.showToast({
                    title: JSON.stringify(err),
                    icon: 'none'
                });
                console.log('appendFile fail', err);
            }
        });
    }
});


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號