Contents - Index - Previous - Next


CheckDiskLabels property

 

Applies to

TVCLUnZip component

 

Declaration

property CheckDiskLabels: Boolean;

 

Description

If set to True, the VCLUnZip component will check volume labels on Spanned Disk Sets each time a new disk is inserted.  If the volume label does not match the disk number that is requested, the request will be repeated until the proper disk is inserted.  

 

If set to False, the volume labels will be ignored.  It will then be up to you to be sure the correct disk is inserted.  Also note that if a spanned disk set was created by VCLZip while the WriteDiskLabels property is False, then there will be no labels to check.  However, a spanned disk set that is expected to be read by PKZip, or another zip utility should have the labels.  

 

IMPORTANT: 

This is a PUBLIC property in the VCLUnZip component, but it is a PUBLISHED subproperty of the MultZipInfo Property in the VCLZip property.  

 

When only using the VCLUnZip component, set this property as follows...  

 

UnZipper.CheckDiskLabels := True;  

 

You may set this property in VCLZip the same way, or you may set it through the MultiZipInfo property, such as...  

 

Zipper.MultiZipInfo.CheckDiskLabels := True;  

 

Run-time only