Function: saveFileToDir()
ts
function saveFileToDir(
dirKey: string,
fileName: string,
fileContent: (FileContent | Promise<FileContent>)[],
overwrite: boolean): Promise<{
message: string;
success: boolean;
}>
将文件写入目标文件夹
Example
ts
//需要先调用pickDir选择文件夹
saveFileToDir('key', 'file.txt', ['string', new Blob(['你好世界'], { type: 'text/plain' })]);
Parameters
Parameter | Type | Default value | Description |
---|---|---|---|
|
|
| 文件夹唯一标识,自行定义string,用于后续向同一文件夹写入文件 |
|
|
| 文件名 |
| ( |
| 二进制文件流或字符串数组 |
|
|
| 是否覆盖同名文件 |
Returns
Promise
<{ message
: string
; success
: boolean
; }>
Name | Type |
---|---|
message | string |
success | boolean |