After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 81859 - Nautilus doesn't regard current directory.
Nautilus doesn't regard current directory.
Status: RESOLVED DUPLICATE of bug 66233
Product: nautilus
Classification: Core
Component: general
0.x.x [obsolete]
Other All
: Normal minor
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2002-05-15 14:25 UTC by Kalpesh Shah
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.0



Description Kalpesh Shah 2002-05-15 14:25:02 UTC
Nautilus doesn't regard to current directory( the one present in location
bar or the directory that is in current view). It seems that internally it
considers the home directory ( or the from where it began) as its current
directory.

To reproduce, follow the steps:

1. Go to /tmp

2. Create and compile this file:$ cat b.c
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

main()
{
int i;
int x;
char msg[]="12345678";

i = open("./data", O_RDWR | O_CREAT);
x = write(i, msg, 4);
}
$ 

3. Launch a nautilus. Nautilus by default goes to users home directory.
In my case it goes to /usr/user/test3.

4. Change the directory to /tmp

5. Run the a.out that got generated by step 2.

Result: It creates "data" file in /usr/user/test3 instead of /tmp.

Initially I was trying with "data" in open() call, then I changed 
it to "./data" but still it behaves incorrectly.

Expected Result: It should behave like shell. It should create the "data"
file in the directory from where it was launched. i.e. "data" should get
created in /tmp.
Comment 1 Luis Villa 2002-05-17 01:04:11 UTC
Would be nice, but this is almost borderline enhancement, isn't it?
Comment 2 Dave Bordoley [Not Reading Bug Mail] 2002-06-07 07:36:16 UTC

*** This bug has been marked as a duplicate of 66233 ***