DatagridView 中的文件
如何在不使用网页的情况下在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取文件和文件夹列表,请使用 System.IO.DirectoryInfo 或 System.IO.Directory 类的方法。
To get list of files and folders use the methods of
System.IO.DirectoryInfo
orSystem.IO.Directory
class.