It depends on what you're trying to do. You don't need to create any files prior to invoking a command.
If a file exists on an http server called test.file, to download it you would use:
wget
http://server.name/path/to/test.file
And then you'd have test.file right there in the current directory.
--Shade