https://bugs.kde.org/show_bug.cgi?id=424912

--- Comment #2 from Rüdiger Bente <ruediger.be...@gmx.de> ---
no reaction here, but for those with a similar problem....
I use inotifywait for a temporary solution, running a script in bash nonstop:

#!/bin/bash

inotifywait -mrq -e move --format %w%f /home/xxxx/Downloads | while read FILE
do
    EXP=$(echo -n $FILE | tail -c 4)
    if [ "$EXP" = ".jpg" ]; then
        touch $FILE
    fi
done

by the way, the timestamp for files created by this bug are always 2446-05-11
00:38:55 which is the unix timestamp 15032385535 which is hex 37FFFFFFF  or
binary 1101111111111111111111111111111111. Could be a buffer problem???

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to