for %%i in (*.txt) do (
    echo %%i %%~z%i
	if %%~z%i LSS 1 (
        echo.move %%i
	move "%%i" "C:\EmptyFiles\%%i"
        )
)