A ghostly "The Sims 4" File?
- 5 years ago
@InfinityOdin There's no way the game would run without generating its folders somewhere. The question is where. I messed up one character in the previous command (sorry, I'm still trying to get better with Terminal) and gave you one that would only search the current user folder. This will search your whole hard drive:
find / -type d -name "*The Sims 4*" 2>/dev/null
In case you're curious, the / means the whole hard drive, even if it's partitioned; the -type d means directory (as opposed to individual files); the name *The Sims 4* means anything with that string in the name, and the last part filters out errors that you'd get when running it, mostly permission denied for system files we're not supposed to be able to access. Unlike searching the user folder, this one will in fact take a little while, but only in terms of a minute or two.