get the current direcotry path in c# code example
Example 1: get working directory c#
var DDIR = System.IO.Directory.GetCurrentDirectory();
var WorkingDirectory = "";
int index = DDIR.IndexOf(@"\");
if (index > 0)
WorkingDirectory = DDIR.Substring(0, index) + @"\";
Example 2: c# get script directory
System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);