Skip to content

Execute System Command

cpp
const FString DirPath = "C:";

const FString OpenInExplorer = FString::Printf(TEXT("explorer /n, /e \"%s\"&"), *DirPath);

/* execute command */
system(TCHAR_TO_ANSI(*OpenInExplorer));