Im trying to get the selected files path, from this list, i get those files by odf.SafeFileNames, is there a way to get those files paths?? here is my code
ofd.Title = "=SE= File Selector v.01";
ofd.Multiselect = true;
if (ofd.ShowDialog() == DialogResult.OK)
{
fileNames = ofd.SafeFileNames;
}
foreach (string FileName in fileNames)
{
Console.WriteLine(FileName + ": " + filepath);
}