Snippet shows how to uninstall modules programmatically. This is not deleting the files, but doing a full uninstall.
Source code viewer
/** * Implements hook_uninstall(). */ function HOOK_uninstall() { 'modules', 'machine', 'name', 'array', ); module_disable($modules); drupal_uninstall_modules($modules); }Programming Language: PHP