Файл DOS BAT, эквивалентный команде Unix basename?

Есть ли простой способ получить базовое имя (имя файла без расширения) имени файла DOS с помощью командного языка DOS BAT ?

Я согласен: формат c: \ , вероятно, является хорошим началом, за ним следует загрузочный компакт-диск с Linux (при условии, что на этих старинных машинах есть устройство для чтения компакт-дисков - не факт). Но давайте представим, что у нас есть только DOS ... (Это означает: ни Windows, ни даже Windows 3.1, не говоря уже о Windows 95, 98, NT, ME, XP, Vista, 7 и т. Д.)

37
задан Ross Ridge 3 August 2016 в 16:42
поделиться

4 ответа

For command-line

for /F %i in ("c:\foo\bar.txt") do @echo %~ni

output: bar

Для .bat-файлов

set FILE="c:\foo\bar.txt"
for /F %%i in ("%FILE%") do @echo %%~ni

вывод: bar

p.s. если путь содержит пробел, используйте @ciantic's version.

(Further Reading: http://www.computerhope.com/forhlp.htm )

45
ответ дан 27 November 2019 в 04:23
поделиться

В команде цикла FOR вы можете использовать %% ~ n .

2
ответ дан 27 November 2019 в 04:23
поделиться

Чтобы расширить ответы hobodave и ars , вот соответствующий фрагмент справки из команды for :

In addition, substitution of FOR variable references has been enhanced.
You can now use the following optional syntax:

    %~I         - expands %I removing any surrounding quotes (")
    %~fI        - expands %I to a fully qualified path name
    %~dI        - expands %I to a drive letter only
    %~pI        - expands %I to a path only
    %~nI        - expands %I to a file name only
    %~xI        - expands %I to a file extension only
    %~sI        - expanded path contains short names only
    %~aI        - expands %I to file attributes of file
    %~tI        - expands %I to date/time of file
    %~zI        - expands %I to size of file
    %~$PATH:I   - searches the directories listed in the PATH
                   environment variable and expands %I to the
                   fully qualified name of the first one found.
                   If the environment variable name is not
                   defined or the file is not found by the
                   search, then this modifier expands to the
                   empty string

The modifiers can be combined to get compound results:

    %~dpI       - expands %I to a drive letter and path only
    %~nxI       - expands %I to a file name and extension only
    %~fsI       - expands %I to a full path name with short names only
    %~dp$PATH:I - searches the directories listed in the PATH
                   environment variable for %I and expands to the
                   drive letter and path of the first one found.
    %~ftzaI     - expands %I to a DIR like output line

In the above examples %I and PATH can be replaced by other valid
values.  The %~ syntax is terminated by a valid FOR variable name.
Picking upper case variable names like %I makes it more readable and
avoids confusion with the modifiers, which are not case sensitive.
30
ответ дан 27 November 2019 в 04:23
поделиться

Кроме того, у MKS Toolkit есть базовое имя util ...

http://www.mkssoftware.com/docs/man1/basename.1.asp

3
ответ дан 27 November 2019 в 04:23
поделиться
Другие вопросы по тегам:

Похожие вопросы: