Skip to content

Instantly share code, notes, and snippets.

@juancarlospaco
Last active October 13, 2023 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juancarlospaco/a8cde1d7f798129c10a61f5f0f59ac48 to your computer and use it in GitHub Desktop.
Save juancarlospaco/a8cde1d7f798129c10a61f5f0f59ac48 to your computer and use it in GitHub Desktop.
Unreal Engine 5 project folder Minify/Anonymizer/Cleaner in Nim
import std/[os, strutils, json, sequtils]
proc main(cwd: string) =
if dirExists(cwd / "Content"):
# Minify uproject to valid minimal.
for f in walkPattern(cwd / "*.uproject"):
let uproject = parseFile(f)
if uproject.contains"Category": uproject.delete"Category"
if uproject.contains"Description": uproject.delete"Description"
if uproject.contains"EngineAssociation": uproject.delete"EngineAssociation"
writeFile(f, $uproject)
echo "Minified\t", f
break
# Delete all caches.
for folder in walkDirRec(cwd, yieldFilter = {pcDir}, relative=off, checkDir=off, skipSpecial=off):
for f in ["DerivedDataCache", "Intermediate", "Binaries", "Build", "Saved", "Content" / "Collections", "Content" / "Developers"]:
if folder == cwd / f:
echo "Deleted\t", folder
removeDir(folder)
if dirExists(cwd / "Config"):
for f in walkPattern(cwd / "Config" / "*.ini"):
# Delete editor-specific local-only settings.
if extractFilename(f) in ["DefaultEditorPerProjectUserSettings.ini", "DefaultGamePerProjectUserSettings.ini"]:
if tryRemoveFile(f): echo "Deleted\t", f
else:
# Minify INI to valid minimal.
writeFile(f, readFile(f).strip.splitLines.filterIt(it.strip.len > 0).join("\n"))
echo "Minified\t", f
else: quit "IO Error: Unreal Engine project folder not found or not writable."
when isMainModule:
doAssert paramCount() == 1, "Full path to Unreal Engine project folder must be the only argument"
main(paramStr(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment