我需要获取当前目录的最后一部分,例如 from /Users/smcho/filegen_from_directory/AIRPassthrough,我需要获取AIRPassthrough.
/Users/smcho/filegen_from_directory/AIRPassthrough
AIRPassthrough
使用python,我可以用这段代码得到它。
import os.path path = "/Users/smcho/filegen_from_directory/AIRPassthrough" print os.path.split(path)[-1]
或者
print os.path.basename(path)
我怎样才能用 C# 做同样的事情?
在回答者的帮助下,我找到了我需要的东西。
using System.Linq; string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar); string projectName = fullPath.Split(Path.DirectorySeparatorChar).Last();
string fullPath = Path.GetFullPath(fullPath).TrimEnd(Path.DirectorySeparatorChar); string projectName = Path.GetFileName(fullPath);
你正在寻找Path.GetFileName. 请注意,如果路径以\.
Path.GetFileName
\