Code: Select all
172.16.121.10
192.168.1.5
and I have the command to show foldername in subdirectory:
Code: Select all
@ECHO OFF
FOR /R . %%A in (.) do (
echo %%~nA
)
PAUSE
but output is not complete foldername:
Code: Select all
172.16.121
192.168.1
if foldername isn't ipaddress it echo the complete foldername
i want to echo the complete foldername
thanks for your help!