Necesito obtener la última parte del directorio actual, por ejemplo /Users/smcho/filegen_from_directory/AIRPassthrough
, necesito obtener AIRPassthrough
.
Con python, puedo obtenerlo con este código.
import os.path
path = "/Users/smcho/filegen_from_directory/AIRPassthrough"
print os.path.split(path)[-1]
O
print os.path.basename(path)
¿Cómo puedo hacer lo mismo con C #?
ADICIONAL
Con la ayuda de los que respondieron, encontré lo que necesitaba.
using System.Linq;
string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar);
string projectName = fullPath.Split(Path.DirectorySeparatorChar).Last();
o
string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar);
string projectName = Path.GetFileName(fullPath);
os.path.basename(path)
.