* should I use, getcwd() or *environ ?
@ 2005-03-04 21:23 J.
2005-03-05 10:48 ` Rechberger Markus
2005-03-05 11:12 ` Steve Graegert
0 siblings, 2 replies; 5+ messages in thread
From: J. @ 2005-03-04 21:23 UTC (permalink / raw)
To: linux-c-programming
Friday, March 04 22:18:42
Hello,
I have to remember the working directory and save it in my program so that
I can return to it later..
Which one is better/safer and why ? The environment var's or the
getcwd() function fam... ?
Thankx.. a lot..
J.
--
http://www.rdrs.net/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: should I use, getcwd() or *environ ?
2005-03-04 21:23 should I use, getcwd() or *environ ? J.
@ 2005-03-05 10:48 ` Rechberger Markus
2005-03-05 11:12 ` Steve Graegert
1 sibling, 0 replies; 5+ messages in thread
From: Rechberger Markus @ 2005-03-05 10:48 UTC (permalink / raw)
To: linux-c-programming
Hey,
I'd recommend getcwd()
environment variables can be manipulated by the user..
$ echo $PWD
/home/mare
$ PWD=/foo
$ pwd
/home/mare
$ echo $PWD
/foo
Markus
On Fri, 4 Mar 2005 22:23:17 +0100 (CET), J. <mailing-lists@xs4all.nl> wrote:
> Friday, March 04 22:18:42
>
> Hello,
>
> I have to remember the working directory and save it in my program so that
> I can return to it later..
>
> Which one is better/safer and why ? The environment var's or the
> getcwd() function fam... ?
>
> Thankx.. a lot..
>
> J.
>
> --
> http://www.rdrs.net/
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: should I use, getcwd() or *environ ?
2005-03-04 21:23 should I use, getcwd() or *environ ? J.
2005-03-05 10:48 ` Rechberger Markus
@ 2005-03-05 11:12 ` Steve Graegert
2005-03-05 12:55 ` J.
2005-03-06 10:19 ` Glynn Clements
1 sibling, 2 replies; 5+ messages in thread
From: Steve Graegert @ 2005-03-05 11:12 UTC (permalink / raw)
To: linux-c-programming
On Fri, 4 Mar 2005 22:23:17 +0100 (CET), J. <mailing-lists@xs4all.nl> wrote:
> Friday, March 04 22:18:42
>
> Hello,
>
> I have to remember the working directory and save it in my program so that
> I can return to it later..
>
> Which one is better/safer and why ? The environment var's or the
> getcwd() function fam... ?
>
I usually take the following approach:
int fd_dir;
char buf[PATH_MAX];
if (getcwd(buf, sizeof(buf)) == NULL) {
/* error handling */
}
/* open a directory for reading */
if ((fd = open(buf, O_RDONLY)) < 0) {
/* error handling*/
}
/* do all your work here and return to old dir */
if (fchdir(fd_dir) < 0) {
/* error handling */
}
This makes sure, that you can process directories as you will and
return to the one you started by simply calling fchdir(). You see,
getcwd() is usefull and so is fchdir(). It's an easy and reliable way
to bookmark a direcory. Nevertheless, you will need a fallback if the
directory you bookmarked is changed meanwhile by another process. I
would not rely on environment variables, since this approach is
elegant while portable.
Hope this helps.
> --
> http://www.rdrs.net/
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Kind Regards
\Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: should I use, getcwd() or *environ ?
2005-03-05 11:12 ` Steve Graegert
@ 2005-03-05 12:55 ` J.
2005-03-06 10:19 ` Glynn Clements
1 sibling, 0 replies; 5+ messages in thread
From: J. @ 2005-03-05 12:55 UTC (permalink / raw)
To: linux-c-programming
On Sat, 5 Mar 2005, Steve Graegert wrote:
> On Fri, 4 Mar 2005 22:23:17 +0100 (CET), J. <mailing-lists@xs4all.nl> wrote:
> > Friday, March 04 22:18:42
> >
> > Hello,
> >
> > I have to remember the working directory and save it in my program so that
> > I can return to it later..
> >
> > Which one is better/safer and why ? The environment var's or the
> > getcwd() function fam... ?
>
> I usually take the following approach:
.....
> Hope this helps.
>
> --
> Kind Regards
> \Steve
Saturday, March 05
Okidoki, thnkx for the answers & examples, all...
J.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: should I use, getcwd() or *environ ?
2005-03-05 11:12 ` Steve Graegert
2005-03-05 12:55 ` J.
@ 2005-03-06 10:19 ` Glynn Clements
1 sibling, 0 replies; 5+ messages in thread
From: Glynn Clements @ 2005-03-06 10:19 UTC (permalink / raw)
To: linux-c-programming
Steve Graegert wrote:
> > I have to remember the working directory and save it in my program so that
> > I can return to it later..
> >
> > Which one is better/safer and why ? The environment var's or the
> > getcwd() function fam... ?
>
> I usually take the following approach:
>
> int fd_dir;
> char buf[PATH_MAX];
>
> if (getcwd(buf, sizeof(buf)) == NULL) {
> /* error handling */
> }
>
> /* open a directory for reading */
> if ((fd = open(buf, O_RDONLY)) < 0) {
> /* error handling*/
> }
With this approach, you may as well skip the getcwd() and just use
open(".", ...) to get a descriptor for the cwd.
Also the behaviour of using a descriptor and fchdir() versus using
getcwd() and chdir() differs if the directory is moved or renamed
while the program is running.
--
Glynn Clements <glynn@gclements.plus.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-03-06 10:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-04 21:23 should I use, getcwd() or *environ ? J.
2005-03-05 10:48 ` Rechberger Markus
2005-03-05 11:12 ` Steve Graegert
2005-03-05 12:55 ` J.
2005-03-06 10:19 ` Glynn Clements
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).