Recuerda que en las ciencias un problema casi siempre tiene diferentes resoluciones, no obstante te enseñamos lo mejor y más óptimo.
Ejemplo 1: cmd para bucle
REM # | EXAMPLE: For loop to copy all the files in the current directory to the C:User folder
For %F in(*)do copy %F C:User
REM # | SYNTAX
REM # | For %F in () do
REM # | NOTE: you can use the following to extract specific parts of a filepath
REM # | take note that this syntax only works when run from a batch file
@echo off
setlocal
setfile=C:Usersl72rugschiriDesktopfs.cfg
for %%N IN ("%file%")do(echofiledrive=%%~dN
echofilepath=%%~pN
echofilename=%%~nN
echofileextension=%%~xN
echodefault=%%N
)
Ejemplo 2: ventanas de lotes para
syntax-FOR-List of numbers
FOR /L %%parameter IN (start,step,end) DO command
syntax-FOR-Command Results
FOR /F ["options"] %%parameter IN ('command to process') DO command
Nos encantaría que puedieras compartir esta división si te valió la pena.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)