cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+3 -3
View File
@@ -15,10 +15,10 @@ zip_read
:content
Extracts every member in a ZIP archive into `destination_directory`.
```uce
zip_extract("/tmp/example.zip", "/tmp/example-extract");
```
UCE creates the destination directory and any needed child directories when they do not already exist.
For safety, every member name is normalized and checked before extraction. Absolute paths, drive-qualified paths, empty names, and `..` path segments are rejected so archives cannot write outside the destination directory.
:example
print("zip_extract example\n");