Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
156 views
Welcome To Ask or Share your Answers For Others

1 Answer

Simply use this :

string startPath = "";
string results = "";

string[] filePaths = Directory.GetFiles(@"C:TwinTableLeftTableO0201", "*.*");

if (filePaths.Length > 0)
   TboxLeftTable.Text = System.IO.Path.GetFileName(filePaths[0]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...