vote up 20 vote down star
4

What is the equivalent to /dev/null in Windows?

flag

3 Answers

vote up 34 vote down check

I think you want NUL.

For example:

type c:\autoexec.bat > NUL

doesn't create a file.

link|flag
vote up 8 vote down

According to this message on the GCC mailing list, you can use the file "nul" instead of /dev/null:

#include <stdio.h>

int main ()
{ 
      FILE* outfile = fopen ("/dev/null", "w");
      if (outfile == NULL)
        {
      fputs ("could not open '/dev/null'", stderr);
        }
      outfile = fopen ("nul", "w");
      if (outfile == NULL)
        {
      fputs ("could not open 'nul'", stderr);
        }

      return 0;
}

(Credits to Danny for this code; copy-pasted from his message.)

You can also use this special "nul" file through redirection.

link|flag
vote up 4 vote down

Jon Skeet is correct. Here is the Nul Device Driver page in the Windows Embedded docs (i have no idea why its not somewhere else...) HEre is another

link|flag
1  
Of course Jon Skeet is correct. Thank you for stating an obvious and universal truth :) – Martinho Fernandes Feb 21 at 3:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.