I've trouble with HB_GetFilesInZip() and HB_UnZipFile(). It cannot read file in NETWORK drive but it works file for local drive.
What is my problem?
- Code: Select all Expand view
- #include 'fivewin.ch'
Function Main
local lOk, aFiles, cFile
cFile := 'M:\easyfo\fo\data\foliohis\f031016.zip'
msginfo( file(cFile) ) // return .T.
aFiles := hb_GetFilesInZip(cFile) // return nil
lOk := hb_unzipfile(cFile,,,,'M:\easyfo\fo\data\temp',,NIL) // return .F.
return nil
Regards,
Dutch