获取 vb.net 中目录内所有文件的列表

发布于 2024-08-05 14:03:26 字数 66 浏览 8 评论 0原文

如何获取包含用户计算机上文件的完整路径的文件列表(作为字符串集合或其他存储方法)?

有这样做的方法吗?

How can you obtain a list of files (as a stringcollection or some other storage method) which contains the full path on the user's computer to the files?

Is there a method for doing so?

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

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

发布评论

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

评论(3

家住魔仙堡 2024-08-12 14:03:26

看起来您想在 System.IO 命名空间中使用 Directory.GetFiles()

此处的文档

It looks like you want to use Directory.GetFiles() in the System.IO namespace.

Docs here.

缘字诀 2024-08-12 14:03:26
    Dim txtFiles = Directory.GetFiles("C:\Input", "*.CSV", SearchOption.TopDirectoryOnly).
        [Select](Function(nm) Path.GetFileName(nm))

    Dim arrayList As New System.Collections.ArrayList()
    For Each filenm As String In txtFiles
        arrayList.Add(New clsImportFiles(filenm))
    Next
    Dim txtFiles = Directory.GetFiles("C:\Input", "*.CSV", SearchOption.TopDirectoryOnly).
        [Select](Function(nm) Path.GetFileName(nm))

    Dim arrayList As New System.Collections.ArrayList()
    For Each filenm As String In txtFiles
        arrayList.Add(New clsImportFiles(filenm))
    Next
一绘本一梦想 2024-08-12 14:03:26

将列表框添加到 Windows 窗体,并在窗体加载或其他事件上添加以下代码:-

ListBox1.Items.AddRange(Directory.GetFiles("Your Directory PAth Here"))

希望有帮助;从 尼拉夫

Add a Listbox to Windows Form and Add following code on Form Load or other events :-

ListBox1.Items.AddRange(Directory.GetFiles("Your Directory PAth Here"))

Hope IT Helps ; From Nirav

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