schimanski Well-Known Member Licensed User Longtime User Jan 27, 2011 #1 Is there a wildcard available under b4a to check a file, like * under windows? this one doesn't work: B4X: File.Exists(File.DirRootExternal, "MyFile*.*") thanks for help...
Is there a wildcard available under b4a to check a file, like * under windows? this one doesn't work: B4X: File.Exists(File.DirRootExternal, "MyFile*.*") thanks for help...
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2011 #2 There is no wildcard checking. However you can use File.ListFiles and then go over all the files and check if they match your pattern. Upvote 0
There is no wildcard checking. However you can use File.ListFiles and then go over all the files and check if they match your pattern.