Perl Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Perl Examples

Quick Start
Unicode
Byte Array
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
Signatures
SMTP
Socket / SSL
Spider
SFTP
SSH Key
SSH
SSH Tunnel
Tar
HTTP Upload
XML
XMP
Zip

More Examples...
String
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

Create Self-Extracting EXE

 Chilkat Perl Module Downloads for Windows, Linux, and MAC OS X

Perl script to create a self-extracting executable.

# file: SelfExtractExe.pl

use chilkat;

# How to create a self-extracting executable in Perl.
$zip = new chilkat::CkZip();
$zip->UnlockComponent("anything for 30-day trial");

# Calling NewZip does not actually create a file on disk.  The filename
# argument indicates the name of the zip file name to be created when
# WriteZip is called.  However, in this example, WriteExe is called instead,
# so the zip filename is meaningless.
$zip->NewZip("notUsed.zip");
$zip->AppendFiles("exampleData/*",1);

# Write the self-extracting EXE
$zip->WriteExe("example.exe");






 

© 2000-2013 Chilkat Software, Inc. All Rights Reserved.