Instead of using a plugin you could just add a line to your “.htaccess” file, to have a specific folder out of WordPress’s scope.
This line has to be before “RewriteBase”!
Example:
…
RewriteEngine On
# My new WordPress-less folder
RewriteRule ^mynewuploads$ – [L]
# Old WordPress stuff
RewriteBase /
…