Cannot find the wrapper folder inside the .gradle folder that is in my user folder

Hello everybody,
I followed the webinar called Introduction to Gradle. And I installed Gradle, then I wrote gradle wrapper to create a wrapper on the first lab. But the webinar says that I should find a wrapper folder inside /Users/username/.gradle. But I do not find it, I only find caches, daemon, natve and notifications. Is there something I should have done? Thank you.

If you’ve installed Gradle and have run gradle wrapper, you should now have gradlew, gradlew.bat, and gradle/ added in the current directory. You would not have anything in /Users/username/gradle/wrapper/ until you run a build with the ./gradlew script that was created rather than with the version you installed and run with the gradle command.

Thank yo very much James :slight_smile: