How do I get the full path for a given file?
e.g. I provide:
string filename = @\"test.txt\";
Result should be:
Full Fi
private const string BulkSetPriceFile = "test.txt"; ... var fullname = Path.GetFullPath(BulkSetPriceFile);