Get the local directory of an executing assembly
I used this code in C# to get the local directory of an executing assembly or application. var uri = new Uri(Assembly.GetAssembly(typeof(M...

var uri = new Uri(Assembly.GetAssembly(typeof(MyClass)).CodeBase); var path = Path.GetDirectoryName(uri.LocalPath); var outputPath = Path.Combine(path, "MyFolder")
Post a Comment