The "folder view" is provided by the netrw plugin (cp. :help netrw-intro-browse) that is included in the default Vim installation. You can disable it by putting
:let g:loaded_netrwPlugin = 1
into your ~/.vimrc file. However, your real problem is bad :autocmds that do not handle so-called scratch buffers (i.e. artificial buffers that do not correspond to an actual file, but are used to display plugin functionality). You'll probably encounter similar problems with other plugins, too, so rather fix or remove those autocmds! Disabling netrw is just working around the problem.
:Exis too damn useful, fix yourautocmdissue instead. Besides, how would you type:Ex<cr>by accident? – romainl Nov 22 '12 at 11:17autocmdproblem. Go back to your other question and show us your vimrc so that we can help you. If you really really really want to get rid ofnetrwthere's no option to put in your vimrc I know of: just go to your$VIMRUNTIMEand delete thenetrw.vimfile. – romainl Nov 22 '12 at 11:25