您好我正在尝试使用 MadZip 压缩到 zip:http: //help.madshi.net/madZipUnit.htm
语法是这样的:
function Zip (zip : string; // full path
const files : array of string; // full path
const zipAs : TDAString = nil) : boolean; // only name, no path
我要测试的代码如下:
Zip('test.zip',['code1.txt', 'code2.txt'],'yeah');
错误是这样的:
[DCC Error] key.pas(34): E2010 Incompatible types: 'TDAUnicodeString' and 'string'
我必须使用第三个参数吗?可以将第二个参数应用于数组主题吗?