Hi
das geht so:
=============> Schnipp <==========
@echo off
REM Schiebe Dateien PART_00001.* bis
REM PART_99999.* bis
REM in neu geschaffene Ordner
REM PART_00001 bis PART_99999
pushd V:\Messdaten
for /L %%A in (1,1,9) do call :work_part 0000%%A
for /L %%A in (10,1,99) do call :work_part 000%%A
for /L %%A in (100,1,999) do call :work_part 00%%A
for /L %%A in (1000,1,9999) do call :work_part 0%%A
for /L %%A in (10000,1,99999) do call :work_part %%A
popd
goto :EOF
:work_part
echo %time%: Suche PART_%1.*...
if not exist PART_%1.* goto :EOF
if not exist PART_%1\ md PART_%1
move PART_%1.* PART_%1\
=============> Schnapp <==========
als "messdaten.cmd" abspeichern