Property FileName
FileName
Gets the file name without the directory path.
public string FileName { get; }
Property Value
Examples
Getting the file name:
var resource = skill.GetResource("scripts/validate.py");
Console.WriteLine(resource.FileName); // "validate.py"