1File::Spec::Cygwin(3pm)Perl Programmers Reference GuideFile::Spec::Cygwin(3pm)
2
3
4
6 File::Spec::Cygwin - methods for Cygwin file specs
7
9 require File::Spec::Cygwin; # Done internally by File::Spec if needed
10
12 See File::Spec and File::Spec::Unix. This package overrides the imple‐
13 mentation of these methods, not the semantics.
14
15 This module is still in beta. Cygwin-knowledgeable folks are invited
16 to offer patches and suggestions.
17
18 canonpath
19 Any "\" (backslashes) are converted to "/" (forward slashes), and
20 then File::Spec::Unix canonpath() is called on the result.
21
22 file_name_is_absolute
23 True is returned if the file name begins with "drive_letter:", and
24 if not, File::Spec::Unix file_name_is_absolute() is called.
25
26 tmpdir (override)
27 Returns a string representation of the first existing directory
28 from the following list:
29
30 $ENV{TMPDIR}
31 /tmp
32 C:/temp
33
34 Since Perl 5.8.0, if running under taint mode, and if the environ‐
35 ment variables are tainted, they are not used.
36
38 Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
39
40 This program is free software; you can redistribute it and/or modify it
41 under the same terms as Perl itself.
42
43
44
45perl v5.8.8 2001-09-21 File::Spec::Cygwin(3pm)