提交 c6243f77 编写于 作者: W WOSHIMAHAIFENG

修改file测试示例

上级 086d6d26
...@@ -483,7 +483,7 @@ ...@@ -483,7 +483,7 @@
console.log("success to readdir", res) console.log("success to readdir", res)
res.files.forEach(element => { res.files.forEach(element => {
console.log(element) console.log(element)
let filePath:string let filePath : string
if (this.rmDirFile.length <= 0) { if (this.rmDirFile.length <= 0) {
filePath = `${this.basePath}${element}` filePath = `${this.basePath}${element}`
} else { } else {
...@@ -786,20 +786,23 @@ ...@@ -786,20 +786,23 @@
} }
}, },
unzipFileTest: function (_ : any) { unzipFileTest: function (_ : any) {
uni.downloadFile({
url: 'https://b2c-store.oss-ap-southeast-1.aliyuncs.com/ceshi/FRT.zip',
success: (res) => {
console.log(res)
const fileManager = uni.getFileSystemManager() const fileManager = uni.getFileSystemManager()
fileManager.unzip({ fileManager.unzip({
zipFilePath: `${this.basePath}${this.unzipFile}`, zipFilePath: res.tempFilePath,
targetPath: `${this.basePath}${this.targetZip}`, targetPath: `${this.basePath}${this.targetZip}`,
success: (res : FileManagerSuccessResult) => { success: (res : FileManagerSuccessResult) => {
if (this.logAble) { if (this.logAble) {
this.log += 'saveFileTest success:' + JSON.stringify(res) + '\n\n' this.log += 'unzipFileTest success:' + JSON.stringify(res) + '\n\n'
} }
console.log('success', res) console.log('success', res)
}, },
fail: (res : UniError) => { fail: (res : UniError) => {
if (this.logAble) { if (this.logAble) {
this.log += 'saveFileTest fail:' + JSON.stringify(res) + '\n\n' this.log += 'unzipFileTest fail:' + JSON.stringify(res) + '\n\n'
} }
console.log('fail', res) console.log('fail', res)
this.lastFailError = res this.lastFailError = res
...@@ -809,6 +812,11 @@ ...@@ -809,6 +812,11 @@
} }
} as UnzipFileOptions) } as UnzipFileOptions)
}, },
fail: (e) => {
console.log(e)
}
})
},
getSavedFileListTest: function () { getSavedFileListTest: function () {
const fileManager = uni.getFileSystemManager() const fileManager = uni.getFileSystemManager()
...@@ -881,7 +889,7 @@ ...@@ -881,7 +889,7 @@
readCompressedFileTest() { readCompressedFileTest() {
const fileManager = uni.getFileSystemManager() const fileManager = uni.getFileSystemManager()
fileManager.readCompressedFile({ fileManager.readCompressedFile({
filePath: `${this.basePath}${this.brFile}`, filePath: '/static/filemanager/1.txt.br',
compressionAlgorithm: "br", compressionAlgorithm: "br",
success: (res : ReadCompressedFileResult) => { success: (res : ReadCompressedFileResult) => {
if (this.logAble) { if (this.logAble) {
...@@ -906,7 +914,7 @@ ...@@ -906,7 +914,7 @@
const fileManager = uni.getFileSystemManager() const fileManager = uni.getFileSystemManager()
try { try {
let data = fileManager.readCompressedFileSync( let data = fileManager.readCompressedFileSync(
`${this.basePath}${this.brFile}`, '/static/filemanager/1.txt.br',
"br") "br")
if (this.logAble) { if (this.logAble) {
this.log += data this.log += data
...@@ -1224,25 +1232,17 @@ ...@@ -1224,25 +1232,17 @@
} }
}, },
readZipEntry() { readZipEntry() {
uni.downloadFile({
url: 'https://b2c-store.oss-ap-southeast-1.aliyuncs.com/ceshi/FRT.zip',
success: (res) => {
console.log(res)
const fileManager = uni.getFileSystemManager() const fileManager = uni.getFileSystemManager()
fileManager.readZipEntry({ fileManager.readZipEntry({
filePath: `${this.basePath}${this.readZipFile}`, filePath: res.tempFilePath,
encoding: 'utf-8', encoding: 'utf-8',
entries: [{
path: 'kkkk',
encoding: 'utf-8'
} as EntryItem,
{
path: 'log/log1.txt',
encoding: 'utf-8'
} as EntryItem,
{
path: 'hello.txt',
encoding: 'utf-8'
} as EntryItem],
success: (res : EntriesResult) => { success: (res : EntriesResult) => {
if (this.logAble) { if (this.logAble) {
this.log += 'readZipEntry success:' + JSON.stringify(res) + '\n\n' this.log += 'readZipEntry success:size=' + res.result.size + '\n\n'
} }
console.log("success", res) console.log("success", res)
}, },
...@@ -1255,6 +1255,11 @@ ...@@ -1255,6 +1255,11 @@
} }
} as ReadZipEntryOptions) } as ReadZipEntryOptions)
}, },
fail: (e) => {
console.log(e)
}
})
},
}, },
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册