如何从bat中的完整路径中提取文件名?

时间:2014-01-21 11:55:08

标签: batch-file command-line command-prompt

变量%result%包含路径"D:\My Folder1\My Folder 2\My Folder 3\The Important File.txt"。我想将The Important File存储在另一个变量中。也就是说,我想从完整路径中提取文件名(无扩展名)。

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:2)

这应该可以满足您的需求。

@echo off
for %%a in ("%result%") do set "newvariable=%%~na"