type * > foo.txt

T

thufir

type foo.txt > bar.txt works fine, why no wildcard?


C:\>type C:\java\sources\atreides\monsters *.* > java.txt
Access is denied.
Error occurred while processing: C:\java\sources\atreides\monsters.

build.xml



build.xml.hello
build.xml.jtidy



build.xml.monsters



foo.txt



C:\>
 
P

Pegasus \(MVP\)

You either have to add double quotes or a slash,
depending on what you really mean:

type "C:\java\sources\atreides\monsters *.*" > java.txt
type C:\java\sources\atreides\monsters\*.* > java.txt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top