A ghostly "The Sims 4" File?
Hi everyone!
I've been looking around a lot for this problem which seems common but not in this form, tons of good informations and solutions but none that worked for me.
My girlfriend and I have been playing The Sims 4 forever, which means I have saves that date years long of work, builds and mods (that are mostly up-to-date and if not, tested harmless). I recently tried reinstalling the game and as I always do, put back everything (my backups) into my sims 4 folder but... for some reasons that folder doesn't exist anymore...
Yes I checked my iCloud preferences, it's not synced, yes I launched my game to "generate" one, funny thing is the game does launch and have it's "saved games" but it's just nowhere to be found in the computer, and yes I also searched with the search bar for it.
I usually used the folder icon to find quickly the specific save files and even now it doesn't bring me nowhere clicking on it or either searching for the specific path shown in the screenshot below.
So what happens is I try to put an original "The Sims 4" File into EA's folder, but it's completely ignored and uses a ghost one that isn't anywhere visible and I can't use my old saves, can't use any mods or anything custom... Sad ☹️
SO does anyone have this problem or similar? Any solutions?
Thank you!
@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.