bug-findutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #48683] possible regression: "no such file or directory" error when


From: anonymous
Subject: [bug #48683] possible regression: "no such file or directory" error when directory is removed during execution
Date: Tue, 2 Aug 2016 22:07:45 +0000 (UTC)
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36

URL:
  <http://savannah.gnu.org/bugs/?48683>

                 Summary: possible regression: "no such file or directory"
error when directory is removed during execution
                 Project: findutils
            Submitted by: None
            Submitted on: Tue 02 Aug 2016 10:07:42 PM UTC
                Category: find
                Severity: 3 - Normal
              Item Group: None
                  Status: None
                 Privacy: Public
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 4.6.0
           Fixed Release: None

    _______________________________________________________

Details:

I am running versions from the Debian sid repositories.

$ apt show findutils
Package: findutils
Version: 4.6.0+git+20160703-2

$ find --version
find (GNU findutils) 4.7.0-git

I was attempting to clean multiple project directories with the same command,
effectively `rm -r` triggered by the presence of a certain file.

The `find` command will print a "no such file or directory" error when a
directory is removed while the command is running. Repro:

$ ls
$ mkdir -p a/b/c
$ touch a/b/test
$ ls -R
.:
a

./a:
b

./a/b:
c  test

./a/b/c:

$ find . -type f -name test -execdir rm -r c \;
find: ā€˜./a/b/cā€™: No such file or directory

$ echo $?
1

$ ls -R
.:
a

./a:
b

./a/b:
test

Expected behavior is identical results but no error, like in GNU find 4.4.2 on
Ubuntu.

Moreover, this error persists even in the presence of `-prune`, which strikes
me as unintuitive.

$ find . -type d -name c -prune -o -type f -name test -execdir rm -r c \;
find: ā€˜./a/b/cā€™: No such file or directory




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?48683>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]