#!/bin/bash
#while [ x$path = "x" ]
#do 
#read -p "Please path of the fold :" path
#done

function del {
   for i in `ls $1`
   do
        if [ -d $1"/"$i ]; then

        del $1"/"$i;

        else
                if ! [ $i = "main.mp4"  ];then
                        rm -rf $1"/"$i
                fi

        fi
   done
}
del /home/www/media/videos/iphone;