Tag

file deletion

0 views collected around this technical thread.

Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 25, 2024 · Frontend Development

Why Deleting node_modules Is Slow and How to Delete It Instantly with rimraf

The article explains why removing the massive node_modules folder can take a long time, then shows how to instantly delete it using the rimraf tool, compares rimraf with other deletion commands, and discusses its advantages for Node.js‑based frontend projects.

Node.jsfile deletionfrontend
0 likes · 6 min read
Why Deleting node_modules Is Slow and How to Delete It Instantly with rimraf
Practical DevOps Architecture
Practical DevOps Architecture
Oct 11, 2024 · Operations

Troubleshooting Disk Space Not Released After Deleting Files on Linux

This article explains why disk space may not be freed after deleting large log files on a Linux server, describes the underlying file system mechanisms, and provides a step‑by‑step troubleshooting guide using /tmp cleanup and the lsof command to identify and kill lingering processes.

LinuxOperationsTroubleshooting
0 likes · 7 min read
Troubleshooting Disk Space Not Released After Deleting Files on Linux
php中文网 Courses
php中文网 Courses
Oct 18, 2023 · Backend Development

How to Use PHP unlink() to Delete Files and Directories

This tutorial explains the PHP unlink() function, covering its syntax, parameters, return values, and practical examples for deleting both files and empty directories, while also noting its limitations and the need for rmdir() when handling non‑empty directories.

Backend DevelopmentPHPdirectory deletion
0 likes · 5 min read
How to Use PHP unlink() to Delete Files and Directories