When I create a category in my CMS, I want to create its directory/folder in an image directory.
Can I create a directory or folder with php?
Can anyone tell me how please?
You want mkdir:
mkdir("/path/to/my/dir");
or
mkdir("/path/to/my/dir", 0700);
If you want it to be private to the user creating it.
mkdir
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With