Answers for "C# get extention file"

C#
1

c# get file extension

string myFilePath = @"C:MyFile.txt";
string ext = Path.GetExtension(myFilePath);
// ext would be ".txt"
Posted by: Guest on August-11-2020

Code answers related to "C# get extention file"

C# Answers by Framework

Browse Popular Code Answers by Language