B
Bill
Is there a method that will take a full path and filename as a
parameter and return just the filename? I am currently using the
following code but it is extremely slow for files on a DVD.
for (int I = 0; I < openVobDialog.FileNames.Length; I++)
{
FileInfo vobInfo = new FileInfo(openVobDialog.FileNames);
vobListBox.Items.Add(vobInfo.Name);
}
parameter and return just the filename? I am currently using the
following code but it is extremely slow for files on a DVD.
for (int I = 0; I < openVobDialog.FileNames.Length; I++)
{
FileInfo vobInfo = new FileInfo(openVobDialog.FileNames);
vobListBox.Items.Add(vobInfo.Name);
}