mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-17 19:12:07 -05:00
693 B
693 B
title, layout, section
title | layout | section |
---|---|---|
remove(name) | default | api |
Description : Delete a file or folder (recursively).
Arguments
name | type | description |
---|---|---|
name | string | the name of the file/folder to delete. |
Returns : The current JSZip object.
Throws : Nothing.
Example
var zip = new JSZip();
zip.file("Hello.txt", "Hello World\n");
zip.file("temp.txt", "nothing").remove("temp.txt");
// result : Hello.txt
zip.folder("css").file("style.css", "body {background: #FF0000}");
zip.remove("css");
//result : empty zip