Working through Unreal Engine 5 C++ The Ultimate Game Developer Course on udemy. Finished the course!
https://www.udemy.com/course/unreal-engine-5-the-ultimate-game-developer-course/
https://www.youtube.com/watch?v=3m7zwrdR0Sc
https://www.youtube.com/watch?v=EbecrGsEiHQ
The Screenshots folder is stored in s3 bucket Need to move the content folder to s3
Pull down from bucket
#Execute this from the directory above CPPUE5UltGameDevCrs
aws s3 cp --recursive s3://<bucket>/CPPUE5UltGameDevCrs/Content CPPUE5UltGameDevCrs/Content
aws s3 cp --recursive s3://<bucket>/CPPUE5UltGameDevCrs/Assets CPPUE5UltGameDevCrs/Assets
aws s3 cp --recursive s3://<bucket>/CPPUE5UltGameDevCrs/Screenshots CPPUE5MultiplayerShooter/Screenshots
Push to bucket
#Execute this from the directory above CPPUE5UltGameDevCrs
aws s3 cp --recursive CPPUE5UltGameDevCrs/Content s3://<bucket>/CPPUE5UltGameDevCrs/Content
aws s3 cp --recursive CPPUE5UltGameDevCrs/Assets s3://<bucket>/CPPUE5UltGameDevCrs/Assets
aws s3 cp --recursive CPPUE5UltGameDevCrs/Screenshots s3://<bucket>/CPPUE5UltGameDevCrs/Screenshots
Or just do a sync
#Execute this from the directory above CPPUE5UltGameDevCrs
aws s3 sync CPPUE5UltGameDevCrs/Content s3://<bucket>/CPPUE5UltGameDevCrs/Content --delete
aws s3 sync CPPUE5UltGameDevCrs/Assets s3://<bucket>/CPPUE5UltGameDevCrs/Assets --delete
aws s3 sync CPPUE5UltGameDevCrs/Screenshots s3://<bucket>/CPPUE5UltGameDevCrs/Screenshots --delete