Home : Adobe : Dreamweaver : Site Management : Remove LCK Files

Adobe Dreamweaver: Remove all .LCK Files

This page shows a simple and very fast way to remove all .LCK files from a Dreamweaver website. This method is for sites running on an Apache server, and must be implemented as a shell command on the server (see remote sessions for more info).

Step 1: Login with a shell prompt, then navigate to your web directly (most likely a folder named public_html or www). For example:

cd /path_to/username/public_html

Step 2: Execute the following command:

find . -name "*.LCK" -exec rm {} \;

Be warned: