gpt4 book ai didi

file - 从路径 Msbuild 获取文件名

转载 作者:行者123 更新时间:2023-12-05 08:42:24 27 4
gpt4 key购买 nike

<PropertyGroup>
<fileName>$(FilePath.Substring($(FilePath.LastIndexOf('\'))))</fileName>
</PropertyGroup>

我试过上面的代码。但是我正在获取包括最后一个“\”的文件名。例如。\数据.xml。我只需要 Data.xml。我怎样才能得到它?

谢谢...

最佳答案

您可以添加另一个 Substring 调用左右来去除第一个字符,但更方便且不易出错的方法是使用正确的 System.IO.Path 函数,请参阅 Property Functions :

<PropertyGroup>
<fileName>$([System.IO.Path]::GetFileName('$(FilePath)'))</fileName>
</PropertyGroup>

关于file - 从路径 Msbuild 获取文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41952641/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com