#!/bin/sh

APP=qMetro
DATADIR=/home/user/MyDocs/Data

if [ -d $DATADIR/$APP ]; then
  rm -rf $DATADIR/$APP/
fi

rmdir $DATADIR
	
exit 0