سؤال

Is there any downside to using unlink() to delete a folder (and its contents) in php?

هل كانت مفيدة؟

المحلول

You can't. unlink can only delete files, not directories. You can delete directories with rmdir, but that will only delete empty directories. You will have to unlink individual files first.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top