I've tried a lots of things and I created this code myself at the end:
Code:
#!/bin/bash
Dropbox="/home/youruser/Dropbox"
Directory="/home/youruser/newfiles"
if [ "$(ls $Dropbox)" ]; then
echo "Found files in $Dropbox!"
echo "Moving..."
cd $Dropbox
mv * $Directory
echo "Everything done!"
else
echo "$Dropbox is Empty!"
echo "Nothing to move."
fi
This will check the "Dropbox" folder for files. If there are any, they will be copied to "Directory".
Now I'm searching for a way to make this run every 15 minutes...
Bookmarks