Access to backend, menu Settings > Mail Templates must show all normal setting
Access to backend, menu Settings > Mail Templates show error exception
Cannot use File as File because the name is already in use
/home/cms/public_html/modules/system/models/MailTemplate.php line 4

The log doesn't show any stack trace
This happen after update to build 426
426
7.0.9
Looks like this would be caused by the fact that there is a System\ModelsFile class in the same namespace (see https://stackoverflow.com/a/17747378/6652884) but I have no idea why it would only just now become an issue for you.
What build of October were you previously running?
What is your server environment like? i.e. what server software are you using?
Also, could you check if this also affects Mail Layout, Mail Partials, and Mail Brand Settings?
This affect Mail Layout, Mail Partials, and Mail Brand Settings too. And the same issue affect to MediaManager, but with Form class instead of File.
I have another OC (same server) with build 424 and I can access to Mail Templates, but if I send an email, I have this exception.

The server is an Ubuntu Linux 15.10
Apache 2.4.23
PHP 7.0.9
The environment is development, this installation is for devel and test plugins and themes.
Plugins installed:
The MediaManager issue would be the same thing as this because it's been moved to Backend\Widgets, which already had a Backend\WidgetsForm class. I'll need to discuss this with @daftspunk, the solution is probably to use those aliases under another name:
use Form as FormAlias;
use File as FileAlias;
and then update the references in the files that use those aliases to call methods on FormAlias instead of Form.
Great, this simple solution works fine. I tested without problems.
@alvaro-canepa @korneliuskristianr Could you please test https://github.com/octobercms/october/commit/d292eeb85ecb57f2aa84ab573ea6467584f268e2?
Thanks, works fine!
[Symfony\Component\Debug\Exception\FatalErrorException]
Cannot use File as File because the name is already in use
solution this pb?
@bouzidseyf full stack trace please, and what version of October are you using?
Most helpful comment
The MediaManager issue would be the same thing as this because it's been moved to Backend\Widgets, which already had a Backend\WidgetsForm class. I'll need to discuss this with @daftspunk, the solution is probably to use those aliases under another name:
and then update the references in the files that use those aliases to call methods on
FormAliasinstead ofForm.