How to sort files by extension
Your folder can be so cluttered with all kinds of files, it's terrible to see them. In this video, I show you a little trick to organize them into separate folders
Commands:
@echo off
for %%a in (".\*") do (
if "%%~xa" NEQ "" if "%%~dpxa" NEQ "%~dpx0" (
if not exist "%%~xa" mkdir "%%~xa" (
move "%%a" "%%~dpa%%~xa\"
)
)
)
#netvn #windows10 Help me 700K subscribes https://www.youtube.com/c/NETVN82
Commands:
@echo off
for %%a in (".\*") do (
if "%%~xa" NEQ "" if "%%~dpxa" NEQ "%~dpx0" (
if not exist "%%~xa" mkdir "%%~xa" (
move "%%a" "%%~dpa%%~xa\"
)
)
)
#netvn #windows10 Help me 700K subscribes https://www.youtube.com/c/NETVN82
216.73.216.139