QUOTE
Originally posted by jgalt
I typed D:vorbis dailyoggenc.exe -h > oggtext.txt
An error message then popped up saying it couldn't find the file and then named everything I had typed
If you specify a filename or pathname with a space in it you need to enclose it in double inverted commas.
There are two ways to run your command. I don't have XP so I dont know it's default DOS diirectory. When you go to a DOS look at the left-hand side prompt. It should show you your current drive e.g. C:WINDOWS>
Method 1: Issue command with the full path specified i.e.
type "D:vorbis dailyoggenc.exe" -h >> ogghelp.txt
would place ogghelp.txt into your current directory, whereas as
type "D:vorbis dailyoggenc.exe" -h > "d:vorbis dailyogghelp.txt "
will place it in the same directory as oggenc regardless of where you have issued the command from. Howerver it's much easier to issue relative commands that assume the file you want to work with is in the current drive and directory. Method 2:
d:
cd "vorbis daily"
type oggenc -h > ogghelp.txt