tehon3299
Centurion
How can I see what the first character of a string is? I am getting a filename via:
How can I look at only the first character of the filename in sFile?
Thanks
Visual Basic:
Path_ = "C:\Inetpub\wwwroot\SongShare\Songs\"
Dim sFiles() As String = System.IO.Directory.GetFiles(Path_)
Dim sFile As String
sFile = System.IO.Path.GetFileName(sFile)
How can I look at only the first character of the filename in sFile?
Thanks
Last edited: