I tried to get the directory of the console application using the below code,
Assembly.GetExecutingAssembly().Location
but this one gives m
Safest way:
string temp = Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase);