Heiko
New Member
Posts: 18
|
Post by Heiko on Mar 17, 2005 9:24:34 GMT -5
Hi,
I can set easy the comment for a ZipFile with the method ZipComment.
With VCLZip1 do begin ZipName := 'c:\mydir\MyArchive.ZIP'; ZipComment := 'This is a comment'; FilesList.Add('c:\test\*.*'); Zip; end;
How can I set easy the comment for a single file? If it is possible, I want to set the comment like in this example.
With VCLZip1 do begin ZipName := 'c:\mydir\MyArchive.ZIP'; FilesList.Add('c:\test\*.*'); FileComment := 'all files from folder test'; Zip; end;
Can anyone help me? Thanks.
Bye Heiko
|
|