package Path::Class::File; use strict; use Path::Class::Dir; use Path::Class::Entity; use base qw(Path::Class::Entity); use IO::File (); sub new { my $self = shift->SUPER::new; my $file = pop(); my @dirs = @_; my ($volume, $dirs, $base) = $self->_spec->splitpath($file); if (length $dirs) { push @dirs, $self->_spec->catpath($volume, $dirs, ''); } $self->{dir} = @dirs ? Path::Class::Dir->new(@dirs) : undef; $self->{file} = $base; return $self; } sub as_foreign { my ($self, $type) = @_; local $Path::Class::Foreign = $self->_spec_class($type); my $foreign = ref($self)->SUPER::new; $foreign->{dir} = $self->{dir}->as_foreign($type) if defined $self->{dir}; $foreign->{file} = $self->{file}; return $foreign; } sub stringify { my $self = shift; return $self->{file} unless defined $self->{dir}; return $self->_spec->catfile($self->{dir}->stringify, $self->{file}); } sub dir { my $self = shift; return $self->{dir} if defined $self->{dir}; return Path::Class::Dir->new($self->_spec->curdir); } BEGIN { *parent = \&dir; } sub volume { my $self = shift; return '' unless defined $self->{dir}; return $self->{dir}->volume; } sub basename { shift->{file} } sub open { IO::File->new(@_) } sub openr { $_[0]->open('r') or die "Can't read $_[0]: $!" } sub openw { $_[0]->open('w') or die "Can't write $_[0]: $!" } sub touch { my $self = shift; if (-e $self) { my $now = time(); utime $now, $now, $self; } else { $self->openw; } } sub slurp { my ($self, %args) = @_; my $fh = $self->openr; if ($args{chomped} or $args{chomp}) { chomp( my @data = <$fh> ); return wantarray ? @data : join '', @data; } local $/ unless wantarray; return <$fh>; } sub remove { my $file = shift->stringify; return unlink $file unless -e $file; # Sets $! correctly 1 while unlink $file; return not -e $file; } 1; __END__ =head1 NAME Path::Class::File - Objects representing files =head1 SYNOPSIS use Path::Class qw(file); # Export a short constructor my $file = file('foo', 'bar.txt'); # Path::Class::File object my $file = Path::Class::File->new('foo', 'bar.txt'); # Same thing # Stringifies to 'foo/bar.txt' on Unix, 'foo\bar.txt' on Windows, etc. print "file: $file\n"; if ($file->is_absolute) { ... } my $v = $file->volume; # Could be 'C:' on Windows, empty string # on Unix, 'Macintosh HD:' on Mac OS $file->cleanup; # Perform logical cleanup of pathname my $dir = $file->dir; # A Path::Class::Dir object my $abs = $file->absolute; # Transform to absolute path my $rel = $file->relative; # Transform to relative path =head1 DESCRIPTION The C class contains functionality for manipulating file names in a cross-platform way. =head1 METHODS =over 4 =item $file = Path::Class::File->new( , , ..., ) =item $file = file( , , ..., ) Creates a new C object and returns it. The arguments specify the path to the file. Any volume may also be specified as the first argument, or as part of the first argument. You can use platform-neutral syntax: my $dir = file( 'foo', 'bar', 'baz.txt' ); or platform-native syntax: my $dir = dir( 'foo/bar/baz.txt' ); or a mixture of the two: my $dir = dir( 'foo/bar', 'baz.txt' ); All three of the above examples create relative paths. To create an absolute path, either use the platform native syntax for doing so: my $dir = dir( '/var/tmp/foo.txt' ); or use an empty string as the first argument: my $dir = dir( '', 'var', 'tmp', 'foo.txt' ); If the second form seems awkward, that's somewhat intentional - paths like C or C<\Windows> aren't cross-platform concepts in the first place, so they probably shouldn't appear in your code if you're trying to be cross-platform. The first form is perfectly fine, because paths like this may come from config files, user input, or whatever. =item $file->stringify This method is called internally when a C object is used in a string context, so the following are equivalent: $string = $file->stringify; $string = "$file"; =item $file->volume Returns the volume (e.g. C on Windows, C on Mac OS, etc.) of the object, if any. Otherwise, returns the empty string. =item $file->basename Returns the name of the file as a string, without the directory portion (if any). =item $file->is_dir Returns a boolean value indicating whether this object represents a directory. Not surprisingly, C objects always return false, and C objects always return true. =item $file->is_absolute Returns true or false depending on whether the file refers to an absolute path specifier (like C or C<\Windows\Foo.txt>). =item $file->cleanup Performs a logical cleanup of the file path. For instance: my $file = file('/foo//baz/./foo.txt')->cleanup; # $file now represents '/foo/baz/foo.txt'; =item $dir = $file->dir Returns a C object representing the directory containing this file. =item $dir = $file->parent A synonym for the C method. =item $abs = $file->absolute Returns a C object representing C<$file> as an absolute path. An optional argument, given as either a string or a C object, specifies the directory to use as the base of relativity - otherwise the current working directory will be used. =item $rel = $file->relative Returns a C object representing C<$file> as a relative path. An optional argument, given as either a string or a C object, specifies the directory to use as the base of relativity - otherwise the current working directory will be used. =item $foreign = $file->as_foreign($type) Returns a C object representing C<$file> as it would be specified on a system of type C<$type>. Known types include C, C, C, C, and C, i.e. anything for which there is a subclass of C. Any generated objects (subdirectories, files, parents, etc.) will also retain this type. =item $foreign = Path::Class::File->new_foreign($type, @args) Returns a C object representing a file as it would be specified on a system of type C<$type>. Known types include C, C, C, C, and C, i.e. anything for which there is a subclass of C. The arguments in C<@args> are the same as they would be specified in C. =item $fh = $file->open($mode, $permissions) Passes the given arguments, including C<$file>, to C<< IO::File->new >> (which in turn calls C<< IO::File->open >> and returns the result as an C object. If the opening fails, C is returned and C<$!> is set. =item $fh = $file->openr() A shortcut for $fh = $file->open('r') or die "Can't read $file: $!"; =item $fh = $file->openw() A shortcut for $fh = $file->open('w') or die "Can't write $file: $!"; =item $file->touch Sets the modification and access time of the given file to right now, if the file exists. If it doesn't exist, C will I it exist, and - YES! - set its modification and access time to now. =item $file->slurp() In a scalar context, returns the contents of C<$file> in a string. In a list context, returns the lines of C<$file> (according to how C<$/> is set) as a list. If the file can't be read, this method will throw an exception. If you want C run on each line of the file, pass a true value for the C or C parameters: my @lines = $file->slurp(chomp => 1); =item $file->remove() This method will remove the file in a way that works well on all platforms, and returns a boolean value indicating whether or not the file was successfully removed. C is better than simply calling Perl's C function, because on some platforms (notably VMS) you actually may need to call C several times before all versions of the file are gone - the C method handles this process for you. =item $st = $file->stat() Invokes C<< File::stat::stat() >> on this file and returns a C object representing the result. =item $st = $file->lstat() Same as C, but if C<$file> is a symbolic link, C stats the link instead of the file the link points to. =back =head1 AUTHOR Ken Williams, ken@mathforum.org =head1 SEE ALSO Path::Class, Path::Class::Dir, File::Spec =cut