10#include "Misc/Paths.h"
19 ULogFile* LogFile = NewObject<ULogFile>(ULogFile::StaticClass());
23 LogFile->
Create(FileNameWithoutExtension, Settings);
45 FString Folder = FString(
"/Logs/");
46 FString LogDirPath = FPaths::Combine(*ProjectPath, *Folder);
48 if (!std::filesystem::exists(TCHAR_TO_UTF8(*LogDirPath)))
50 if (!std::filesystem::create_directory(TCHAR_TO_UTF8(*LogDirPath)))
61 if (!std::filesystem::exists(TCHAR_TO_UTF8(*Settings.
FilePath)))
63 bool created = std::filesystem::create_directories(TCHAR_TO_UTF8(*Settings.
FilePath));
65 LogFilePath = FPaths::Combine(*Settings.
FilePath, *FileNameWithoutExtension) + TEXT(
".txt");
69 LogFilePath = FPaths::Combine(*LogDirPath, *FileNameWithoutExtension) + TEXT(
".txt");
89 FString UniqueFileName = FileNameWithoutExtension + TEXT(
"_") + FString::FromInt(suffix++);
90 FString UniqueLogFilePath = FPaths::Combine(*LogDirPath, *UniqueFileName) + TEXT(
".txt");
92 while (std::filesystem::exists(TCHAR_TO_UTF8(*UniqueLogFilePath)))
94 UniqueFileName = FileNameWithoutExtension + TEXT(
"_") + FString::FromInt(suffix++) + TEXT(
".txt");
95 UniqueLogFilePath = FPaths::Combine(*LogDirPath, *UniqueFileName);
98 LogFilePath = UniqueLogFilePath;
107 std::ofstream newFile(TCHAR_TO_UTF8(*LogFilePath), std::ios::app);
108 if (newFile.is_open())
114 std::ifstream file(TCHAR_TO_UTF8(*LogFilePath));
125 if (
FilePath.IsEmpty() || !IsValid(
this))
139 FString MessageToAdd = Text;
142 std::time_t now = std::time(
nullptr);
143 std::tm tm_time = *std::localtime(&now);
145 std::strftime(timestamp,
sizeof(timestamp),
"[%H:%M:%S] ", &tm_time);
146 MessageToAdd = FString(timestamp) + Text;
167 if (std::filesystem::exists(TCHAR_TO_UTF8(*
FilePath)))
169 std::ofstream clearFile(TCHAR_TO_UTF8(*
FilePath), std::ofstream::out | std::ofstream::trunc);
180 ConditionalBeginDestroy();
198 std::string filePathString(TCHAR_TO_UTF8(*
FilePath));
222 if (
FilePath.IsEmpty() || !IsValid(
this))
229 std::string filePathString(TCHAR_TO_UTF8(*
FilePath));
240 std::time_t now = std::time(
nullptr);
241 std::tm tm_time = *std::localtime(&now);
243 std::strftime(timestamp,
sizeof(timestamp),
"[%H:%M:%S] ", &tm_time);
245 LogFileStream << timestamp << TCHAR_TO_UTF8(*Text) << std::endl;
static FString GetDataFolder()
static void OpenFileExplorer(FString Path)
void WriteQueuedMessages()
FLogFileSettings CurrentSettings
void Write(const FString &Text)
std::ofstream LogFileStream
void WriteToFile(const FString &Text, bool UseTimestamp)
static ULogFile * CreateLogFile(const FString &FileNameWithoutExtension, FLogFileSettings Settings=FLogFileSettings())
void Create(const FString &FileNameWithoutExtension, FLogFileSettings Settings)
TArray< FString > MessageQueue
FFileWriteOptions FileWriteOptions
FFileCreationOptions FileCreationOptions