linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Glynn Clements <glynn@gclements.plus.com>
To: linux-c-programming@vger.kernel.org
Subject: Re: should I use, getcwd() or *environ ?
Date: Sun, 6 Mar 2005 10:19:48 +0000	[thread overview]
Message-ID: <16938.55620.259003.476736@gargle.gargle.HOWL> (raw)
In-Reply-To: <6a00c8d505030503121038ff83@mail.gmail.com>


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>

      parent reply	other threads:[~2005-03-06 10:19 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=16938.55620.259003.476736@gargle.gargle.HOWL \
    --to=glynn@gclements.plus.com \
    --cc=linux-c-programming@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).