こんにちは、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'
3 番目のパラメーターを使用するにはどうすればよいですか? 配列のトピックに 2 番目の引数を適用してもよろしいですか?