Search found 2 matches

by LemuresExMachina
11 Feb 2008 10:15
Forum: DOS Batch Forum
Topic: A (hopefully) simple question
Replies: 2
Views: 7351

If it heps here is the C++ code that comprizes sigtest: #include <fstream> #include <Windows.h> using namespace std; int main( int argc, char *argv[]) { fstream f; char buffer[512]; char retbuffer[33]; f.open(argv[2],ios_base::in); if(!f.is_open()) { } ...
by LemuresExMachina
11 Feb 2008 09:26
Forum: DOS Batch Forum
Topic: A (hopefully) simple question
Replies: 2
Views: 7351

A (hopefully) simple question

I've recently had to write a few batch files at work, and have been having some trouble with them. After a lot of attempts at doing everything I needed in the batch files themselfs I decided it would be better for me to stick to what I know, which is C. The trouble that I am haveing now is the follo...