We have written a C++ console mode program using MS VC++ 6.0 in
Windows XP. The program uses a Windows library to read in
directories. Additionally, we use some DOS system commands (PAUSE,
COPY, etc.). Finally, some .bat files are used for process control,
and we use the windows scheduler.
Given this very general description, what, if any, are the likely
compatibility issues that we will face if we try to run the program on
Windows Server OS?
For additional information, the following are the program's include statements:
#include <iostream>
#include <fstream>
#include <vector>
#include <cstring>
#include <string>
#include <sstream> //to change int to string or vice versa
#include <algorithm>
#include <math.h> //for calc stats
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <windows.h> //for file finder
#include <utility> //for pair |