View Single Post
  #4  
Old 03-04-2022, 00:39
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
hello why when i type this command i get the following message?

Code:
for /f "tokens=*" %%i in ('dir /b /s /a *.mp4') do cd.>"%%i"
%%i was unexpected
You need to replace %%i with %i when using cmd. Double % is for batch files.
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
fabrieunko (03-04-2022)