
If you have a zip file with 2 files with the same name in differents directories,
For example, you have this tree directory
c:\test\text.txt
c:\test\dir1\text.txt
Code: Select all
Searchfile1.s = "c:\test\text.txt"
ReturnValue1.l = PureZIP_FindFile(ZIPFile$, SearchFile1)
Searchfile2.s = "c:\test\dir1\text.txt"
ReturnValue2.l = PureZIP_FindFile(ZIPFile$, SearchFile2)
And I would like that
Code: Select all
PureZIP_Archive_Locate()
Code: Select all
PureZIP_Archive_FindFile(FileToSearch.s)
Thank you!!