file.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:19k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: file.n,v 1.23.2.3 2006/12/04 09:12:02 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH file n 8.3 Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. file - Manipulate file names and attributes
  16. .SH SYNOPSIS
  17. fBfile fIoptionfR fInamefR ?fIarg arg ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. This command provides several operations on a file's name or attributes.
  22. fINamefR is the name of a file; if it starts with a tilde, then tilde
  23. substitution is done before executing the command (see the manual entry for
  24. fBfilenamefR for details).  fIOptionfR indicates what to do with the
  25. file name.  Any unique abbreviation for fIoptionfR is acceptable.  The
  26. valid options are:
  27. .TP
  28. fBfile atime fInamefR ?fBtimefR?
  29. .
  30. Returns a decimal string giving the time at which file fInamefR was last
  31. accessed.  If fItimefR is specified, it is an access time to set
  32. for the file.  The time is measured in the standard POSIX fashion as
  33. seconds from a fixed starting time (often January 1, 1970).  If the file
  34. doesn't exist or its access time cannot be queried or set then an error is
  35. generated.  On Windows, FAT file systems do not support access time.
  36. .TP
  37. fBfile attributes fInamefR
  38. .TP
  39. fBfile attributes fInamefR ?fBoptionfR?
  40. .TP
  41. fBfile attributes fInamefR ?fBoption value option value...fR?
  42. .RS
  43. This subcommand returns or sets platform specific values associated
  44. with a file. The first form returns a list of the platform specific
  45. flags and their values. The second form returns the value for the
  46. specific option. The third form sets one or more of the values. The
  47. values are as follows:
  48. .PP
  49. On Unix, fB-groupfR gets or sets the group name for the file. A group id
  50. can be given to the command, but it returns a group name. fB-ownerfR gets
  51. or sets the user name of the owner of the file. The command returns the
  52. owner name, but the numerical id can be passed when setting the
  53. owner. fB-permissionsfR sets or retrieves the octal code that chmod(1)
  54. uses.  This command does also has limited support for setting using the
  55. symbolic attributes for chmod(1), of the form [ugo]?[[+-=][rwxst],[...]],
  56. where multiple symbolic attributes can be separated by commas (example:
  57. fBu+s,go-rwfR add sticky bit for user, remove read and write
  58. permissions for group and other).  A simplified fBlsfR style string,
  59. of the form rwxrwxrwx (must be 9 characters), is also supported
  60. (example: fBrwxr-xr-tfR is equivalent to 01755).
  61. .PP
  62. On Windows, fB-archivefR gives the value or sets or clears the
  63. archive attribute of the file. fB-hiddenfR gives the value or sets
  64. or clears the hidden attribute of the file. fB-longnamefR will
  65. expand each path element to its long version. This attribute cannot be
  66. set. fB-readonlyfR gives the value or sets or clears the readonly
  67. attribute of the file. fB-shortnamefR gives a string where every
  68. path element is replaced with its short (8.3) version of the
  69. name. This attribute cannot be set. fB-systemfR gives or sets or
  70. clears the value of the system attribute of the file.
  71. .PP
  72. On Macintosh, fB-creatorfR gives or sets the Finder creator type of
  73. the file. fB-hiddenfR gives or sets or clears the hidden attribute
  74. of the file. fB-readonlyfR gives or sets or clears the readonly
  75. attribute of the file. Note that directories can only be locked if
  76. File Sharing is turned on. fB-typefR gives or sets the Finder file
  77. type for the file.
  78. .RE
  79. .VS
  80. .TP
  81. fBfile channels ?fIpatternfR?
  82. .
  83. If fIpatternfR isn't specified, returns a list of names of all
  84. registered open channels in this interpreter.  If fIpatternfR is
  85. specified, only those names matching fIpatternfR are returned.  Matching
  86. is determined using the same rules as for fBstring matchfR.
  87. .VE
  88. .TP
  89. fBfile copy fR?fB-forcefR? ?fB-|-fR? fIsourcefR fItargetfR
  90. .TP
  91. fBfile copy fR?fB-forcefR? ?fB-|-fR? fIsourcefR ?fIsourcefR ...? fItargetDirfR
  92. .RS
  93. The first form makes a copy of the file or directory fIsourcefR under
  94. the pathname fItargetfR. If fItargetfR is an existing directory,
  95. then the second form is used.  The second form makes a copy inside
  96. fItargetDirfR of each fIsourcefR file listed.  If a directory is
  97. specified as a fIsourcefR, then the contents of the directory will be
  98. recursively copied into fItargetDirfR. Existing files will not be
  99. overwritten unless the fB-forcefR option is specified.  When copying
  100. within a single filesystem, fIfile copyfR will copy soft links (i.e.
  101. the links themselves are copied, not the things they point to).  Trying
  102. to overwrite a non-empty directory, overwrite a directory with a file,
  103. or overwrite a file with a directory will all result in errors even if
  104. fI-forcefR was specified.  Arguments are processed in the order
  105. specified, halting at the first error, if any.  A fB-|-fR marks
  106. the end of switches; the argument following the fB-|-fR will be
  107. treated as a fIsourcefR even if it starts with a fB-fR.
  108. .RE
  109. .TP
  110. fBfile delete fR?fB-forcefR? ?fB-|-fR? fIpathnamefR ?fIpathnamefR ... ?
  111. .
  112. Removes the file or directory specified by each fIpathnamefR
  113. argument.  Non-empty directories will be removed only if the
  114. fB-forcefR option is specified.  When operating on symbolic links,
  115. the links themselves will be deleted, not the objects they point to.
  116. Trying to delete a non-existent file is not considered an error.
  117. Trying to delete a read-only file will cause the file to be deleted,
  118. even if the fB-forcefR flags is not specified.  If the fB-forcefR
  119. option is specified on a directory, Tcl will attempt both to change
  120. permissions and move the current directory 'pwd' out of the given path
  121. if that is necessary to allow the deletion to proceed.  Arguments are
  122. processed in the order specified, halting at the first error, if any.
  123. A fB-|-fR marks the end of switches; the argument following the
  124. fB-|-fR will be treated as a fIpathnamefR even if it starts with
  125. a fB-fR.
  126. .TP
  127. fBfile dirname fInamefR
  128. Returns a name comprised of all of the path components in fInamefR
  129. excluding the last element.  If fInamefR is a relative file name and
  130. only contains one path element, then returns ``fB.fR'' (or ``fB:fR''
  131. on the Macintosh).  If fInamefR refers to a root directory, then the
  132. root directory is returned.  For example,
  133. .RS
  134. .CS
  135. fBfile dirname c:/fR
  136. .CE
  137. returns fBc:/fR. 
  138. .PP
  139. Note that tilde substitution will only be
  140. performed if it is necessary to complete the command. For example,
  141. .CS
  142. fBfile dirname ~/src/foo.cfR
  143. .CE
  144. returns fB~/srcfR, whereas
  145. .CS
  146. fBfile dirname ~fR
  147. .CE
  148. returns fB/homefR (or something similar).
  149. .RE
  150. .TP
  151. fBfile executable fInamefR
  152. .
  153. Returns fB1fR if file fInamefR is executable by the current user,
  154. fB0fR otherwise.  
  155. .TP
  156. fBfile exists fInamefR
  157. .
  158. Returns fB1fR if file fInamefR exists and the current user has
  159. search privileges for the directories leading to it, fB0fR otherwise.
  160. .TP
  161. fBfile extension fInamefR
  162. .
  163. Returns all of the characters in fInamefR after and including the last
  164. dot in the last element of fInamefR.  If there is no dot in the last
  165. element of fInamefR then returns the empty string.
  166. .TP
  167. fBfile isdirectory fInamefR
  168. .
  169. Returns fB1fR if file fInamefR is a directory, fB0fR otherwise.
  170. .TP
  171. fBfile isfile fInamefR
  172. .
  173. Returns fB1fR if file fInamefR is a regular file, fB0fR otherwise.
  174. .TP
  175. fBfile join fInamefR ?fIname ...fR?
  176. .
  177. Takes one or more file names and combines them, using the correct path
  178. separator for the current platform.  If a particular fInamefR is
  179. relative, then it will be joined to the previous file name argument.
  180. Otherwise, any earlier arguments will be discarded, and joining will
  181. proceed from the current argument.  For example,
  182. .RS
  183. .CS
  184. fBfile join a b /foo barfR
  185. .CE
  186. returns fB/foo/barfR.
  187. .PP
  188. Note that any of the names can contain separators, and that the result
  189. is always canonical for the current platform: fB/fR for Unix and
  190. Windows, and fB:fR for Macintosh.
  191. .RE
  192. .TP
  193. fBfile link ?fI-linktypefR? fIlinkNamefR ?fItargetfR?
  194. .
  195. If only one argument is given, that argument is assumed to be
  196. fIlinkNamefR, and this command returns the value of the link given by
  197. fIlinkNamefR (i.e. the name of the file it points to).  If
  198. fIlinkNamefR isn't a link or its value cannot be read (as, for example,
  199. seems to be the case with hard links, which look just like ordinary
  200. files), then an error is returned.
  201. .
  202. If 2 arguments are given, then these are assumed to be fIlinkNamefR
  203. and fItargetfR. If fIlinkNamefR already exists, or if fItargetfR
  204. doesn't exist, an error will be returned.  Otherwise, Tcl creates a new
  205. link called fIlinkNamefR which points to the existing filesystem object
  206. at fItargetfR, where the type of the link is platform-specific (on Unix
  207. a symbolic link will be the default).  This is useful for the case where
  208. the user wishes to create a link in a cross-platform way, and doesn't
  209. care what type of link is created.
  210. .
  211. If the user wishes to make a link of a specific type only, (and signal an
  212. error if for some reason that is not possible), then the optional
  213. fI-linktypefR argument should be given.  Accepted values for
  214. fI-linktypefR are "-symbolic" and "-hard".
  215. .
  216. When creating links on filesystems that either do not support any links,
  217. or do not support the specific type requested, an error message will be
  218. returned.  In particular Windows 95, 98 and ME do not support any links
  219. at present, but most Unix platforms support both symbolic and hard links
  220. (the latter for files only), MacOS supports symbolic links and Windows
  221. NT/2000/XP (on NTFS drives) support symbolic directory links and hard
  222. file links.
  223. .TP
  224. fBfile lstat fIname varNamefR
  225. .
  226. Same as fBstatfR option (see below) except uses the fIlstatfR
  227. kernel call instead of fIstatfR.  This means that if fInamefR
  228. refers to a symbolic link the information returned in fIvarNamefR
  229. is for the link rather than the file it refers to.  On systems that
  230. don't support symbolic links this option behaves exactly the same
  231. as the fBstatfR option.
  232. .TP
  233. fBfile mkdir fIdirfR ?fIdirfR ...?
  234. .
  235. Creates each directory specified.  For each pathname fIdirfR specified,
  236. this command will create all non-existing parent directories as
  237. well as fIdirfR itself.  If an existing directory is specified, then
  238. no action is taken and no error is returned.  Trying to overwrite an existing
  239. file with a directory will result in an error.  Arguments are processed in
  240. the order specified, halting at the first error, if any.
  241. .TP
  242. fBfile mtime fInamefR ?fItimefR?
  243. .
  244. Returns a decimal string giving the time at which file fInamefR was last
  245. modified.  If fItimefR is specified, it is a modification time to set for
  246. the file (equivalent to Unix fBtouchfR).  The time is measured in the
  247. standard POSIX fashion as seconds from a fixed starting time (often January
  248. 1, 1970).  If the file doesn't exist or its modified time cannot be queried
  249. or set then an error is generated.
  250. .TP
  251. fBfile nativename fInamefR
  252. .
  253. Returns the platform-specific name of the file. This is useful if the
  254. filename is needed to pass to a platform-specific call, such as exec
  255. under Windows or AppleScript on the Macintosh.
  256. .TP
  257. fBfile normalize fInamefR
  258. .
  259. .RS
  260. Returns a unique normalized path representation for the file-system
  261. object (file, directory, link, etc), whose string value can be used as a
  262. unique identifier for it.  A normalized path is an absolute path which has
  263. all '../', './' removed.  Also it is one which is in the ``standard''
  264. format for the native platform.  On MacOS, Unix, this means the segments
  265. leading up to the path must be free of symbolic links/aliases (but the
  266. very last path component may be a symbolic link), and on Windows it also
  267. means we want the long form with that form's case-dependence (which
  268. gives us a unique, case-dependent path).  The one exception concerning the
  269. last link in the path is necessary, because Tcl or the user may wish to
  270. operate on the actual symbolic link itself (for example 'file delete', 'file
  271. rename', 'file copy' are defined to operate on symbolic links, not on the
  272. things that they point to).
  273. .RE
  274. .TP
  275. fBfile owned fInamefR 
  276. .
  277. Returns fB1fR if file fInamefR is owned by the current user, fB0fR
  278. otherwise.
  279. .TP
  280. fBfile pathtype fInamefR
  281. .
  282. Returns one of fBabsolutefR, fBrelativefR, fBvolumerelativefR.  If
  283. fInamefR refers to a specific file on a specific volume, the path type
  284. will be fBabsolutefR.  If fInamefR refers to a file relative to the
  285. current working directory, then the path type will be fBrelativefR.  If
  286. fInamefR refers to a file relative to the current working directory on
  287. a specified volume, or to a specific file on the current working volume, then
  288. the path type is fBvolumerelativefR.
  289. .TP
  290. fBfile readable fInamefR
  291. .
  292. Returns fB1fR if file fInamefR is readable by the current user,
  293. fB0fR otherwise. 
  294. .TP
  295. fBfile readlink fInamefR
  296. .
  297. Returns the value of the symbolic link given by fInamefR (i.e. the name
  298. of the file it points to).  If fInamefR isn't a symbolic link or its
  299. value cannot be read, then an error is returned.  On systems that don't
  300. support symbolic links this option is undefined.
  301. .TP
  302. fBfile rename fR?fB-forcefR? ?fB-|-fR? fIsourcefR fItargetfR
  303. .TP
  304. fBfile rename fR?fB-forcefR? ?fB-|-fR? fIsourcefR ?fIsourcefR ...? fItargetDirfR
  305. .RS
  306. The first form takes the file or directory specified by pathname
  307. fIsourcefR and renames it to fItargetfR, moving the file if the
  308. pathname fItargetfR specifies a name in a different directory.  If
  309. fItargetfR is an existing directory, then the second form is used.
  310. The second form moves each fIsourcefR file or directory into the
  311. directory fItargetDirfR. Existing files will not be overwritten
  312. unless the fB-forcefR option is specified.  When operating inside a
  313. single filesystem, Tcl will rename symbolic links rather than the
  314. things that they point to.  Trying to overwrite a non-empty directory,
  315. overwrite a directory with a file, or a file with a directory will all
  316. result in errors.  Arguments are processed in the order specified,
  317. halting at the first error, if any.  A fB-|-fR marks the end of
  318. switches; the argument following the fB-|-fR will be treated as a
  319. fIsourcefR even if it starts with a fB-fR.
  320. .RE
  321. .TP
  322. fBfile rootname fInamefR
  323. .
  324. Returns all of the characters in fInamefR up to but not including the
  325. last ``.'' character in the last component of name.  If the last
  326. component of fInamefR doesn't contain a dot, then returns fInamefR.
  327. .TP
  328. fBfile separatorfR ?fInamefR?
  329. .
  330. If no argument is given, returns the character which is used to separate 
  331. path segments for native files on this platform.  If a path is given,
  332. the filesystem responsible for that path is asked to return its
  333. separator character.  If no file system accepts fInamefR, an error
  334. is generated.
  335. .TP
  336. fBfile size fInamefR
  337. .
  338. Returns a decimal string giving the size of file fInamefR in bytes.  If
  339. the file doesn't exist or its size cannot be queried then an error is
  340. generated.
  341. .TP
  342. fBfile split fInamefR
  343. .
  344. Returns a list whose elements are the path components in fInamefR.  The
  345. first element of the list will have the same path type as fInamefR.
  346. All other elements will be relative.  Path separators will be discarded
  347. unless they are needed ensure that an element is unambiguously relative.
  348. For example, under Unix
  349. .RS
  350. .CS
  351. file split /foo/~bar/baz
  352. .CE
  353. returns fB/foo./~barbazfR to ensure that later commands
  354. that use the third component do not attempt to perform tilde
  355. substitution.
  356. .RE
  357. .TP
  358. fBfile stat  fIname varNamefR
  359. .
  360. Invokes the fBstatfR kernel call on fInamefR, and uses the variable
  361. given by fIvarNamefR to hold information returned from the kernel call.
  362. fIVarNamefR is treated as an array variable, and the following elements
  363. of that variable are set: fBatimefR, fBctimefR, fBdevfR, fBgidfR,
  364. fBinofR, fBmodefR, fBmtimefR, fBnlinkfR, fBsizefR, fBtypefR,
  365. fBuidfR.  Each element except fBtypefR is a decimal string with the
  366. value of the corresponding field from the fBstatfR return structure;
  367. see the manual entry for fBstatfR for details on the meanings of the
  368. values.  The fBtypefR element gives the type of the file in the same
  369. form returned by the command fBfile typefR.  This command returns an
  370. empty string.
  371. .TP
  372. fBfile system fInamefR
  373. .
  374. Returns a list of two elements, the first of which is the name of the
  375. filesystem to use for the file, and the second an arbitrary string
  376. representing the filesystem-specific nature or type of the location
  377. within that filesystem.  If a filesystem only supports one type of file,
  378. the second element may be null.  For example the native files have a
  379. first element 'native', and a second element which is a platform-specific
  380. type name for the file's system (e.g. 'NTFS', 'FAT', etc), or possibly
  381. the empty string if no further information is available or if this
  382. is not implemented.  A generic virtual file system might return the
  383. list 'vfs ftp' to represent a file on a remote ftp site mounted as a
  384. virtual filesystem through an extension called 'vfs'.  If the file does
  385. not belong to any filesystem, an error is generated.
  386. .TP
  387. fBfile tail fInamefR
  388. .
  389. Returns all of the characters in fInamefR after the last directory
  390. separator.  If fInamefR contains no separators then returns
  391. fInamefR.
  392. .TP
  393. fBfile type fInamefR
  394. .
  395. Returns a string giving the type of file fInamefR, which will be one of
  396. fBfilefR, fBdirectoryfR, fBcharacterSpecialfR, fBblockSpecialfR,
  397. fBfifofR, fBlinkfR, or fBsocketfR.
  398. .TP
  399. fBfile volumesfR
  400. Returns the absolute paths to the volumes mounted on the system, as a
  401. proper Tcl list.  On the Macintosh, this will be a list of the mounted
  402. drives, both local and network.  N.B. if two drives have the same name,
  403. they will both appear on the volume list, but there is currently no way,
  404. from Tcl, to access any but the first of these drives.  On UNIX, the
  405. command will always return "/", since all filesystems are locally mounted.
  406. On Windows, it will return a list of the available local drives
  407. (e.g. {a:/ c:/}).
  408. .TP
  409. fBfile writable fInamefR
  410. .
  411. Returns fB1fR if file fInamefR is writable by the current user,
  412. fB0fR otherwise.
  413. .SH "PORTABILITY ISSUES"
  414. .TP
  415. fBUnixfR
  416. .
  417. These commands always operate using the real user and group identifiers,
  418. not the effective ones. 
  419. .SH EXAMPLES
  420. This procedure shows how to search for C files in a given directory
  421. that have a correspondingly-named object file in the current
  422. directory:
  423. .CS
  424. proc findMatchingCFiles {dir} {
  425.    set files {}
  426.    switch $::tcl_platform(platform) {
  427.       windows {
  428.          set ext .obj
  429.       }
  430.       unix {
  431.          set ext .o
  432.       }
  433.    }
  434.    foreach file [glob -nocomplain -directory $dir *.c] {
  435.       set objectFile [fBfile tailfR [fBfile rootnamefR $file]]$ext
  436.       if {[fBfile existsfR $objectFile]} {
  437.          lappend files $file
  438.       }
  439.    }
  440.    return $files
  441. }
  442. .CE
  443. .PP
  444. Rename a file and leave a symbolic link pointing from the old location
  445. to the new place:
  446. .CS
  447. set oldName foobar.txt
  448. set newName foo/bar.txt
  449. # Make sure that where we're going to move to exists...
  450. if {![fBfile isdirectoryfR [fBfile dirnamefR $newName]]} {
  451.    fBfile mkdirfR [fBfile dirnamefR $newName]
  452. }
  453. fBfile renamefR $oldName $newName
  454. fBfile linkfR -symbolic $oldName $newName
  455. .CE
  456. .SH "SEE ALSO"
  457. filename(n), open(n), close(n), eof(n), gets(n), tell(n), seek(n),
  458. fblocked(n), flush(n)
  459. .SH KEYWORDS
  460. attributes, copy files, delete files, directory, file, move files, name, rename files, stat