Мое приложение для iphone загружается медленнее, чем другие похожие [закрыто]

Вот два решения.

1) имеет окружающие двойные кавычки и удаляет символ escape. 2) использует find как есть на пути.

for /f %%a in ('""%systemRoot%\system32\find.exe" /c /v "" < "c:\something.txt""') do @echo %%a

for /f %%a in (' find.exe /c /v "" ^< "c:\something.txt"') do @echo %%a

Это связано с запуском дополнительного процесса cmd для запуска командной строки внутри команды.

Любопытно,

for /f %%a in (' "c:\windows\system32\find.exe" /c /v ""  something.txt ') do @echo %%a

Система не может найти указанный путь.

for /f %%a in (' "c:\windows\system32\findstr.exe" /n "."  something.txt ') do @echo %%a

Недопустимое имя каталога.

for /f %%a in (' "c:\windows\notepad" "something.txt" ') do @echo %%a

'c: \ windows\notepad "" something.txt "не распознается как внутренняя или внешняя команда, операционная программа или командный файл.

Это последнее дает понять, что внешний

Windows 8.1 32 бит

Я думаю, что проблема с кавычками описана здесь в cmd /? при вызове дочернего процесса:

If /C or /K is specified, then the remainder of the command line after
the switch is processed as a command line, where the following logic is
used to process quote (") characters:

    1.  If all of the following conditions are met, then quote characters
        on the command line are preserved:

        - no /S switch
        - exactly two quote characters
        - no special characters between the two quote characters,
          where special is one of: &<>()@^|
        - there are one or more whitespace characters between the
          two quote characters
        - the string between the two quote characters is the name
          of an executable file.

    2.  Otherwise, old behavior is to see if the first character is
        a quote character and if so, strip the leading character and
        remove the last quote character on the command line, preserving
        any text after the last quote character.
-12
задан Kym Vaitiekus 18 December 2011 в 04:07
поделиться