Problem to Create C++ Project

I´m trying to create C++ Project, but i don´t know how to solve this problem. I´ve read many possibilities, but didn´t understand anything of this.

The project could not be compiled. Would you like to open it in Visual Studio?

Running C:/Program Files/Epic Games/4.11/Engine/Binaries/DotNET/UnrealBuildTool.exe AgendallC Development Win64 -project=“C:/Users/bruno/Documents/Bruno/Serviços/AplicativoAgendall/Arquivos/UNREAL/C+/AgendallC/AgendallC.uproject” -editorrecompile -progress -noubtmakefiles -NoHotReloadFromIDE -2015
@progress push 5%
Parsing headers for AgendallCEditor
Running UnrealHeaderTool “C:\Users\bruno\Documents\Bruno\Servi?os\AplicativoAgendall\Arquivos\UNREAL\C+\AgendallC\AgendallC.uproject” “C:\Users\bruno\Documents\Bruno\Servi?os\AplicativoAgendall\Arquivos\UNREAL\C+\AgendallC\Intermediate\Build\Win64\AgendallCEditor\Development\UnrealHeaderTool.manifest” -LogCmds=“loginit warning, logexit warning, logdatabase error” -Unattended -WarningsAsErrors -installed
Reflection code generated for AgendallCEditor in 2,5032014 seconds
@progress pop
Performing 7 actions (4 in parallel)
[3/7] Resource ModuleVersionResource.rc.inl
[2/7] Resource PCLaunch.rc
PCH.AgendallC.h.cpp
C:\Users\bruno\Documents\Bruno\Servi?os\AplicativoAgendall\Arquivos\UNREAL\C+\AgendallC\Intermediate\Build\Win64\UE4Editor\Development\AgendallC\PCH.AgendallC.h.cpp(1): fatal error C1083: Cannot open include file: ‘C:\Users\bruno\Documents\Bruno\Servi??os\AplicativoAgendall\Arquivos\UNREAL\C+\AgendallC\Source\AgendallC\AgendallC.h’: No such file or directory
-------- End Detailed Actions Stats -----------------------------------------------------------
ERROR: UBT ERROR: Failed to produce item: C:\Users\bruno\Documents\Bruno\Servi?os\AplicativoAgendall\Arquivos\UNREAL\C+\AgendallC\Binaries\Win64\UE4Editor-AgendallC.dll
Total build time: 6,92 seconds

Could you please paste some code as there is no way to help you otherwise.
Also this is a pretty classic and explicit compiler error so I would advise you to first check for your AgendallC.h file path.

It looks like the compiler is looking for AgendallC.h, which you reference in your precompiled header (PCH).

This might be because you deleted the file or because the build tools are choking on the non-ascii character “ç” in your file path. If you don’t still have a class called AgendallC then search for and delete any #includes that refer to this file. If you do still need this file, recreate it. If neither of those work, try renaming your “Serviços” folder to “Servicos”.

Worked. Was very simple. Thanks man, you really helped me.