Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
Module System_Command
|
||||
|
||||
Sub Main()
|
||||
Dim cmd As New Process
|
||||
cmd.StartInfo.FileName = "cmd.exe"
|
||||
cmd.StartInfo.RedirectStandardInput = True
|
||||
cmd.StartInfo.RedirectStandardOutput = True
|
||||
cmd.StartInfo.CreateNoWindow = True
|
||||
cmd.StartInfo.UseShellExecute = False
|
||||
|
||||
cmd.Start()
|
||||
|
||||
cmd.StandardInput.WriteLine("dir")
|
||||
cmd.StandardInput.Flush()
|
||||
cmd.StandardInput.Close()
|
||||
|
||||
Console.WriteLine(cmd.StandardOutput.ReadToEnd)
|
||||
End Sub
|
||||
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue