With Python, it has os.path.splitext() to replace the extension name to something as follows.
import os.path
names = os.path.splitext('hello.exe')
print names[0] + ".coverage"
And I have hello.coverage
.
Does C# has equivalent functions as python's os.path?
ANSWERED
using System;
using System.IO;
namespace Hello
{
class Code
{
static void Main(string[] args)
{
string path = "hello.exe";
string newPath = Path.ChangeExtension(path, ".coverage");
Console.WriteLine("{0} - {1}", path, newPath);
}
}
}
System.IO.Path.ChangeExtension
does what you want:EDIT: Your using statement should be
using System.IO
, and then you can use it as you have it or like this:Also,
Console.WriteLine
can't be used as you have it. You could do this though:Console.WriteLine("{0} - {1}", path, newPath);