Tcl 9.1/Tk9.1 Documentation > Tcl C API, version 9.1a1 > FindExec

Tcl/Tk Applications | Tcl Commands | Tk Commands | [incr Tcl] Package Commands | SQLite3 Package Commands | TDBC Package Commands | tdbc::mysql Package Commands | tdbc::odbc Package Commands | tdbc::postgres Package Commands | tdbc::sqlite3 Package Commands | Thread Package Commands | Tcl C API | Tk C API | [incr Tcl] Package C API | TDBC Package C API

NAME
Tcl_FindExecutable, Tcl_GetNameOfExecutable — identify or return the name of the binary file containing the application
SYNOPSIS
#include <tcl.h>
const char *
Tcl_FindExecutable(argv0)
const char *
Tcl_GetNameOfExecutable()
ARGUMENTS
DESCRIPTION
KEYWORDS

NAME

Tcl_FindExecutable, Tcl_GetNameOfExecutable — identify or return the name of the binary file containing the application

SYNOPSIS

#include <tcl.h>
const char *
Tcl_FindExecutable(argv0)
const char *
Tcl_GetNameOfExecutable()

ARGUMENTS

char *argv0 (in)
The first command-line argument to the program, which gives the application's name.

DESCRIPTION

Tcl_FindExecutable is one of two functions, TclZipfs_AppHook being the other, that must be called by an application to initialize Tcl prior to any other calls into Tcl. Applications that wish to use ZipFS-based builds should call TclZipfs_AppHook in preference to this function.

On UNIX platforms, the function should be passed argv[0] as its argument. It is important not to change the working directory before this invocation. Tcl_FindExecutable uses argv0 together with the PATH environment variable to locate the application's executable, if possible. If it fails to find the binary, subsequent calls to info nameofexecutable will return an empty string.

On Windows platforms, the argv[0] argument is used only to indicate whether the executable has a standard error channel (any non-null value) or not (the value null). If Tcl_SetPanicProc is never called and no debugger is running, this setting determines whether a panic message is sent to standard error or displayed in a system dialog.

As part of its initialization sequence, Tcl_FindExecutable computes the full path name of the executable file from which the application was invoked. This result is saved for Tcl's internal use and is returned by the info nameofexecutable command.

The result of Tcl_FindExecutable is the full Tcl version string, including build information (for example, 9.0.0+abcdef...abcdef.gcc-1002).

Tcl_GetNameOfExecutable simply returns a pointer to the internal full path name of the executable file as computed by Tcl_FindExecutable. This procedure call is the C API equivalent to the info nameofexecutable command. NULL is returned if the internal full path name has not been computed or unknown.

Tcl_FindExecutable can not be used in stub-enabled extensions.

KEYWORDS

binary, executable file
Copyright © 1995-1996 Sun Microsystems, Inc.