'emacs why do I have hashes at the ends of my file names i.e. #test.c#

I am using emacs 22.2.1 on Ubuntu 9.04.

Every time I open a file and work on it, and then when I list the files in the directory in the terminal I see hashes at the ends of each file.

i.e.

#test.c#
#test.h#

Why is this and how can I remove them?

Many thanks for any advice,



Solution 1:[1]

These are autosave files.
Have a look at this link to change the files to be in a different directory. Have a look at this

Solution 2:[2]

You have encountered the feature named "autosave". It saves modified buffers that have not been saved by the user for a while.

I have seen people disable it or change the location of the autosaved buffers to a temporary directory. You can also get more info there, for instance.

Solution 3:[3]

Emacs performs a timely backup so you can always have the changes you've made (minus the last 5 minutes of your work) in case of a crash. You can remove it by this command from your working directory rm #*

Solution 4:[4]

It's a recovery file that emacs creates when you haven't saved your file in a while (but only if it contains unsaved text). As soon as you save your file the recover file is removed. If emacs should crash before you can save, the file can be recovered with M-x recover-file.

Solution 5:[5]

Instead of removing these autosave files, I recommend placing them in a hidden directory. They are cheap insurance against data loss.

On Emacs 28 running on Ubuntu linux, I have the following lines in my ~/.emacs config file:

(setq auto-save-file-name-transforms `((".", "~/.emacs-saves" t)))

Additionally, I use this to move the backup files (Those that look like filename~) as well:

(setq backup-directory-alist `(("." . "~/.emacs-saves")))
(setq backup-by-copying t)

Note that you might have a different config file location, this is perfectly fine. If you find ~/.emacs does not exist, then try ~/.emacs.el, ~/.emacs.d/init.el, or ~/.config/emacs/init.el.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 weismat
Solution 2 Pascal Cuoq
Solution 3 Penang
Solution 4 Puppe
Solution 5 dotancohen