Did you know ...
Search Documentation:
Pack canny_tudor -- prolog/swi/zip.pl
HOME
DOWNLOAD
SWI-Prolog
Sources/building
Docker images
Add-ons
Browse GIT
DOCUMENTATION
Manual
Packages
FAQ
Command line
PlDoc
Bluffers
▶
Prolog syntax
PceEmacs
HTML generation
License
Publications
Rev 7 Extensions
TUTORIALS
Beginner
▶
Getting started
Learn Prolog Now!
Simply Logical
Debugger
Development tools
Advanced
▶
Modules
Grammars (DCGs)
clp(fd)
Printing messages
PlDoc
Web applications
▶
Web applications
Let's Encrypt!
Pengines
Semantic web
▶
ClioPatria
RDF namespaces
Graphics
▶
XPCE
GUI options
Machine learning
▶
Probabilistic Logic Programming
External collections
▶
Meta level tutorials
For packagers
▶
Linux packages
COMMUNITY
Forum & mailing list
Blog
News
Report a bug
Submit a patch
Submit an add-on
Roadmap (on GitHub)
External links
Contributing
Code of Conduct
Contributors
SWI-Prolog items
COMMERCIAL
WIKI
Login
View changes
Sandbox
Wiki help
All tags
zip_file_info
(+File, -Name, -Attrs, -Zipper)
is
nondet
Non-deterministically walks through the members of a zip
File
, moving the
Zipper
current member. It does
not
read the contents of the zip members, by design. You can use the
Name
argument to select a member or members before reading.
Arguments:
Zipper
- unifies with the open
Zipper
for reading using
zipper_codes/3
or
zipper_open_current/3
.
zipper_codes
(+Zipper, -Codes, +Options)
is
semidet
Reads the current
Zipper
file as
Codes
.
Options
may be:
encoding(utf8)
for UTF-8 encoded text, or
type(binary)
for binary octets, and so on.