GK89
GK89

Reputation: 664

Windows Command Prompt Change

I'm trying to follow this tutorial and part of it involves working in the Windows Command Prompt. I'm running Windows 7 on a 64 bit machine and running cmd.exe as an administrator. The issue is this line:

../nw/nw.exe app.nw

The file/folder dependency is like this:

myNodeWebkitApps
    helloWorld
    nw

Where nw.exe is located in folder nw and I am executing the line of code from hellowWorld. app.nw is located in the helloWorld folder. The error I recieve is '..' is not recognized as an internal or external command. Any thoughts on how to execute this would be helpful.

Upvotes: 0

Views: 127

Answers (1)

zentrunix
zentrunix

Reputation: 2270

Use ..\nw\nw.exe app.nw (inverted slash, which is the Windows standard path separator).

Upvotes: 2

Related Questions