0

我试图制作一个 vbscript,它将列出 dir 中的所有内容并通读每个文件,提取数据以使用该数据作为参数来操作和运行 powershell 脚本。我发现以下开始,但它不起作用。有人可以帮忙吗?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    ' make a reference to a directory
    Dim di As New IO.DirectoryInfo("c:\")
    Dim diar1 As IO.FileInfo() = di.GetFiles()
    Dim dra As IO.FileInfo

    'list the names of all files in the specified directory
    For Each dra In diar1
        ListBox1.Items.Add(dra)
    Next
End Sub
4

1 回答 1

0

VBScript 和 VB 很像,不过距离上次用 VB 已经很久了……

AFAIR ListBox1.Items.Add() 需要和 Item 或字符串作为参数,而不是 FileInfo 对象尝试使用 ListBox1.Items.Add(FileInfo.FullName)

于 2012-05-24T16:49:42.220 回答