HI,
It seem to the File.IsDirectory function was missing in B4I ? Is there a same method should be using ?
Tks!
It seem to the File.IsDirectory function was missing in B4I ? Is there a same method should be using ?
Tks!
Sub IsDirectory(Dir As String, FileName As String) As Boolean
Dim filetype As String = File.GetAttributes(Dir, FileName).Get("NSFileType")
Return filetype = "NSFileTypeDirectory"
End Sub