Es gibt einen Windows-Port inotifywait
wie in den genannten Kommentaren erwähntinotify-win
Herunterladen:
https://github.com/thekid/inotify-win/archive/master.zip
Kompilieren:
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\csc.exe /t:exe /out:inotifywait.exe src\*.cs
Verwendungszweck:
$ inotifywait.exe Usage: inotifywait [options] path [...] Options: -r/--recursive: Recursively watch all files and subdirectories inside path -m/--monitor: Keep running until killed (e.g. via Ctrl+C) -q/--quiet: Do not output information about actions -e/--event list: Events (create, modify, delete, move) to watch, comma-separated. Default: all --format format: Format string for output. --exclude: Do not process any events whose filename matches the specified regex --excludei: Ditto, case-insensitive Formats: %e : Event name %f : File name %w : Path name %T : Current date and time
Bearbeiten:
Wenn Sie eine schädliche Aktion vermeiden möchten, befindet sich die Lösung möglicherweise icacls
in einem NTFS-Dateisystem
So schützen Sie eine Datei vor dem Löschen:
icacls file.ext /deny Everyone:(DE) rem To reset icacls file.ext /reset
Um einen Ordner mit seinem Inhalt zu schützen, verwenden Sie Folgendes:
icacls folder /deny Everyone:(OI)(CI)(DE,DC) rem To reset icacls folder /reset
*S-1-1-0
statt Everyone
für sprachunabhängig, auch %USERNAME%
für den aktuellen Benutzer.