octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #57666] dir returns wrong "folder" for the "."


From: Mike Miller
Subject: [Octave-bug-tracker] [bug #57666] dir returns wrong "folder" for the "." entry in a directory
Date: Sat, 25 Jan 2020 14:36:04 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36

URL:
  <https://savannah.gnu.org/bugs/?57666>

                 Summary: dir returns wrong "folder" for the "." entry in a
directory
                 Project: GNU Octave
            Submitted by: mtmiller
            Submitted on: Sat 25 Jan 2020 11:36:02 AM PST
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Regression
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

In Octave 5.1 and 5.2, the dir function returns the right thing:


>> mkdir ("/tmp/emptydir");
>> list = dir ("/tmp/emptydir");
>> list(1).name
ans = .
>> list(1).folder
ans = /tmp/emptydir


In Octave 6, this entry gets the wrong "folder" value, it gets the value of
the current working directory instead:


>> mkdir ("/tmp/emptydir");
>> list = dir ("/tmp/emptydir");
>> list(1).name
ans = .
>> list(1).folder
ans = /home/mike





    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?57666>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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