diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 10:08:39 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 10:08:39 (GMT) |
commit | b63e2b17063b770287357b30d1839c8df4e7eeb1 (patch) | |
tree | b8fc54115e59b8320714e0e31971fa74f89ff067 /doc/file.n | |
parent | 5f868c1ea867c2ecf03252f4cdee5f52e2060f8e (diff) | |
download | tcl-b63e2b17063b770287357b30d1839c8df4e7eeb1.zip tcl-b63e2b17063b770287357b30d1839c8df4e7eeb1.tar.gz tcl-b63e2b17063b770287357b30d1839c8df4e7eeb1.tar.bz2 |
Clarified [file nativename] usage. [Bug 1185154]
Diffstat (limited to 'doc/file.n')
-rw-r--r-- | doc/file.n | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: file.n,v 1.51 2007/10/30 23:50:54 dkf Exp $ +'\" RCS: @(#) $Id: file.n,v 1.52 2007/11/01 10:08:41 dkf Exp $ '\" .so man.macros .TH file n 8.3 Tcl "Tcl Built-In Commands" @@ -272,8 +272,8 @@ or set then an error is generated. \fBfile nativename \fIname\fR . Returns the platform-specific name of the file. This is useful if the -filename is needed to pass to a platform-specific call, such as exec -under Windows. +filename is needed to pass to a platform-specific call, such as to a +subprocess via \fBexec\fR under Windows (see \fBEXAMPLES\fR below). .TP \fBfile normalize \fIname\fR . @@ -489,6 +489,15 @@ if {![\fBfile isdirectory\fR [\fBfile dirname\fR $newName]]} { \fBfile rename\fR $oldName $newName \fBfile link\fR \-symbolic $oldName $newName .CE +.PP +On Windows, a file can be +.QW started +easily enough (equivalent to double-clicking on it in the Explorer +interface) but the name passed to the operating system must be in +native format: +.CS +exec {*}[auto_execok start] {} [\fBfile nativename\fR ~/example.txt] +.CE .SH "SEE ALSO" filename(n), open(n), close(n), eof(n), gets(n), tell(n), seek(n), fblocked(n), flush(n) |