hi,
i am basically adding files to my listview through this code
For each n as string in my.computer.filesystem.getdirectories("C:\Testing\")
Listview1.items.add(n,Imagelist1.images.count - 1)
Next
so all the files inside testing folder show up on the listview
the problem is that they all show up but they show up with the path such as instead of showing test.txt, they would show C:\Testing\test.txt
can anyone please tell me how to only show the filename and not the whole path
any help will be appreciated