开发者

How i can use DOS Command in VB.NET?

I want to run this "rar a -rr10 -s c:\backup.rar c:\file.txt" DOS command in vb.net, my main problem is that i want to compress file in Winrar software using vb.net coding. a button is press in window form that compress the file.

This "rar a -rr10 -s c:\backup.rar c:\file.txt" DOS command compress the file.txt to backup.rar

Tell me multip开发者_StackOverflow社区le ways if anyone know to complete above task.


1. Using Process.Start directly:

Imports System.Diagnostics
...

Process.Start("rar.exe", "a -rr10 -s c:\backup.rar c:\file.txt")

2. Using ProcessStartInfo:

Imports System.Diagnostics
...

Dim startInfo As New ProcessStartInfo("rar.exe")
startInfo.Arguments = "a -rr10 -s c:\backup.rar c:\file.txt"
' ... possibly set other parameters here... '

Process.Start(startInfo)

(Of course you might have to specify the path to rar.exe if it's not in the current directory.)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜