c# code : get filename metadata for a given filepath

///
/// Reads Filename metadata for a given filepath
///

///
/// File name
private string ReadFileNameMetadata(string filepath)
{
string FileName = Path.GetFileName(filepath);
return FileName;
}

No comments:

Post a Comment