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
13 implementation 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 $ENV{'TMP'}
33 $ENV{'TEMP'}
34 C:/temp
35
36 Since Perl 5.8.0, if running under taint mode, and if the
37 environment variables are tainted, they are not used.
38
39 case_tolerant
40 Override Unix. Cygwin case-tolerance depends on managed mount
41 settings and as with MsWin32 on GetVolumeInformation() $ouFsFlags
42 == FS_CASE_SENSITIVE, indicating the case significance when
43 comparing file specifications. Default: 1
44
46 Copyright (c) 2004,2007 by the Perl 5 Porters. All rights reserved.
47
48 This program is free software; you can redistribute it and/or modify it
49 under the same terms as Perl itself.
50
51
52
53perl v5.10.1 2009-05-10 File::Spec::Cygwin(3pm)