Can't find file in dirassets

cstangor

Member
Licensed User
Longtime User
Hello,

I've put a file "umd.PNG" into the file folder of my project. But I can't seem to find it i the dirassets folder.

This finds 5 files, but they are all "images"
Dim fd1 As String = File.DirAssets
Dim l As List
l = File.ListFiles(fd1)
Log ("Found " & l.Size & " Files")

This copy doesn't find the file:

File.Copy(fd1, "umd.PNG", fd2, "umd.PNG")

Thanks
 
Top