I need to trim the directory path so that the file only shows up in a TextBox
. I keep getting an out of range error.
This is the code I have:
string startPath = "";
string results = "";
string[] filePaths = Directory.GetFiles(@"C:TwinTableLeftTableO0201", "*.*");
startPath = filePaths.ToString();
results = startPath.Substring(28);
TboxLeftTable.Text = results;
The path I am trying to trim is: C:TwinTableLeftTableO02013100200210.TA4
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…