YEBOTS Telegram 536
function remove_dir($path){
if(is_dir($path) === false){
return false;
}
$dir = opendir($path);
while (($file = readdir($dir) )!== false)
{
if($file == '.' OR $file == '..')
{
continue;
}
if(is_file($path.'/'.$file))
{
unlink($path.'/'.$file);
}
elseif(is_dir($path.'/'.$file))
{
remove_dir($path.'/'.$file);
}
}
rmdir($path);
closedir($dir);
}
remove_dir('folder');
### Example ######
كود حذف المجلد حتى ولو فيه بيانات ( ملفات - مجلدات )
👨‍💻 كتاباتي :- أجمل الخالدي @Th3star
📡 المصدر :- { عالم البرمجيات } @YeBots
💡 أمر الاستخدام
remove_dir("مسار المجلد");
تنشر اذكر المصدر...........



tgoop.com/YEbots/536
Create:
Last Update:

function remove_dir($path){
if(is_dir($path) === false){
return false;
}
$dir = opendir($path);
while (($file = readdir($dir) )!== false)
{
if($file == '.' OR $file == '..')
{
continue;
}
if(is_file($path.'/'.$file))
{
unlink($path.'/'.$file);
}
elseif(is_dir($path.'/'.$file))
{
remove_dir($path.'/'.$file);
}
}
rmdir($path);
closedir($dir);
}
remove_dir('folder');
### Example ######
كود حذف المجلد حتى ولو فيه بيانات ( ملفات - مجلدات )
👨‍💻 كتاباتي :- أجمل الخالدي @Th3star
📡 المصدر :- { عالم البرمجيات } @YeBots
💡 أمر الاستخدام
remove_dir("مسار المجلد");
تنشر اذكر المصدر...........

BY عالم البرمجيات


Share with your friend now:
tgoop.com/YEbots/536

View MORE
Open in Telegram


Telegram News

Date: |

The visual aspect of channels is very critical. In fact, design is the first thing that a potential subscriber pays attention to, even though unconsciously. Clear ZDNET RECOMMENDS To delete a channel with over 1,000 subscribers, you need to contact user support Invite up to 200 users from your contacts to join your channel
from us


Telegram عالم البرمجيات
FROM American