J'ai un problème avec le fichier "Application.evtx". Chaque fois que j'exécute mon script, j'obtiens une boîte de message avec l'information "File not found" et je ne sais pas pourquoi. J'ai lancé Visual Studio en tant qu'administrateur. Aidez-moi à résoudre ce problème, s'il vous plaît.
Imports System.IO
Module Module1
Sub Main()
Dim pathReadFile As String = "c:\Windows\System32\winevt\Logs\Application.evtx"
'Dim pathReadFile As String = "%windir%\Sysnative\winevt\Logs\Application.evtx"
'Dim pathReadFile As String = "D:\Dokumenty\MyTest.txt"
Try
If File.Exists(pathReadFile) Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If
Catch ex As Exception
End Try
End Sub
End Module