Re: How to get the application path
- From: "Randy Brukardt" <randy@xxxxxxxxxxxxxx>
- Date: Wed, 1 Aug 2007 23:31:50 -0500
"Markus E.L." <development-2006-8ecbb5cc8aREMOVETHIS@xxxxxxxxxxxxxxxxxxxxx>
wrote in message news:o6vec14g46.fsf@xxxxxxxxxxxxxxxxxxxxxxxxx
<development-2006-8ecbb5cc8aREMOVETHIS@xxxxxxxxxxxxxxxxxxxxx> writes:
Markus E Leypold
executable:
Now, on Unix I'd just put a shell script wrapper in place of the
Why do you limit this to "Unix"? Any operating system that supports
shells can do the same thing.
Yes+No. In Unix I can just exec the real binary, so I don't have a
shell process waiting until the the binary proper returns. In Windows
the shell process will (AFAI understand it) exist until the
application terminates and AFAIS (worse) it will even have a command
line window open to the absolute irritation of the lay user.
That doesn't have to be the case, although getting rid of it requires yet
another program. (Essentially, you redirect the output to null, although
doing that specifically doesn't work. It took me several days of
trial-and-error to get that to work, and it's not certain to me what I did
specifically that made it work. So I have my doubts that it would work with
another compiler, so I'm not going to share the details [Janus/Ada users can
ask, of course].)
....
I find the Unix way more palatable.
MYPATH="$0"
MYAPP="$(which $MYPATH.bin)" # locate the executable proper
export EXE_PATH="$MYPATH"
exec $MYAPP "$@"
(untested, mind you).
That would even put the full path in argv[0]. The power of shell
script wrappers in Unix is usually underestimated.
Scratch the "in Unix", and I agree.
Could you tell me the equivalent of my script in CMD.exe? (Seriously,
that's a real question: What I got until now I consider kludgy).
Application paths in Windows are supposed to be set in the registry; "Path"
is supposedly obsolete. (Yes, hardly anybody actually follows that
documentation.) As such, you're supposed to put the path into the icon or
(as we do) directly into the script [we have the installer create the
appropriate scripts for the user's machine]. Meaning there is no need for
such fancy scripts.
If I actually had to do this, I'd simply write a Janus/Ada program to do it
(remember that all opens search the path in Janus/Ada, so getting the path
is just a matter of text processing the name). Ada is usually better than
silly scripts anyway. [Although these days I'd put the path into the
registry and use the Claw interface I mentioned last week to retrieve it.]
Moral: trying to make Windows work like Unix necessarily makes tasks harder
than they need to be. (The converse is also true, of course.) Very much like
using Ada as if it is C.
Randy.
.
- Follow-Ups:
- Re: How to get the application path
- From: Markus E.L. 2
- Re: How to get the application path
- References:
- Re: How to get the application path
- From: Markus E.L.
- Re: How to get the application path
- Prev by Date: Re: Unary operator after binary operator: legal or not? => Compiler Error
- Next by Date: Re: AW: To := Grein, Christoph (Fa. ESG)
- Previous by thread: Re: How to get the application path
- Next by thread: Re: How to get the application path
- Index(es):
Relevant Pages
|
Loading