Yes, you can use Windows 'command line' commands, like DIR, XCOPY, SORT and VER. At least in my Windows XP Help, I can find information about them (XCOPY is a good search word).
You can also run other programs through system.
Examples:
ret = system("dir *.* /w");
ret = system("notepad somefile.c");
...and thank you!
Pelle