Hi
I have the following in my smart device app, but I don't understand why file.exists() returns false, despite the fact that the app can read the file without issue (so the app can find it, and even access it), if I comment out the 'exists check' beforehand...
Any help or advice, will be much appreciated.
Thanks
John
I have the following in my smart device app, but I don't understand why file.exists() returns false, despite the fact that the app can read the file without issue (so the app can find it, and even access it), if I comment out the 'exists check' beforehand...
Code:
If Not File.Exists(LocalUpdatePath & UpdateInstructionFileName) Then
Return False
Else
'do read
End If
Any help or advice, will be much appreciated.
Thanks
John