in my application i am add file into my list box (my list box contain 3 column):
lvFiles.Items.Add(new ListViewItem(new string[]
{
(new FileInfo(filePath)).FullName, duration, "Waiting"
}));
lvFiles.Items[i].Text show me only the file name and i need the whole path
i want the option to show in my Listview only the file name: new FileInfo(filePath)).Name
but when i call to my class who need the full path: myClass = new myClass(lvFiles.Items[i].Text); in this case i want to send the whole file path: new FileInfo(filePath)).FullName