Hallo.
Ich versuche derzeit mit dem Code unten: ein Archiv mit WinRaR zu entpacken, das Funktioniert wenn ich die Datei auf C:\ habe, will es aber im application.startuppath & "\Download\ROM\archive.img.xz & "C:\" das funktioniert irgentwie nicht, er sagt dann immer kein Archiv gefunden bei WinRar.
Hier mal mein Code wie es mit C:\ funktioniert
wollte es so Probieren, aber da sagt er kein Archiv gefunden.
*Theadtitel unbenannt* ~NoFear23m
Ich versuche derzeit mit dem Code unten: ein Archiv mit WinRaR zu entpacken, das Funktioniert wenn ich die Datei auf C:\ habe, will es aber im application.startuppath & "\Download\ROM\archive.img.xz & "C:\" das funktioniert irgentwie nicht, er sagt dann immer kein Archiv gefunden bei WinRar.
Hier mal mein Code wie es mit C:\ funktioniert
VB.NET-Quellcode
- Dim p As New Process
- p.StartInfo.UseShellExecute = False
- p.StartInfo.RedirectStandardOutput = True
- p.StartInfo.RedirectStandardError = True
- p.StartInfo.CreateNoWindow = True
- p.StartInfo.FileName = Application.StartupPath & "\DATA\WinRar.exe"
- p.StartInfo.Arguments = " e " & " " & "C:\archiv.xz" & " " & "C:\"
- p.Start()
- p.WaitForExit()
wollte es so Probieren, aber da sagt er kein Archiv gefunden.
VB.NET-Quellcode
- Dim p As New Process
- p.StartInfo.UseShellExecute = False
- p.StartInfo.RedirectStandardOutput = True
- p.StartInfo.RedirectStandardError = True
- p.StartInfo.CreateNoWindow = True
- p.StartInfo.FileName = Application.StartupPath & "\DATA\WinRar.exe"
- p.StartInfo.Arguments = " e " & " " & Application.StartupPath & "\Download\ROM\archive.img.xz" & " " & "C:\"
- p.Start()
- p.WaitForExit()
*Theadtitel unbenannt* ~NoFear23m
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „Nofear23m“ ()