gpt4 book ai didi

windows - 批量标准化文件路径

转载 作者:可可西里 更新时间:2023-11-01 09:47:10 25 4
gpt4 key购买 nike

有没有办法从绝对文件路径批量解析..?例如,以下批处理脚本应输出 C:\Users\xyz\other\abc.txt:

REM Project dir is an absolute path, for example, C:\Users\xyz\project\
SET projectDir=%~1

REM Target file is a path relative to the project dir, for example, ..\other\abc.txt
SET target=%~2

REM Concatenate paths. This becomes C:\Users\xyz\project\..\other\abc.txt
SET absoluteTarget=%projectDir%%target%
SET absoluteTargetClean=...
echo %absoluteTargetClean%

absoluteTarget 变量引用现有文件。

我需要相同的目录而不是文件。你能用同样的方法来实现吗?

最佳答案

我想知道,怎么会有人想出像 C:\Users\xyz\project\..\other\abc.txt 这样的路径,但我们开始吧:

SET "absPath=C:\Users\xyz\project\..\other\abc.txt"
for %%i in ("%absPath%") do SET "absPathClean=%%~fi"
echo %absPathClean%

适用于文件和文件夹。

有关详细信息,请参阅 for/?

关于windows - 批量标准化文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48764076/

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