Hello,
I have an issue with the Compress-Function. When i want to compress a folder and in the folder path is a dot the function returns -13
(e.g. E:\temp\f.older_name\compress_test). The dot is not in the foldername that has to be compressed, it can be located anywhere in the path. Without the dot everything works fine. Is this a known problem or is there a solution for my Problem?
I am working with Powerbuilder 2021 Build 1506
Thank you for your help
Timo
integer li_rc
string ls_Foldername
string ls_Source
CompressorObject lnv_Compress
ls_Foldername = "C:\temp\f.older_name\compress_test"
ls_Source = "C:\temp\f.older_name\compress_test\"
lnv_Compress = create CompressorObject
li_rc = lnv_Compress.Compress(ls_Source, ls_Foldername, ArchiveFormatZip!) // returns -13