I know you can run a cmd command through VB.Net, with the Shell in VB.NET:
Shell("CMD.exe /c {comando cmd aki}")
However, when you have to use command like cd, to change the directory, it does not seem possible with the above code. Explaining best, I want to execute a Batch file (.bat), only I do not want to use an external file, I want to use only the application in VB.NET for this. I'll give an example in a pseudo-code:
Shell("CMD.EXE /c cd C:\LocalPath")
ContinuaShellAnterior("mkdir Locale\")
ContinuaShellAnterior("cd Locale\")
Understand? In case, this code would go:
Access the directory C: \ LocalPath Would create a directory within the C: \ LocalPath directory, called Locale Would access the directory C: \ LocalPath \ Locale \
Did you understand what I want?