發表文章

目前顯示的是 2022的文章

[UE4.26] File and Folder Management, Create, Find, Delete

DeleteFile bool UBPLibrary::DeleteFile(FString Path) { IPlatformFile& FileManager = FPlatformFileManager::Get().GetPlatformFile(); return FileManager.DeleteFile(*Path); } DeleteDirectory bool UBPLibrary::DeleteDirectory(FString Path) { IPlatformFile& FileManager = FPlatformFileManager::Get().GetPlatformFile(); return FileManager.DeleteDirectoryRecursively(*Path); } Reference Link:  File and Folder Management, Create, Find, Delete

解決在Windows10中CMD暫停執行的問題

圖片
 停用「Quick Edit Mode」 Keywords: windows 10, quick edit mode Ref: https://www.statmodel.com/download/QuickEdit.pdf

憑證失效網頁打不開,神奇的"thisisunsafe"命令繞過chrome安全檢查

 直接在視窗上輸入"thisisunsafe" 參考連結: thisisunsafe神奇操作 When you use 'badidea' or 'thisisunsafe' to bypass a Chrome certificate/HSTS error...

[UE4] Find InputKey in Blueprint

Search > Nodes(Name=[keyName] ClassName=key) Reference: https://docs.unrealengine.com/4.27/en-US/ProgrammingAndScripting/Blueprints/Search/