rmdir #include < unistd.h > #include < stdio.h > int main(){ if (rmdir("work") < 0){ perror("rmdir"); return 1; } return 0; }