The well-known *nix method of creating an empty file on the command line is:

$ touch filename.ext

In the Windows command line the same can be accomplished with:

> copy NUL filename.ext

Happy hacking :P