edit SideBar
The following bash script can be used to remove spaces from filenames.
for file in *; do mv "$file" `echo $file | tr -d " "`; done