gpt4 book ai didi

string - 从字符串路径获取文件名?

转载 作者:行者123 更新时间:2023-12-04 21:15:53 25 4
gpt4 key购买 nike

如何从该字符串获取文件名?

"C:\Documents and Settings\Usuario\Escritorio\hello\test.txt"

输出:
"test.txt"

我真的试图在发布之前找到这个文件,但是所有结果都被污染了,他们谈论从当前目录获取文件名(我只能使用字符串)

最佳答案

方法1

for %%F in ("C:\Documents and Settings\Usuario\Escritorio\hello\test.txt") do echo %%~nxF

键入 HELP FOR获取更多信息。

方法2
call :sub "C:\Documents and Settings\Usuario\Escritorio\hello\test.txt"
exit /b

:sub
echo %~nx1
exit /b

键入 HELP CALL获取更多信息。

关于string - 从字符串路径获取文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10393248/

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