OS Windows 7 and language english. I did the file exchange, but the problem continues
Yes, but do you use winrar or 7-zip to extract files from archives? As Eagle said you can check the archive for errors/file integrity (with winrar anyway) in case it downloaded incorrectly. With 7-zip you can only compare checksums with someone else. You should try that so that you know the archive you downloaded didn't somehow corrupt or something during the download.
Another thing to consider is whether the game files are blocked, like this example:
You must be registered to see the links
That can sometimes cause errors. I use powershell to remove the blocked file status from directories of files as used in these instructions:
Another easy way is to unblock entire directories using PowerShell. However, you should be absolutely certain that all the files contained in that directory are perfectly safe and won’t harm your computer in any way. For PowerShell 3.0, you need Windows Management Framework 3.0 installed on your computer.
Press Windows + S to launch the search bar. Type “PowerShell” in the dialogue box, right-click on the result and select “Run as administrator”.
Once PowerShell is opened, enter the following command and press Enter.
dir C:\Downloads -Recurse | Unblock-File
Or if this doesn’t work, try
dir C:\Downloads | Unblock-File
Right-click in powershell pastes clipboard
No idea if read-only might cause errors like that too. If you're testing this you'll probably want to rename the files back.
I was originally thinking maybe you had a non-english environement on your OS and you should use
You must be registered to see the links
but that doesn't seem to be the case.