all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#6817: (Feature request w/ patch) wdired should create directories needed for destination files
@ 2010-08-06 21:26 Phil Sung
  2016-02-26  6:44 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 5+ messages in thread
From: Phil Sung @ 2010-08-06 21:26 UTC (permalink / raw
  To: 6817

[-- Attachment #1: Type: text/plain, Size: 482 bytes --]

It is sometimes useful in wdired to be able to move files into
directories that don't yet exist, e.g. when one is reorganizing files
and directories. The attached patch (against git HEAD), based on
previous work by Joakim Verona (source:
http://www.emacswiki.org/emacs/WDired), makes wdired create parent
directories needed as necessary for the destination files, conditional
on the variable `wdired-create-parent-directories'.

What do others think of this feature?

Regards,
Phil

[-- Attachment #2: wdired-create-parent-directories.patch --]
[-- Type: text/x-patch, Size: 1661 bytes --]

diff --git a/lisp/wdired.el b/lisp/wdired.el
index 375bc26..c8997f3 100644
--- a/lisp/wdired.el
+++ b/lisp/wdired.el
@@ -168,6 +168,16 @@ program `dired-chmod-program', which must exist."
 		 (other :tag "Bits freely editable" advanced))
   :group 'wdired)
 
+(defcustom wdired-create-parent-directories nil
+  "If non-nil, create parent directories of destination files.
+
+If non-nil, when you rename a file to a destination path within a
+nonexistent directory, wdired will create any parent directories
+necessary. When nil, attempts to rename a file into a nonexistent
+directory will fail."
+  :type 'boolean
+  :group 'wdired)
+
 (defvar wdired-mode-map
   (let ((map (make-sparse-keymap)))
     (define-key map "\C-x\C-s" 'wdired-finish-edit)
@@ -478,6 +488,8 @@ non-nil means return old filename."
               (require 'dired-aux)
               (condition-case err
                   (let ((dired-backup-overwrite nil))
+                    (and wdired-create-parent-directories
+                         (wdired-create-parentdirs file-new))
                     (dired-rename-file file-ori file-new
                                        overwrite))
                 (error
@@ -487,6 +499,11 @@ non-nil means return old filename."
                             err)))))))))
     errors))
 
+(defun wdired-create-parentdirs (file-new)
+  "Create parent directories for FILE-NEW if they don't exist."
+  (and (not (file-exists-p (file-name-directory file-new)))
+       (message "Creating directory for file %s" file-new)
+       (make-directory (file-name-directory file-new) t)))
 
 (defun wdired-exit ()
   "Exit wdired and return to dired mode.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-28  4:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-06 21:26 bug#6817: (Feature request w/ patch) wdired should create directories needed for destination files Phil Sung
2016-02-26  6:44 ` Lars Ingebrigtsen
2016-02-26 17:49   ` Ingo Lohmar
2016-02-27  0:51     ` John Wiegley
2016-02-28  4:30       ` Lars Ingebrigtsen

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.