home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _04d834dd826cb965102fb973b279bebd < prev    next >
Text File  |  2000-03-23  |  6KB  |  164 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>File::Spec::VMS - methods for VMS file specs</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> File::Spec::VMS - methods for VMS file specs</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#methods always loaded">Methods always loaded</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  31. </UL>
  32. <!-- INDEX END -->
  33.  
  34. <HR>
  35. <P>
  36. <H1><A NAME="name">NAME</A></H1>
  37. <P>File::Spec::VMS - methods for VMS file specs</P>
  38. <P>
  39. <HR>
  40. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  41. <UL>
  42. <LI>Linux</LI>
  43. <LI>Solaris</LI>
  44. <LI>Windows</LI>
  45. </UL>
  46. <HR>
  47. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  48. <PRE>
  49.  require File::Spec::VMS; # Done internally by File::Spec if needed</PRE>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P>See File::Spec::Unix for a documentation of the methods provided
  54. there. This package overrides the implementation of these methods, not
  55. the semantics.</P>
  56. <DL>
  57. <DT><STRONG><A NAME="item_eliminate_macros">eliminate_macros</A></STRONG><BR>
  58. <DD>
  59. Expands MM[KS]/Make macros in a text string, using the contents of
  60. identically named elements of <CODE>%$self</CODE>, and returns the result
  61. as a file specification in Unix syntax.
  62. <P></P>
  63. <DT><STRONG><A NAME="item_fixpath">fixpath</A></STRONG><BR>
  64. <DD>
  65. Catchall routine to clean up problem MM[SK]/Make macros.  Expands macros
  66. in any directory specification, in order to avoid juxtaposing two
  67. VMS-syntax directories when MM[SK] is run.  Also expands expressions which
  68. are all macro, so that we can tell how long the expansion is, and avoid
  69. overrunning DCL's command buffer when MM[KS] is running.
  70. <P>If optional second argument has a TRUE value, then the return string is
  71. a VMS-syntax directory specification, if it is FALSE, the return string
  72. is a VMS-syntax file specification, and if it is not specified, <A HREF="#item_fixpath"><CODE>fixpath()</CODE></A>
  73. checks to see whether it matches the name of a directory in the current
  74. default directory, and returns a directory or file specification accordingly.</P>
  75. <P></P></DL>
  76. <P>
  77. <H2><A NAME="methods always loaded">Methods always loaded</A></H2>
  78. <DL>
  79. <DT><STRONG><A NAME="item_canonpath">canonpath (override)</A></STRONG><BR>
  80. <DD>
  81. Removes redundant portions of file specifications according to VMS syntax.
  82. <P></P>
  83. <DT><STRONG><A NAME="item_catdir">catdir</A></STRONG><BR>
  84. <DD>
  85. Concatenates a list of file specifications, and returns the result as a
  86. VMS-syntax directory specification.  No check is made for ``impossible''
  87. cases (e.g. elements other than the first being absolute filespecs).
  88. <P></P>
  89. <DT><STRONG><A NAME="item_catfile">catfile</A></STRONG><BR>
  90. <DD>
  91. Concatenates a list of file specifications, and returns the result as a
  92. VMS-syntax file specification.
  93. <P></P>
  94. <DT><STRONG><A NAME="item_curdir">curdir (override)</A></STRONG><BR>
  95. <DD>
  96. Returns a string representation of the current directory: '[]'
  97. <P></P>
  98. <DT><STRONG><A NAME="item_devnull">devnull (override)</A></STRONG><BR>
  99. <DD>
  100. Returns a string representation of the null device: '_NLA0:'
  101. <P></P>
  102. <DT><STRONG><A NAME="item_rootdir">rootdir (override)</A></STRONG><BR>
  103. <DD>
  104. Returns a string representation of the root directory: 'SYS$DISK:[000000]'
  105. <P></P>
  106. <DT><STRONG><A NAME="item_tmpdir">tmpdir (override)</A></STRONG><BR>
  107. <DD>
  108. Returns a string representation of the first writable directory
  109. from the following list or '' if none are writable:
  110. <PRE>
  111.     sys$scratch
  112.     $ENV{TMPDIR}</PRE>
  113. <P></P>
  114. <DT><STRONG><A NAME="item_updir">updir (override)</A></STRONG><BR>
  115. <DD>
  116. Returns a string representation of the parent directory: '[-]'
  117. <P></P>
  118. <DT><STRONG><A NAME="item_case_tolerant">case_tolerant (override)</A></STRONG><BR>
  119. <DD>
  120. VMS file specification syntax is case-tolerant.
  121. <P></P>
  122. <DT><STRONG><A NAME="item_path">path (override)</A></STRONG><BR>
  123. <DD>
  124. Translate logical name DCL$PATH as a searchlist, rather than trying
  125. to <A HREF="../../../lib/Pod/perlfunc.html#item_split"><CODE>split</CODE></A> string value of <CODE>$ENV{'PATH'}</CODE>.
  126. <P></P>
  127. <DT><STRONG><A NAME="item_file_name_is_absolute">file_name_is_absolute (override)</A></STRONG><BR>
  128. <DD>
  129. Checks for VMS directory spec as well as Unix separators.
  130. <P></P>
  131. <DT><STRONG><A NAME="item_splitpath">splitpath (override)</A></STRONG><BR>
  132. <DD>
  133. Splits using VMS syntax.
  134. <P></P>
  135. <DT><STRONG><A NAME="item_splitdir">splitdir (override)</A></STRONG><BR>
  136. <DD>
  137. Split dirspec using VMS syntax.
  138. <P></P>
  139. <DT><STRONG><A NAME="item_catpath">catpath (override)</A></STRONG><BR>
  140. <DD>
  141. Construct a complete filespec using VMS syntax
  142. <P></P>
  143. <DT><STRONG><A NAME="item_abs2rel">abs2rel (override)</A></STRONG><BR>
  144. <DD>
  145. Use VMS syntax when converting filespecs.
  146. <P></P>
  147. <DT><STRONG><A NAME="item_rel2abs">rel2abs (override)</A></STRONG><BR>
  148. <DD>
  149. Use VMS syntax when converting filespecs.
  150. <P></P></DL>
  151. <P>
  152. <HR>
  153. <H1><A NAME="see also">SEE ALSO</A></H1>
  154. <P><A HREF="../../../lib/File/Spec.html">the File::Spec manpage</A></P>
  155. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  156. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  157. <STRONG><P CLASS=block> File::Spec::VMS - methods for VMS file specs</P></STRONG>
  158. </TD></TR>
  159. </TABLE>
  160.  
  161. </BODY>
  162.  
  163. </HTML>
  164.