using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine(System.Reflection.Assembly.GetEntryAssembly().Location); Console.WriteLine(System.IO.Path.GetFullPath("../test.wav")); Console.WriteLine(System.IO.Path.GetFullPath("../../test.wav")); Console.WriteLine(System.IO.Path.GetFullPath("../../sounds/test.wav")); Console.ReadLine(); } } }