I have checked and doubled checked and the $productFile path is valid. Does anyone know what's up?IfFileExists $productFile continue
MessageBox MB_OK "Please select a valid product package file.
Abort
continue:
MessageBox MB_OK "Found file.
Thanks
3 posts
I have checked and doubled checked and the $productFile path is valid. Does anyone know what's up?IfFileExists $productFile continue
MessageBox MB_OK "Please select a valid product package file.
Abort
continue:
MessageBox MB_OK "Found file.
Otherwise... have you checked the actual value of that variable, or are you just checking that it is valid by assuming that the value you set it to, is what the value is at that point?IfFileExists "$productFile" continue
MessageBox MB_OK "[$productFile]" before the IfFileExists so you can see what the variable value -actually- is (including any leading/trailing spaces).