Answers for "get path of a file within the project folder in c#"

C#
0

c# relative path to project folder

string fileName = "ich_will.mp3";
string path = Path.Combine(Environment.CurrentDirectory, @"Data", fileName);
Posted by: Guest on September-03-2020

Code answers related to "get path of a file within the project folder in c#"

C# Answers by Framework

Browse Popular Code Answers by Language