Reputation: 6098
Is there a rename method for Laravel 5's Filesystem? I looked in the API and in the documentation, could not find it. I am trying to rename a directory, is there an easier way to do this?
Upvotes: 0
Views: 1257
Reputation: 39389
The move() method will work on both files and directories.
Upvotes: 2