all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@gnu.support>
To: "Felix E. Klee" <felix.klee@inka.de>
Cc: help-gnu-emacs@gnu.org
Subject: Re: How to rename files to numbers in Eshell?
Date: Sun, 12 Sep 2021 22:03:54 +0300	[thread overview]
Message-ID: <YT5PGpeh3zfTokDC@protected.localdomain> (raw)
In-Reply-To: <87ee9u2neh.fsf@inka.de>

* Felix E. Klee <felix.klee@inka.de> [2021-09-12 11:46]:
> Jean Louis <bugs@gnu.support> writes:
> > (defun renumber-files (&optional files)
> > […]
> 
> Thanks for the alternative approach, Jean!
> 
> It’s still quite verbose, though, even involving the creation of a
> custom function.
> 
> Renaming files to numbers is actually very easy using Dired’s
> `wdired-change-to-wdired-mode`, and then doing regexp replace.  The
> purpose of my question is to learn a bit about Eshell.

Is there any regular expression counter replacement so that each new
replacement get a new number?

> > I have chosen to renumber it by date, you can customize it
> > yourself. It is handy when I am downloading many pictures or videos,
> > then I know at what date they were downloaded. Of course in that case
> > I don't mind of file names significance, that is why I am renumbering
> > them.
> 
> For organizing imported media files by date, I have a Bash script
> `organize_media`:
> 
> https://gist.github.com/feklee/85b5f13e83c796472dda16e31e32b7f3

I don't use Bash any more for that, I use Emacs Lisp.

For pictures, I made "sort-images", it is definitely not perfect for
everybody, but it serves me to sort those files that come from camera
devices or phone to sort them by year, month, date into their
corresponding folders.

(defun rcd-image-date-match (file)
  (string-match "[[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][_-]" file))

(defun sort-images (&optional prefix)
  (interactive "P")
  (let ((files (dired-get-marked-files)))
    (dolist (file files)
      (let* ((attributes (file-attributes file))
	     (file-base (file-name-base file))
	     (file-ext (file-name-extension file))
	     (position (rcd-image-date-match file-base))
	     (modification-time (file-attribute-modification-time attributes))
	     (year (if current-prefix-arg
		       (format-time-string "%Y" modification-time)
		       (substring file-base position (+ position 4))))
	     (month (if current-prefix-arg
			(format-time-string "%m" modification-time)
		      (substring file-base (+ 4 position) (+ position 6))))
	     (day (if current-prefix-arg
		      (format-time-string "%d" modification-time)
		    (substring file-base (+ 6 position) (+ position 8))))
	     (dir (concat "/home/data1/protected/Media/Pictures/Pictures/Year-" year "/" month "/" year "-" month "-" day "/"))
	     (destination (concat "/home/data1/protected/Media/Pictures/Pictures/Year-" year "/" month "/" year "-" month "-" day "/" file-base "." file-ext)))
	(mkdir dir t)
	(message (concat "Copy file to: " destination))
	(if (file-exists-p destination)
	    (if (y-or-n-p (concat "Overwrite: " destination))
		(rename-file file destination t))
	  (rename-file file destination))))
    (revert-buffer)))




-- 
Jean

Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns

In support of Richard M. Stallman
https://stallmansupport.org/



  reply	other threads:[~2021-09-12 19:03 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-11 13:15 How to rename files to numbers in Eshell? Felix E. Klee
2021-09-11 13:40 ` Jean Louis
2021-09-12  8:44   ` Felix E. Klee
2021-09-12 19:03     ` Jean Louis [this message]
2021-09-13  9:28       ` Jean Louis
2021-09-13 11:52         ` tomas
2021-09-14  7:42         ` Felix E. Klee
2021-09-14  9:17           ` Jean Louis
2021-09-14  9:32             ` tomas
2021-09-14 11:11             ` Felix E. Klee
2021-09-14 13:37               ` Jean Louis
2021-09-14 15:48                 ` Felix E. Klee
2021-09-16 22:37                   ` Michael Heerdegen
2021-09-16 22:47             ` Michael Heerdegen
2021-09-17  7:27               ` Felix E. Klee
2021-09-24  7:21         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-25 13:43           ` Jean Louis
2021-09-26  2:50             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-30  6:38         ` Felix E. Klee
2021-09-30  7:37           ` Jean Louis
2021-09-30  7:50             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-30 13:17             ` Felix E. Klee
2021-09-30 15:34               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-30 21:42                 ` Jean Louis
2021-10-01  0:09                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-01 20:51                     ` Jean Louis
2021-10-01 21:34                       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-02  7:53                         ` Lack of integration in Emacs - it was " Jean Louis
2021-10-03  8:16                           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-03  9:27                             ` Jean Louis
2021-10-04  3:29                               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-04 10:15                                 ` Jean Louis
2021-10-04 11:22                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-22 14:46       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-22 14:27   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-16 12:15 ` Felix E. Klee
2021-09-16 15:11   ` Nick Dokos
2021-09-16 16:07     ` Felix E. Klee

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YT5PGpeh3zfTokDC@protected.localdomain \
    --to=bugs@gnu.support \
    --cc=felix.klee@inka.de \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.