0

I try to install glashfish4 to Windows.

The instructions mentions to crete a directory for images.

I open cmd and I do to the glashfish path with cd and I type:

mkdir -p /var/webapp/images

and the error I receive:

The syntax of the command is incorrect

What path could I set to create this directory?

Emklj
  • 39
  • 10

1 Answers1

0

The syntax is linux based as the command also uses the linux filesystem. Here is the documentation on mkdir for windows:

Technet Documentation

So:

mkdir "Drive:\path\to\new\directory"
Andrew Li
  • 55,805
  • 14
  • 125
  • 143