I apologize for not being clear, I don't want the full path, just the name of the current directory.
Glenn -----Original Message----- From: Diane Holt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 11:01 AM To: Ant Users List Subject: Re: directory name? --- Ritesh Trivedi <[EMAIL PROTECTED]> wrote: > You can use ${basedir} property anywhere in the Ant build file which can > be set to the current directory since its one of the attributes in the > project element. Actually ${basedir} doesn't necessarily represent the current working directory, since the build file can be run from a directory other than ${basedir} (eg., via the -find flag), or 'basedir' may be set to some directory other than where the build file actually lives. Use ${user.dir} to get the current working directory. Use <basename> to get the last element in the path. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
