
115129
23.08.2016, aktualisiert um 00:22:45 Uhr
Ein Verzeichnis auf Minimal-Maximal-Anzahl Überwachen und Unterverzeichnisse löschen
Hallo zusammen,
ich benutze seit längerer Zeit folgendes Script um verschiedene Verzeichnisse auf eine minimal/maximal-Anzahl von Dateien zu überwachen und ggfls. zu löschen:
Nun soll das Script nicht die in dem angegebenen Verzeichnis (Y:\Backup) enthaltenen Dateien überwachen/löschen, sondern existierende Unterverzeichnisse.
z.B.: Y:\Backup\2016.07.23\ Y:\Backup\2016.07.24\ Y:\Backup\2016.07.25\ Y:\Backup\2016.07.26\
Kann mir jemand sagen was an dem bestehenden Script geändert werden müsste?
Vielen Dank.
Gruß,
Blattlaus
ich benutze seit längerer Zeit folgendes Script um verschiedene Verzeichnisse auf eine minimal/maximal-Anzahl von Dateien zu überwachen und ggfls. zu löschen:
@echo off & setlocal
::ZU UEBERWACHENDE VERZEICHNISSE
Set "Dir_01=Y:\Backup"
Set "Dir_01_min=7"
Set "Dir_01_max=7"
::ABARBEITUNG
if defined Dir_01 for /f %%i in ('dir /a-d /b "%Dir_01%\*.*"^|find /c /v ""') do if %%i gtr %Dir_01_max% (
for /f "skip=%Dir_01_min% delims=" %%j in ('dir /a-d /b /o-d "%Dir_01%\*.*"') do del "%Dir_01%\%%j"
)
Exit
Nun soll das Script nicht die in dem angegebenen Verzeichnis (Y:\Backup) enthaltenen Dateien überwachen/löschen, sondern existierende Unterverzeichnisse.
z.B.: Y:\Backup\2016.07.23\ Y:\Backup\2016.07.24\ Y:\Backup\2016.07.25\ Y:\Backup\2016.07.26\
Kann mir jemand sagen was an dem bestehenden Script geändert werden müsste?
Vielen Dank.
Gruß,
Blattlaus
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 313232
Url: https://administrator.de/forum/ein-verzeichnis-auf-minimal-maximal-anzahl-ueberwachen-und-unterverzeichnisse-loeschen-313232.html
Ausgedruckt am: 04.04.2025 um 14:04 Uhr
13 Kommentare
Neuester Kommentar
Hi,
wenn es (wie ich vorbehaltlich des konkreten Anwendungsfalls vermute) um das Löschen von Dateien abhängig vom Zeitstempel geht, dann wäre das wohl ein Fall für delage32.
Gruß,
André
wenn es (wie ich vorbehaltlich des konkreten Anwendungsfalls vermute) um das Löschen von Dateien abhängig vom Zeitstempel geht, dann wäre das wohl ein Fall für delage32.
Gruß,
André

@echo off & setlocal
::ZU UEBERWACHENDE VERZEICHNISSE
Set "Dir_01=Y:\Backup"
Set "Dir_01_min=7"
Set "Dir_01_max=7"
::ABARBEITUNG
for /d %%a in ("%Dir_01%\*") do (
for /f %%i in ('dir /a-d /b "%%~a\*.*" ^|find /c /v ""') do if %%i gtr %Dir_01_max% (
for /f "skip=%Dir_01_min% delims=" %%j in ('dir /a-d /b /o-d "%%~a\*.*"') do del "%%~a\%%j"
)
)

@echo off & setlocal
::ZU UEBERWACHENDE VERZEICHNISSE
Set "Dir_01=Y:\Backup"
Set "Dir_01_min=7"
Set "Dir_01_max=7"
::ABARBEITUNG
for /d %%a in ("%Dir_01%\*") do (
for /f %%i in ('dir /ad /b "%%~a" ^|find /c /v ""') do if %%i gtr %Dir_01_max% (
for /f "skip=%Dir_01_min% delims=" %%j in ('dir /b /ad /o-d "%%~a"') do rd "%%j" /s
)
)

Here it works....it takes the modification date from the filesystem not from your folder names!

Arg, now I understand, sorry hopefully.
Note this takes the modification date of the folder, not the date of your folder names!
Note this takes the modification date of the folder, not the date of your folder names!
@echo off & setlocal
::ZU UEBERWACHENDE VERZEICHNISSE
Set "Dir_01=Y:\Backup"
Set "Dir_01_min=3"
Set "Dir_01_max=7"
::ABARBEITUNG
for /f %%i in ('dir /ad /b "%Dir_01%\*" ^|find /c /v ""') do set "cnt=%%i"
if %cnt% GTR %Dir_01_max% (
for /f "skip=%Dir_01_min% delims=" %%j in ('dir /b /ad /o-d "%Dir_01%\*"') do rd "%Dir_01%\%%j" /s
)

You copied it wrong , works without problems. I suppose you missed a character somewhere.

Yes,
you have saved your file as unicode... ;-P
And you should copy it with from the window behind the button Quelltext
And you have an error in line 11, see my code above.
that's much work with you
my dear ...
you have saved your file as unicode... ;-P
And you should copy it with from the window behind the button Quelltext
And you have an error in line 11, see my code above.
that's much work with you