Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
What Is "for" Loop Parameter
What Is "for" Loop Parameter?
✍: FYIcenter.com
A "for" loop parameter is a parameter defined in a "for"
command to represent each item from a give list.
A "for" loop parameter must be defined using the "%%name" format, where "name" can be any identifier string.
Same parameter modifiers as batch parameters are also supported on "for" loop parameters as listed below for "%%p":
%%~p - expands %%p removing any surrounding quotes (") %%~fp - expands %%p to a fully qualified path name %%~dp - expands %%p to a drive letter only %%~pp - expands %%p to a path only %%~np - expands %%p to a file name only %%~xp - expands %%p to a file extension only %%~sp - expanded path contains short names only %%~ap - expands %%p to file attributes %%~tp - expands %%p to date/time of file %%~zp - expands %%p to size of file %%~$PATH:p - searches the directories listed in the PATH environment variable and expands %%p 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
You can also apply multiple modifiers together as shown below. The order of modifier locations is not important.
%%~dpp - expands %%p to a drive letter and path only %%~nxp - expands %%p to a file name and extension only %%~dp$PATH:p - searches the directories listed in the PATH environment variable for %%p and expands to the drive letter and path of the first one found. %%~ftzap - expands %%p to a DIR like output line
Of course, those modifiers are mostly applicable to "for" loop parameters that represent file names.
⇒ "for" Loop Parameter Modifiers
⇐ Get Batch Parameter as File Path
2022-02-04, 1335👍, 0💬
Popular Posts:
What is the difference between a Web page and a Single File Web Page? Word 2007 supports 2 Web page ...
What is BTStackServer.exe Process - Bluetooth Stack COM Server? Process BTStackServer.exe is the Blu...
If you are using a wireless router to connecting to the Internet through a DSL modem, how many IP ad...
Where to find tutorials on using Bluetooth? I want to learn how to work with Bluetooth connections? ...
Can I remove startup application "SynTPLpr.exe - TouchPad Driver Helper Application" to speedup my c...