I have been sent to a "basic" scripting class. The instructor started with DOS stuff. How can I create a .bat file that will create a dir, subdir and a .txt file? thanks, LM
Matlyn, This is a .NET FAQ newsgroup so you probably won't get much answers. MKDIR \dir\subdir ECHO Hello > \dir\subdir\hello.txt Jason Newell Software Engineer www.jasonnewell.net matlyn wrote: > I have been sent to a "basic" scripting class. The instructor started with > DOS stuff. > > How can I create a .bat file that will create a dir, subdir and a .txt file? > > thanks, > LM
Thank you, Jason. Sorry I posted in the wrong area. "Jason Newell" wrote: > Matlyn, > > This is a .NET FAQ newsgroup so you probably won't get much answers. > > MKDIR \dir\subdir > ECHO Hello > \dir\subdir\hello.txt > > Jason Newell > Software Engineer > www.jasonnewell.net > > matlyn wrote: > > I have been sent to a "basic" scripting class. The instructor started with > > DOS stuff. > > > > How can I create a .bat file that will create a dir, subdir and a .txt file? > > > > thanks, > > LM >