Android Question File.Exists ?

fernando.oliboni

Active Member
Licensed User
Longtime User
Why can't I find the file that I know is in the folder?
What's wrong with my routine?

File.Exists:
If File.Exists("application/octet-stream", "PetCNC.txt") Then
    Log(File.Delete("application/octet-stream","PetCNC.txt"))
    File.Delete ("application/octet-stream", "PetCNC.txt")
Else
    Log(File.Delete("application/octet-stream","PetCNC.txt"))
End If
 
Top