在 C# 中修剪数组中的所有字符串
我使用此代码来获取目录的内容:
string[] savefile = Directory.GetFiles(mcsdir, "*.bin");
comboBox1.Items.AddRange(savefile);
它返回为
C:\Users\Henry\MCS\save1.bin
C:\Users\Henry\MCS\save2.bin
How can I make it return as only
save1.bin
save2.bin
请注意,此应用程序将被其他人使用,因此名称并不总是“Henry”。 谢谢。
I used this code to get the contents of a directory:
string[] savefile = Directory.GetFiles(mcsdir, "*.bin");
comboBox1.Items.AddRange(savefile);
and it returns as
C:\Users\Henry\MCS\save1.bin
C:\Users\Henry\MCS\save2.bin
How can I make it return as only
save1.bin
save2.bin
Please note that this app will be used by other people, so the name is not always "Henry".
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议改用 DirectoryInfo.GetFiles 和 LINQ:
I would recommend using
DirectoryInfo.GetFiles
instead, and LINQ:使用LINQ:
查看minitech的建议:
只要获得
FileInfo[]
类型的数组,就无需将其转换为字符串数组。只需将属性DisplayMember
设置为您想要在ComboBox
中显示的属性名称即可。使用此功能,您可以保留原始
FileInfo[]
数组以及所有附加信息(关于文件的完整路径),同时在您的控件中仅显示短文件名(没有路径)。(我假设您的问题是关于 WinForms 的。如果您使用的是 Silverlight 或 WPF,则需要使用“Target”属性来设置属性)。
Use LINQ:
Looking at the suggestion of minitech:
As long as you get the array of type
FileInfo[]
there is no need to convert it to string array. Just set the propertyDisplayMember
to the property name you want to display in yourComboBox
.Using this you keep your original
FileInfo[]
array with all additional information (as to the full path to your files) and same time display only the short filenames (without path) in your control.(I assume that your question is about WinForms. If you are using Silverlight or WPF you need to set the property using the "Target" attribute).
使用
Path.GetFileName(字符串路径)
。
Use
Path.GetFileName(string path)
.