我相信这个问题的答案应该很简单。我从一个地方获取一个目录列表并将它们存储到一个文本文档中。然后我读取文本文档名称并将它们存储到一个数组中。在此过程结束时,我希望擦除阵列中的所有条目。
我想这样做的原因是因为我要浏览几个文件夹位置并将它们存储到同一个数组中。但是,当我每次都没有清除数组时,当我稍后尝试将其打印出来时,它似乎给了我各种各样的麻烦。
每次去填写下一个文件夹时,我都需要一个新数组。
REM **************************************************************************
REM this part needs to delete the value but doesnt
set !array[%arraywiper%]!=0
REM **************************************************************************
Run Code Online (Sandbox Code Playgroud)
这是我遇到的问题的一个例子。可以运行下面的代码来看看我在说什么。
ECHO OFF & setLocal EnableDELAYedExpansion
cls
REM creates folder for text doc
IF EXIST "c:\TEMP" (echo.) else (md c:\TEMP\)
REM Scans C:\Program Files (x86) and stores into a text doc
(for /f "delims=" %%a in ('dir /a:D-H-S /on /b "C:\Program Files (x86)"') do echo %%a)> c:\TEMP\dork_array_wipe.txt
REM Counts the folders in the text doc
for /d %%a in ("C:\Program Files (x86)\"*) do (
set /a locationcount+=1
)
REM Stores the values from the doc into an array
for /F "usebackq delims=" %%a in ("c:\TEMP\dork_array_wipe.txt") do (
set /A i+=1
call set array[%%i%%]=%%a
)
set arraywiper=1
:Arraywipeloop19
IF %arraywiper%==%locationcount% GOTO Arraywipecomplete19 else (
REM Prints array to show value entered array
echo array (%arraywiper%): !array[%arraywiper%]!
REM **************************************************************************
REM this part needs to delete the value but doesnt
set !array[%arraywiper%]!=0
REM **************************************************************************
Set /a arraywiper+=1
REM Prints out array in question to veryify change took place
echo array (%arraywiper%): !array[%arraywiper%]!
GOTO Arraywipeloop19
)
:Arraywipecomplete19
pause
Run Code Online (Sandbox Code Playgroud)
Rojo 先生给了我一个很好的解决方案。这是它如何工作的一个例子。
@echo off
setlocal
set "array[0]=foo"
set "array[1]=bar"
set "array[2]=baz"
set "array[3]=qux"
set "array[4]=quux"
set "array[5]=corge"
echo.
echo first printout
echo %array[0]%, %array[1]%, %array[2]%, %array[3]%, %array[4]%, %array[5]%
pause
rem // starting with element 3, delete 2 elements and insert 3 new
call :splice array 3 2 grault garply waldo
echo.
echo second printout
echo %array[0]%, %array[1]%, %array[2]%, %array[3]%, %array[4]%, %array[5]%, %array[6]%, %array[7]%
pause
call :splice array 0
REM set array[
REM goto :EOF
echo.
echo third printout
echo %array[0]%, %array[1]%, %array[2]%, %array[3]%, %array[4]%, %array[5]%, %array[6]%
pause
set "array[0]=foo"
set "array[1]=bar"
set "array[2]=baz"
set "array[3]=qux"
set "array[4]=quux"
set "array[5]=corge"
echo.
echo fourth printout
echo %array[0]%, %array[1]%, %array[2]%, %array[3]%, %array[4]%, %array[5]%, %array[6]%
pause
:splice <array_name> <startIDX> [<deleteCount> [<item1> [<item2> [...]]]]
rem // works like JavaScript Array.prototype.splice()
rem // https://developer.mozilla.org/en-US/search?q=Array.prototype.splice()
setlocal enabledelayedexpansion
set /a idx = 0, argskip = 0, inserted = 0, orig_ubound = -1
if "%~3"=="" (set /a "resume = 1 << 30") else set /a resume = %~2 + %~3
for /f "tokens=1* delims==" %%I in ('set %~1[') do (
set /a orig_ubound += 1
if !idx! lss %~2 (
set "tmp[!idx!]=%%J"
set /a ubound = idx, idx += 1
) else (
if !inserted! equ 0 (
for %%# in (%*) do (
set /a argskip += 1, inserted = 1
if !argskip! gtr 3 (
set "tmp[!idx!]=%%~#"
set /a ubound = idx, idx += 1, resume += 1
)
)
)
if !idx! geq !resume! (
set "tmp[!idx!]=%%J"
set /a ubound = idx, idx += 1
) else set /a resume -= 1
)
)
set "r=endlocal"
for /f "tokens=1* delims=[" %%I in ('2^>NUL set tmp[') do (
set "r=!r!&set "%~1[%%J""
)
for /L %%I in (%idx%,1,%orig_ubound%) do set "r=!r!&set "%~1[%%I]=""
%r%&exit/b
Run Code Online (Sandbox Code Playgroud)
这是我上面评论的插图,演示了变量的使用setlocal和endlocal忘记变量。
@echo off
setlocal
set idx=0
rem // populate array
setlocal enabledelayedexpansion
for /f "delims=" %%I in ('dir /b /a:-d') do (
set "array[!idx!]=%%~nxI"
set /a idx += 1
)
rem // display array
set array[
rem // destroy array
endlocal
rem // result
set array[
Run Code Online (Sandbox Code Playgroud)
或者,如果您更喜欢遍历数组元素而不是set用于输出它们的值:
@echo off
setlocal
set idx=0
rem // populate array
setlocal enabledelayedexpansion
for /f "delims=" %%I in ('dir /b /a:-d') do (
set "array[!idx!]=%%~nxI"
set /a ubound = idx, idx += 1
)
rem // display array
for /L %%I in (0,1,%ubound%) do echo array[%%I]: !array[%%I]!
rem // destroy array
endlocal
rem // result
echo %array[0]%
Run Code Online (Sandbox Code Playgroud)
编辑:如果您必须使用索引数组方法操作变量集合,我编写了一个:splice与 JavaScript 的Array.prototype.splice(). 您可以使用它来删除元素、插入元素、两者的组合,甚至可以根据需要清除整个数组。(只是call :splice arrayname 0为了取消设置数组中的所有元素。)
@echo off
setlocal
set "array[0]=foo"
set "array[1]=bar"
set "array[2]=baz"
set "array[3]=qux"
set "array[4]=quux"
set "array[5]=corge"
rem // starting with element 3, delete 2 elements and insert 3 new
call :splice array 3 2 grault garply waldo
set array[
goto :EOF
:splice <array_name> <startIDX> [<deleteCount> [<item1> [<item2> [...]]]]
rem // works like JavaScript Array.prototype.splice()
rem // https://developer.mozilla.org/en-US/search?q=Array.prototype.splice()
setlocal enabledelayedexpansion
set /a idx = 0, argskip = 0, inserted = 0, orig_ubound = -1
if "%~3"=="" (set /a "resume = 1 << 30") else set /a resume = %~2 + %~3
for /f "tokens=1* delims==" %%I in ('set %~1[') do (
set /a orig_ubound += 1
if !idx! lss %~2 (
set "tmp[!idx!]=%%J"
set /a ubound = idx, idx += 1
) else (
if !inserted! equ 0 (
for %%# in (%*) do (
set /a argskip += 1, inserted = 1
if !argskip! gtr 3 (
set "tmp[!idx!]=%%~#"
set /a ubound = idx, idx += 1, resume += 1
)
)
)
if !idx! geq !resume! (
set "tmp[!idx!]=%%J"
set /a ubound = idx, idx += 1
) else set /a resume -= 1
)
)
set "r=endlocal"
for /f "tokens=1* delims=[" %%I in ('2^>NUL set tmp[') do (
set "r=!r!&set "%~1[%%J""
)
for /L %%I in (%idx%,1,%orig_ubound%) do set "r=!r!&set "%~1[%%I]=""
%r%&exit/b
Run Code Online (Sandbox Code Playgroud)