在 C# 中修剪数组中的所有字符串

发布于 2024-12-18 08:08:04 字数 449 浏览 0 评论 0原文

我使用此代码来获取目录的内容:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

2024-12-25 08:08:04

我建议改用 DirectoryInfo.GetFiles 和 LINQ:

FileInfo[] savefile = new DirectoryInfo(mcsdir).GetFiles("*.bin");
comboBox1.Items.AddRange(savefile.Select(x => x.Name).ToArray());

I would recommend using DirectoryInfo.GetFiles instead, and LINQ:

FileInfo[] savefile = new DirectoryInfo(mcsdir).GetFiles("*.bin");
comboBox1.Items.AddRange(savefile.Select(x => x.Name).ToArray());
身边 2024-12-25 08:08:04

使用LINQ

var strs = savefile.Select(a => Path.GetFileName(a)).ToArray();

查看minitech的建议
只要获得 FileInfo[] 类型的数组,就无需将其转换为字符串数组。只需将属性 DisplayMember 设置为您想要在 ComboBox 中显示的属性名称即可。

FileInfo[] savefile = new DirectoryInfo(mcsdir).GetFiles("*.bin");
comboBox1.DisplayMember = "Name";
comboBox1.DataSource = savefile;

使用此功能,您可以保留原始 FileInfo[] 数组以及所有附加信息(关于文件的完整路径),同时在您的控件中仅显示短文件名(没有路径)。

(我假设您的问题是关于 WinForms 的。如果您使用的是 Silverlight 或 WPF,则需要使用“Target”属性来设置属性)。

Use LINQ:

var strs = savefile.Select(a => Path.GetFileName(a)).ToArray();

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 property DisplayMember to the property name you want to display in your ComboBox.

FileInfo[] savefile = new DirectoryInfo(mcsdir).GetFiles("*.bin");
comboBox1.DisplayMember = "Name";
comboBox1.DataSource = savefile;

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文