]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle PARENTS properly in tramp-*-handle-make-directory
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 8 Oct 2017 11:55:20 +0000 (13:55 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 8 Oct 2017 11:55:20 +0000 (13:55 +0200)
* lisp/net/tramp-adb.el (tramp-adb-handle-make-directory):
* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-make-directory):
Handle PARENTS properly.

* test/lisp/net/tramp-tests.el (tramp-test13-make-directory):
Extend test.

lisp/net/tramp-adb.el
lisp/net/tramp-gvfs.el
test/lisp/net/tramp-tests.el

index 5268e80a33df3ea1f02d1099df1994bfd02ad5c0..e75efcf483f9b36b1770027deb98879004a503f3 100644 (file)
@@ -549,11 +549,12 @@ Emacs dired can't find files."
       (let ((par (expand-file-name ".." dir)))
        (unless (file-directory-p par)
          (make-directory par parents))))
-    (tramp-adb-barf-unless-okay
-     v (format "mkdir %s" (tramp-shell-quote-argument localname))
-     "Couldn't make directory %s" dir)
     (tramp-flush-file-property v (file-name-directory localname))
-    (tramp-flush-directory-property v localname)))
+    (tramp-flush-directory-property v localname)
+    (unless (or (tramp-adb-send-command-and-check
+                v (format "mkdir %s" (tramp-shell-quote-argument localname)))
+               (and parents (file-directory-p dir)))
+      (tramp-error v 'file-error "Couldn't make directory %s" dir))))
 
 (defun tramp-adb-handle-delete-directory (directory &optional recursive _trash)
   "Like `delete-directory' for Tramp files."
index 3a1c9f9b5ac1175016e06cddfe8aebb06182bca5..2b29a1b55f559de6578364da3f2dd883fef092ce 100644 (file)
@@ -1206,8 +1206,9 @@ file-notify events."
        (when (and parents (not (file-directory-p ldir)))
          (make-directory ldir parents))
        ;; Just do it.
-       (unless (tramp-gvfs-send-command
-                v "gvfs-mkdir" (tramp-gvfs-url-file-name dir))
+       (unless (or (tramp-gvfs-send-command
+                    v "gvfs-mkdir" (tramp-gvfs-url-file-name dir))
+                   (and parents (file-directory-p dir)))
          (tramp-error v 'file-error "Couldn't make directory %s" dir))))))
 
 (defun tramp-gvfs-handle-rename-file
index a8fe06d4e67a00df4c17e3c82947291d314733c9..14102e7725c77c8a6023b8f92989e24ab46e748f 100644 (file)
@@ -2105,7 +2105,10 @@ This tests also `file-directory-p' and `file-accessible-directory-p'."
            (should-error (make-directory tmp-name2) :type 'file-error)
            (make-directory tmp-name2 'parents)
            (should (file-directory-p tmp-name2))
-           (should (file-accessible-directory-p tmp-name2)))
+           (should (file-accessible-directory-p tmp-name2))
+           ;; If PARENTS is non-nil, `make-directory' shall not
+           ;; signal an error when DIR exists already.
+           (make-directory tmp-name2 'parents))
 
        ;; Cleanup.
        (ignore-errors (delete-directory tmp-name1 'recursive))))))