DatagridView 中的文件

发布于 2024-12-09 03:38:19 字数 180 浏览 0 评论 0原文

如何在不使用网页的情况下在 DataGridView 中显示文件及其路径? 我想在一列中显示我使用FolderBrowserDialog 选择的文件的所有子文件夹,并在第二列中显示它们的路径。我试图找出它是如何可能的,但我只在 VB.net 中找到了示例,并且他们使用的是网页。我想使用WinForm来显示数据。

感谢您的回复。

How can I show files and their path in DataGridView without using web page?
I want to display all sub folders of file I've selected with FolderBrowserDialog in one column and their path in second column. I tried to found out how it's possible, but I've found only examples in VB.net and they were using web pages for it. I want to use WinForm for display the data.

Thanks for responses.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

荒人说梦 2024-12-16 03:38:19

要获取文件和文件夹列表,请使用 System.IO.DirectoryInfo 或 System.IO.Directory 类的方法。

var result = from file in 
                   new System.IO.DirectoryInfo(@"c:\").EnumerateFileSystemInfos()
                   select file;

dataGridView1.DataSource = result.ToList();

To get list of files and folders use the methods of System.IO.DirectoryInfo or System.IO.Directory class.

var result = from file in 
                   new System.IO.DirectoryInfo(@"c:\").EnumerateFileSystemInfos()
                   select file;

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