home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3239 < prev    next >
Internet Message Format  |  1991-04-24  |  777b

  1. From: ksh@ai.mit.edu (K. Shane Hartman)
  2. Newsgroups: alt.sources,comp.unix.programmer,comp.os.vms
  3. Subject: Re: Relative path to Absolute Path
  4. Message-ID: <KSH.91Apr24232226@rice-chex.ai.mit.edu>
  5. Date: 25 Apr 91 03:22:26 GMT
  6.  
  7. In article <1515@geovision.gvc.com> pt@geovision.gvc.com (Paul Tomblin) writes:
  8.  
  9.    Although I got absolutely zero response to this request, I did find an
  10.    answer.  With the error checking turned off, what I ended up doing was
  11.    approximately this:
  12.  
  13.        chdir(new_dir);
  14.        getcwd(new_dir, MAX_PATH_LEN);
  15.  
  16.    It works beatifully, on both VMS and unix.  (And probably DOS, but
  17.    I wouldn't bet my life on it.)
  18.  
  19. Works fine in DOS too.  The only wrinkle I add to it is error checking
  20. for nonexistent path and preserve the original path.
  21.  
  22. Shane Hartman
  23.