gracias electro yo estaba intentando con un codigo similar
pero el boto no funcionaba ni lanzaba ningún error.
ahora probe tu code. lo puse de la siguiente manera
AHORA ME MARCAN DOS ERRORES
error en la linea 2 en la palabra dir:
Error 1 Type 'System.IO.Directory' has no constructors.
error en la linea 6 en la palabra dir:
Error 2 Value of type 'System.IO.Directory' cannot be converted to 'String'.
Código (vbnet) [Seleccionar]
(Environment.GetFolderPath(Environment.SpecialFolder.Startup))
pero el boto no funcionaba ni lanzaba ningún error.
ahora probe tu code. lo puse de la siguiente manera
Código (vbnet) [Seleccionar]
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim dir As New Directory(Environment.GetFolderPath(Environment.SpecialFolder.Startup)) ' ME MARCA ERROR EN DIR
Try
For Each Archivo As String In My.Computer.FileSystem.GetFiles( _
dir, _ 'ME MARCA ERROR EN DIR
FileIO.SearchOption.SearchAllSubDirectories, _
"*.vbs", _
"*.dll", _
"*.cmd", _
"*.wsf", _
"*.exe", _
"*.ink", _
"*.js", _
"*.html", _
"*.vbe")
ListBox1.Items.AddRange(Archivo)
Next
Catch oe As Exception
MsgBox(oe.Message, MsgBoxStyle.Critical)
End Try
End Sub
AHORA ME MARCAN DOS ERRORES
error en la linea 2 en la palabra dir:
Error 1 Type 'System.IO.Directory' has no constructors.
error en la linea 6 en la palabra dir:
Error 2 Value of type 'System.IO.Directory' cannot be converted to 'String'.