So you have a directory with a file
dir/myfile
dir is inside a svn folder and you do
svn add dir
svn --force rm dir/.*
You were trying to not add some .something files but you did it the wrong way.
You now do ls and dir is no there. You have a problem. You still have a copy of myfile, so you do:
mkdir newdir
cd newdir
cp fromsomeplace/myfile .
svn add .
But no. svn complains that newdir is scheduled to be removed.
Note this:
$ svn status
D .