Preciso obter a última parte do diretório atual, por exemplo /Users/smcho/filegen_from_directory/AIRPassthrough
, preciso obter AIRPassthrough
.
Com python, posso obtê-lo com este código.
import os.path
path = "/Users/smcho/filegen_from_directory/AIRPassthrough"
print os.path.split(path)[-1]
Ou
print os.path.basename(path)
Como posso fazer a mesma coisa com c #?
ADICIONADO
Com a ajuda dos respondentes, encontrei o que precisava.
using System.Linq;
string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar);
string projectName = fullPath.Split(Path.DirectorySeparatorChar).Last();
ou
string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar);
string projectName = Path.GetFileName(fullPath);
os.path.basename(path)
.