Class Pathname
In: lib/pathname.rb
Parent: Object

Pathname

Pathname represents a pathname which locates a file in a filesystem. It supports only Unix style pathnames. It does not represent the file itself. A Pathname can be relative or absolute. It’s not until you try to reference the file that it even matters whether the file exists or not.

Pathname is immutable. It has no method for destructive update.

The value of this class is to manipulate file path information in a neater way than standard Ruby provides. The examples below demonstrate the difference. All functionality from File, FileTest, and some from Dir and FileUtils is included, in an unsurprising way. It is essentially a facade for all of these, and more.

Examples

Example 1: Using Pathname

  require 'pathname'
  p = Pathname.new("/usr/bin/ruby")
  size = p.size              # 27662
  isdir = p.directory?       # false
  dir  = p.dirname           # Pathname:/usr/bin
  base = p.basename          # Pathname:ruby
  dir, base = p.split        # [Pathname:/usr/bin, Pathname:ruby]
  data = p.read
  p.open { |f| _ }
  p.each_line { |line| _ }

Example 2: Using standard Ruby

  p = "/usr/bin/ruby"
  size = File.size(p)        # 27662
  isdir = File.directory?(p) # false
  dir  = File.dirname(p)     # "/usr/bin"
  base = File.basename(p)    # "ruby"
  dir, base = File.split(p)  # ["/usr/bin", "ruby"]
  data = File.read(p)
  File.open(p) { |f| _ }
  File.foreach(p) { |line| _ }

Example 3: Special features

  p1 = Pathname.new("/usr/lib")   # Pathname:/usr/lib
  p2 = p1 + "ruby/1.8"            # Pathname:/usr/lib/ruby/1.8
  p3 = p1.parent                  # Pathname:/usr
  p4 = p2.relative_path_from(p3)  # Pathname:lib/ruby/1.8
  pwd = Pathname.pwd              # Pathname:/home/gavin
  pwd.absolute?                   # true
  p5 = Pathname.new "."           # Pathname:.
  p5 = p5 + "music/../articles"   # Pathname:music/../articles
  p5.cleanpath                    # Pathname:articles
  p5.realpath                     # Pathname:/home/gavin/articles
  p5.children                     # [Pathname:/home/gavin/articles/linux, ...]

Breakdown of functionality

Core methods

These methods are effectively manipulating a String, because that’s all a path is. Except for mountpoint?, children, and realpath, they don’t access the filesystem.

File status predicate methods

These methods are a facade for FileTest:

File property and manipulation methods

These methods are a facade for File:

Directory methods

These methods are a facade for Dir:

IO

These methods are a facade for IO:

Utilities

These methods are a mixture of Find, FileUtils, and others:

Method documentation

As the above section shows, most of the methods in Pathname are facades. The documentation for these methods generally just says, for instance, "See FileTest.writable?", as you should be familiar with the original method anyway, and its documentation (e.g. through ri) will contain more information. In some cases, a brief description will follow.

Methods

+   <=>   ==   ===   absolute?   atime   basename   blockdev?   chardev?   chdir   children   chmod   chown   chroot   cleanpath   cleanpath_aggressive   cleanpath_conservative   ctime   delete   dir_foreach   directory?   dirname   each_entry   each_filename   each_line   entries   eql?   executable?   executable_real?   exist?   expand_path   extname   file?   find   fnmatch   fnmatch?   foreach   foreachline   freeze   ftype   getwd   glob   grpowned?   join   lchmod   lchown   link   lstat   make_link   make_symlink   mkdir   mkpath   mountpoint?   mtime   new   open   opendir   owned?   parent   pipe?   read   readable?   readable_real?   readlines   readlink   realpath   relative?   relative_path_from   rename   rmdir   rmtree   root?   setgid?   setuid?   size   size?   socket?   split   stat   sticky?   symlink   symlink?   sysopen   taint   to_s   to_str   truncate   unlink   untaint   utime   writable?   writable_real?   zero?  

External Aliases

getwd -> pwd

Public Class methods

See Dir.getwd. Returns the current working directory as a Pathname.

[Source]

     # File lib/pathname.rb, line 771
771:   def Pathname.getwd() Pathname.new(Dir.getwd) end

See Dir.glob. Returns or yields Pathname objects.

[Source]

     # File lib/pathname.rb, line 762
762:   def Pathname.glob(*args) # :yield: p
763:     if block_given?
764:       Dir.glob(*args) {|f| yield Pathname.new(f) }
765:     else
766:       Dir.glob(*args).map {|f| Pathname.new(f) }
767:     end
768:   end

Create a Pathname object from the given String (or String-like object). If path contains a NUL character (\0), an ArgumentError is raised.

[Source]

     # File lib/pathname.rb, line 187
187:   def initialize(path)
188:     path = path.to_str if path.respond_to? :to_str
189:     @path = path.dup
190: 
191:     if /\0/ =~ @path
192:       raise ArgumentError, "pathname contains \\0: #{@path.inspect}"
193:     end
194: 
195:     self.taint if @path.tainted?
196:   end

Public Instance methods

Pathname#+ appends a pathname fragment to this one to produce a new Pathname object.

  p1 = Pathname.new("/usr")      # Pathname:/usr
  p2 = p1 + "bin/ruby"           # Pathname:/usr/bin/ruby
  p3 = p1 + "/etc/passwd"        # Pathname:/etc/passwd

This method doesn’t access the file system; it is pure string manipulation.

[Source]

     # File lib/pathname.rb, line 433
433:   def +(other)
434:     other = Pathname.new(other) unless Pathname === other
435: 
436:     return other if other.absolute?
437: 
438:     path1 = @path
439:     path2 = other.to_s
440:     while m2 = %r{\A\.\.(?:/+|\z)}.match(path2) and
441:           m1 = %r{(\A|/+)([^/]+)\z}.match(path1) and
442:           %r{\A(?:\.|\.\.)\z} !~ m1[2]
443:       path1 = m1[1].empty? ? '.' : '/' if (path1 = m1.pre_match).empty?
444:       path2 = '.' if (path2 = m2.post_match).empty?
445:     end
446:     if %r{\A/+\z} =~ path1
447:       while m2 = %r{\A\.\.(?:/+|\z)}.match(path2)
448:         path2 = '.' if (path2 = m2.post_match).empty?
449:       end
450:     end
451: 
452:     return Pathname.new(path2) if path1 == '.'
453:     return Pathname.new(path1) if path2 == '.'
454: 
455:     if %r{/\z} =~ path1
456:       Pathname.new(path1 + path2)
457:     else
458:       Pathname.new(path1 + '/' + path2)
459:     end
460:   end

Provides for comparing pathnames, case-sensitively.

[Source]

     # File lib/pathname.rb, line 215
215:   def <=>(other)
216:     return nil unless Pathname === other
217:     @path.tr('/', "\0") <=> other.to_s.tr('/', "\0")
218:   end

Compare this pathname with other. The comparison is string-based. Be aware that two different paths (foo.txt and ./foo.txt) can refer to the same file.

[Source]

     # File lib/pathname.rb, line 207
207:   def ==(other)
208:     return false unless Pathname === other
209:     other.to_s == @path
210:   end
===(other)

Alias for #==

Predicate method for testing whether a path is absolute. It returns true if the pathname begins with a slash.

[Source]

     # File lib/pathname.rb, line 404
404:   def absolute?
405:     %r{\A/} =~ @path ? true : false
406:   end

See File.atime. Returns last access time.

[Source]

     # File lib/pathname.rb, line 598
598:   def atime() File.atime(@path) end

See File.basename. Returns the last component of the path.

[Source]

     # File lib/pathname.rb, line 659
659:   def basename(*args) Pathname.new(File.basename(@path, *args)) end

See FileTest.blockdev?.

[Source]

     # File lib/pathname.rb, line 693
693:   def blockdev?() FileTest.blockdev?(@path) end

See FileTest.chardev?.

[Source]

     # File lib/pathname.rb, line 696
696:   def chardev?() FileTest.chardev?(@path) end

Pathname#chdir is obsoleted at 1.8.1.

[Source]

     # File lib/pathname.rb, line 775
775:   def chdir(&block)
776:     warn "Pathname#chdir is obsoleted.  Use Dir.chdir."
777:     Dir.chdir(@path, &block)
778:   end

Returns the children of the directory (files and subdirectories, not recursive) as an array of Pathname objects. By default, the returned pathnames will have enough information to access the files. If you set with_directory to false, then the returned pathnames will contain the filename only.

For example:

  p = Pathname("/usr/lib/ruby/1.8")
  p.children
      # -> [ Pathname:/usr/lib/ruby/1.8/English.rb,
             Pathname:/usr/lib/ruby/1.8/Env.rb,
             Pathname:/usr/lib/ruby/1.8/abbrev.rb, ... ]
  p.children(false)
      # -> [ Pathname:English.rb, Pathname:Env.rb, Pathname:abbrev.rb, ... ]

Note that the result never contain the entries . and .. in the directory because they are not children.

This method has existed since 1.8.1.

[Source]

     # File lib/pathname.rb, line 502
502:   def children(with_directory=true)
503:     with_directory = false if @path == '.'
504:     result = []
505:     Dir.foreach(@path) {|e|
506:       next if e == '.' || e == '..'
507:       if with_directory
508:         result << Pathname.new(File.join(@path, e))
509:       else
510:         result << Pathname.new(e)
511:       end
512:     }
513:     result
514:   end

See File.chmod. Changes permissions.

[Source]

     # File lib/pathname.rb, line 607
607:   def chmod(mode) File.chmod(mode, @path) end

See File.chown. Change owner and group of file.

[Source]

     # File lib/pathname.rb, line 613
613:   def chown(owner, group) File.chown(owner, group, @path) end

Pathname#chroot is obsoleted at 1.8.1.

[Source]

     # File lib/pathname.rb, line 781
781:   def chroot
782:     warn "Pathname#chroot is obsoleted.  Use Dir.chroot."
783:     Dir.chroot(@path)
784:   end

Returns clean pathname of self with consecutive slashes and useless dots removed. The filesystem is not accessed.

If consider_symlink is true, then a more conservative algorithm is used to avoid breaking symbolic linkages. This may retain more .. entries than absolutely necessary, but without accessing the filesystem, this can’t be avoided. See realpath.

[Source]

     # File lib/pathname.rb, line 245
245:   def cleanpath(consider_symlink=false)
246:     if consider_symlink
247:       cleanpath_conservative
248:     else
249:       cleanpath_aggressive
250:     end
251:   end

See File.ctime. Returns last (directory entry, not file) change time.

[Source]

     # File lib/pathname.rb, line 601
601:   def ctime() File.ctime(@path) end
delete()

Alias for unlink

Pathname#dir_foreach is obsoleted at 1.8.1.

[Source]

     # File lib/pathname.rb, line 799
799:   def dir_foreach(*args, &block)
800:     warn "Pathname#dir_foreach is obsoleted.  Use Pathname#each_entry."
801:     each_entry(*args, &block)
802:   end

See FileTest.directory?.

[Source]

     # File lib/pathname.rb, line 711
711:   def directory?() FileTest.directory?(@path) end

See File.dirname. Returns all but the last component of the path.

[Source]

     # File lib/pathname.rb, line 662
662:   def dirname() Pathname.new(File.dirname(@path)) end

Iterates over the entries (files and subdirectories) in the directory. It yields a Pathname object for each entry.

This method has existed since 1.8.1.

[Source]

     # File lib/pathname.rb, line 794
794:   def each_entry(&block) # :yield: p
795:     Dir.foreach(@path) {|f| yield Pathname.new(f) }
796:   end

Iterates over each component of the path.

  Pathname.new("/usr/bin/ruby").each_filename {|filename| ... }
    # yields "usr", "bin", and "ruby".

[Source]

     # File lib/pathname.rb, line 419
419:   def each_filename # :yield: s
420:     @path.scan(%r{[^/]+}) { yield $& }
421:   end

each_line iterates over the line in the file. It yields a String object for each line.

This method has existed since 1.8.1.

[Source]

     # File lib/pathname.rb, line 573
573:   def each_line(*args, &block) # :yield: line
574:     IO.foreach(@path, *args, &block)
575:   end

Return the entries (files and subdirectories) in the directory, each as a Pathname object.

[Source]

     # File lib/pathname.rb, line 788
788:   def entries() Dir.entries(@path).map {|f| Pathname.new(f) } end
eql?(other)

Alias for #==

See FileTest.executable?.

[Source]

     # File lib/pathname.rb, line 699
699:   def executable?() FileTest.executable?(@path) end

See FileTest.executable_real?.

[Source]

     # File lib/pathname.rb, line 702
702:   def executable_real?() FileTest.executable_real?(@path) end

See FileTest.exist?.

[Source]

     # File lib/pathname.rb, line 705
705:   def exist?() FileTest.exist?(@path) end

See File.expand_path.

[Source]

     # File lib/pathname.rb, line 668
668:   def expand_path(*args) Pathname.new(File.expand_path(@path, *args)) end

See File.extname. Returns the file’s extension.

[Source]

     # File lib/pathname.rb, line 665
665:   def extname() File.extname(@path) end

See FileTest.file?.

[Source]

     # File lib/pathname.rb, line 714
714:   def file?() FileTest.file?(@path) end

Pathname#find is an iterator to traverse a directory tree in a depth first manner. It yields a Pathname for each file under "this" directory.

Since it is implemented by find.rb, Find.prune can be used to control the traverse.

If self is ., yielded pathnames begin with a filename in the current directory, not ./.

[Source]

     # File lib/pathname.rb, line 828
828:   def find(&block) # :yield: p
829:     require 'find'
830:     if @path == '.'
831:       Find.find(@path) {|f| yield Pathname.new(f.sub(%r{\A\./}, '')) }
832:     else
833:       Find.find(@path) {|f| yield Pathname.new(f) }
834:     end
835:   end

See File.fnmatch. Return true if the receiver matches the given pattern.

[Source]

     # File lib/pathname.rb, line 620
620:   def fnmatch(pattern, *args) File.fnmatch(pattern, @path, *args) end

See File.fnmatch? (same as fnmatch).

[Source]

     # File lib/pathname.rb, line 623
623:   def fnmatch?(pattern, *args) File.fnmatch?(pattern, @path, *args) end

This method is obsoleted at 1.8.1. Use each_line or each_entry.

[Source]

     # File lib/pathname.rb, line 872
872:   def foreach(*args, &block)
873:     warn "Pathname#foreach is obsoleted.  Use each_line or each_entry."
874:     if FileTest.directory? @path
875:       # For polymorphism between Dir.foreach and IO.foreach,
876:       # Pathname#foreach doesn't yield Pathname object.
877:       Dir.foreach(@path, *args, &block)
878:     else
879:       IO.foreach(@path, *args, &block)
880:     end
881:   end

Pathname#foreachline is obsoleted at 1.8.1. Use each_line.

[Source]

     # File lib/pathname.rb, line 578
578:   def foreachline(*args, &block)
579:     warn "Pathname#foreachline is obsoleted.  Use Pathname#each_line."
580:     each_line(*args, &block)
581:   end

[Source]

     # File lib/pathname.rb, line 198
198:   def freeze() super; @path.freeze; self end

See File.ftype. Returns "type" of file ("file", "directory", etc).

[Source]

     # File lib/pathname.rb, line 627
627:   def ftype() File.ftype(@path) end

See FileTest.grpowned?.

[Source]

     # File lib/pathname.rb, line 708
708:   def grpowned?() FileTest.grpowned?(@path) end

Pathname#join joins pathnames.

path0.join(path1, …, pathN) is the same as path0 + path1 + … + pathN.

[Source]

     # File lib/pathname.rb, line 468
468:   def join(*args)
469:     args.unshift self
470:     result = args.pop
471:     result = Pathname.new(result) unless Pathname === result
472:     return result if result.absolute?
473:     args.reverse_each {|arg|
474:       arg = Pathname.new(arg) unless Pathname === arg
475:       result = arg + result
476:       return result if result.absolute?
477:     }
478:     result
479:   end

See File.lchmod.

[Source]

     # File lib/pathname.rb, line 610
610:   def lchmod(mode) File.lchmod(mode, @path) end

See File.lchown.

[Source]

     # File lib/pathname.rb, line 616
616:   def lchown(owner, group) File.lchown(owner, group, @path) end

Pathname#link is confusing and obsoleted because the receiver/argument order is inverted to corresponding system call.

[Source]

     # File lib/pathname.rb, line 676
676:   def link(old)
677:     warn 'Pathname#link is obsoleted.  Use Pathname#make_link.'
678:     File.link(old, @path)
679:   end

See File.lstat.

[Source]

     # File lib/pathname.rb, line 647
647:   def lstat() File.lstat(@path) end

See File.link. Creates a hard link.

[Source]

     # File lib/pathname.rb, line 630
630:   def make_link(old) File.link(old, @path) end

See File.symlink. Creates a symbolic link.

[Source]

     # File lib/pathname.rb, line 650
650:   def make_symlink(old) File.symlink(old, @path) end

See Dir.mkdir. Create the referenced directory.

[Source]

     # File lib/pathname.rb, line 805
805:   def mkdir(*args) Dir.mkdir(@path, *args) end

See FileUtils.mkpath. Creates a full path, including any intermediate directories that don’t yet exist.

[Source]

     # File lib/pathname.rb, line 842
842:   def mkpath
843:     require 'fileutils'
844:     FileUtils.mkpath(@path)
845:     nil
846:   end

mountpoint? returns true if self points to a mountpoint.

[Source]

     # File lib/pathname.rb, line 380
380:   def mountpoint?
381:     begin
382:       stat1 = self.lstat
383:       stat2 = self.parent.lstat
384:       stat1.dev == stat2.dev && stat1.ino == stat2.ino ||
385:         stat1.dev != stat2.dev
386:     rescue Errno::ENOENT
387:       false
388:     end
389:   end

See File.mtime. Returns last modification time.

[Source]

     # File lib/pathname.rb, line 604
604:   def mtime() File.mtime(@path) end

See File.open. Opens the file for reading or writing.

[Source]

     # File lib/pathname.rb, line 633
633:   def open(*args, &block) # :yield: file
634:     File.open(@path, *args, &block)
635:   end

See Dir.open.

[Source]

     # File lib/pathname.rb, line 811
811:   def opendir(&block) # :yield: dir
812:     Dir.open(@path, &block)
813:   end

See FileTest.owned?.

[Source]

     # File lib/pathname.rb, line 723
723:   def owned?() FileTest.owned?(@path) end

parent returns the parent directory.

This is same as self + ’..’.

[Source]

     # File lib/pathname.rb, line 375
375:   def parent
376:     self + '..'
377:   end

See FileTest.pipe?.

[Source]

     # File lib/pathname.rb, line 717
717:   def pipe?() FileTest.pipe?(@path) end

See IO.read. Returns all the bytes from the file, or the first N if specified.

[Source]

     # File lib/pathname.rb, line 585
585:   def read(*args) IO.read(@path, *args) end

See FileTest.readable?.

[Source]

     # File lib/pathname.rb, line 726
726:   def readable?() FileTest.readable?(@path) end

See FileTest.readable_real?.

[Source]

     # File lib/pathname.rb, line 729
729:   def readable_real?() FileTest.readable_real?(@path) end

See IO.readlines. Returns all the lines from the file.

[Source]

     # File lib/pathname.rb, line 588
588:   def readlines(*args) IO.readlines(@path, *args) end

See File.readlink. Read symbolic link.

[Source]

     # File lib/pathname.rb, line 638
638:   def readlink() Pathname.new(File.readlink(@path)) end

Returns a real (absolute) pathname of self in the actual filesystem. The real pathname doesn’t contain symlinks or useless dots.

No arguments should be given; the old behaviour is obsoleted.

[Source]

     # File lib/pathname.rb, line 311
311:   def realpath(*args)
312:     unless args.empty?
313:       warn "The argument for Pathname#realpath is obsoleted."
314:     end
315:     force_absolute = args.fetch(0, true)
316: 
317:     if %r{\A/} =~ @path
318:       top = '/'
319:       unresolved = @path.scan(%r{[^/]+})
320:     elsif force_absolute
321:       # Although POSIX getcwd returns a pathname which contains no symlink,
322:       # 4.4BSD-Lite2 derived getcwd may return the environment variable $PWD
323:       # which may contain a symlink.
324:       # So the return value of Dir.pwd should be examined.
325:       top = '/'
326:       unresolved = Dir.pwd.scan(%r{[^/]+}) + @path.scan(%r{[^/]+})
327:     else
328:       top = ''
329:       unresolved = @path.scan(%r{[^/]+})
330:     end
331:     resolved = []
332: 
333:     until unresolved.empty?
334:       case unresolved.last
335:       when '.'
336:         unresolved.pop
337:       when '..'
338:         resolved.unshift unresolved.pop
339:       else
340:         loop_check = {}
341:         while (stat = File.lstat(path = top + unresolved.join('/'))).symlink?
342:           symlink_id = "#{stat.dev}:#{stat.ino}"
343:           raise Errno::ELOOP.new(path) if loop_check[symlink_id]
344:           loop_check[symlink_id] = true
345:           if %r{\A/} =~ (link = File.readlink(path))
346:             top = '/'
347:             unresolved = link.scan(%r{[^/]+})
348:           else
349:             unresolved[-1,1] = link.scan(%r{[^/]+})
350:           end
351:         end
352:         next if (filename = unresolved.pop) == '.'
353:         if filename != '..' && resolved.first == '..'
354:           resolved.shift
355:         else
356:           resolved.unshift filename
357:         end
358:       end
359:     end
360: 
361:     if top == '/'
362:       resolved.shift while resolved[0] == '..'
363:     end
364:     
365:     if resolved.empty?
366:       Pathname.new(top.empty? ? '.' : '/')
367:     else
368:       Pathname.new(top + resolved.join('/'))
369:     end
370:   end

The opposite of absolute?

[Source]

     # File lib/pathname.rb, line 409
409:   def relative?
410:     !absolute?
411:   end

relative_path_from returns a relative path from the argument to the receiver. If self is absolute, the argument must be absolute too. If self is relative, the argument must be relative too.

relative_path_from doesn’t access the filesystem. It assumes no symlinks.

ArgumentError is raised when it cannot find a relative path.

This method has existed since 1.8.1.

[Source]

     # File lib/pathname.rb, line 527
527:   def relative_path_from(base_directory)
528:     if self.absolute? != base_directory.absolute?
529:       raise ArgumentError,
530:         "relative path between absolute and relative path: #{self.inspect}, #{base_directory.inspect}"
531:     end
532: 
533:     dest = []
534:     self.cleanpath.each_filename {|f|
535:       next if f == '.'
536:       dest << f
537:     }
538: 
539:     base = []
540:     base_directory.cleanpath.each_filename {|f|
541:       next if f == '.'
542:       base << f
543:     }
544: 
545:     while !base.empty? && !dest.empty? && base[0] == dest[0]
546:       base.shift
547:       dest.shift
548:     end
549: 
550:     if base.include? '..'
551:       raise ArgumentError, "base_directory has ..: #{base_directory.inspect}"
552:     end
553: 
554:     base.fill '..'
555:     relpath = base + dest
556:     if relpath.empty?
557:       Pathname.new(".")
558:     else
559:       Pathname.new(relpath.join('/'))
560:     end
561:   end

See File.rename. Rename the file.

[Source]

     # File lib/pathname.rb, line 641
641:   def rename(to) File.rename(@path, to) end

See Dir.rmdir. Remove the referenced directory.

[Source]

     # File lib/pathname.rb, line 808
808:   def rmdir() Dir.rmdir(@path) end

See FileUtils.rm_r. Deletes a directory and all beneath it.

[Source]

     # File lib/pathname.rb, line 849
849:   def rmtree
850:     # The name "rmtree" is borrowed from File::Path of Perl.
851:     # File::Path provides "mkpath" and "rmtree".
852:     require 'fileutils'
853:     FileUtils.rm_r(@path)
854:     nil
855:   end

root? is a predicate for root directories. I.e. it returns true if the pathname consists of consecutive slashes.

It doesn’t access actual filesystem. So it may return false for some pathnames which points to roots such as /usr/...

[Source]

     # File lib/pathname.rb, line 398
398:   def root?
399:     %r{\A/+\z} =~ @path ? true : false
400:   end

See FileTest.setgid?.

[Source]

     # File lib/pathname.rb, line 735
735:   def setgid?() FileTest.setgid?(@path) end

See FileTest.setuid?.

[Source]

     # File lib/pathname.rb, line 732
732:   def setuid?() FileTest.setuid?(@path) end

See FileTest.size.

[Source]

     # File lib/pathname.rb, line 738
738:   def size() FileTest.size(@path) end

See FileTest.size?.

[Source]

     # File lib/pathname.rb, line 741
741:   def size?() FileTest.size?(@path) end

See FileTest.socket?.

[Source]

     # File lib/pathname.rb, line 720
720:   def socket?() FileTest.socket?(@path) end

See File.split. Returns the dirname and the basename in an Array.

[Source]

     # File lib/pathname.rb, line 672
672:   def split() File.split(@path).map {|f| Pathname.new(f) } end

See File.stat. Returns a File::Stat object.

[Source]

     # File lib/pathname.rb, line 644
644:   def stat() File.stat(@path) end

See FileTest.sticky?.

[Source]

     # File lib/pathname.rb, line 744
744:   def sticky?() FileTest.sticky?(@path) end

Pathname#symlink is confusing and obsoleted because the receiver/argument order is inverted to corresponding system call.

[Source]

     # File lib/pathname.rb, line 683
683:   def symlink(old)
684:     warn 'Pathname#symlink is obsoleted.  Use Pathname#make_symlink.'
685:     File.symlink(old, @path)
686:   end

See FileTest.symlink?.

[Source]

     # File lib/pathname.rb, line 747
747:   def symlink?() FileTest.symlink?(@path) end

See IO.sysopen.

[Source]

     # File lib/pathname.rb, line 591
591:   def sysopen(*args) IO.sysopen(@path, *args) end

[Source]

     # File lib/pathname.rb, line 199
199:   def taint() super; @path.taint; self end

Return the path as a String.

[Source]

     # File lib/pathname.rb, line 225
225:   def to_s
226:     @path.dup
227:   end
to_str()

Alias for to_s

See File.truncate. Truncate the file to length bytes.

[Source]

     # File lib/pathname.rb, line 653
653:   def truncate(length) File.truncate(@path, length) end

Removes a file or directory, using File.unlink or Dir.unlink as necessary.

[Source]

     # File lib/pathname.rb, line 862
862:   def unlink()
863:     begin
864:       Dir.unlink @path
865:     rescue Errno::ENOTDIR
866:       File.unlink @path
867:     end
868:   end

[Source]

     # File lib/pathname.rb, line 200
200:   def untaint() super; @path.untaint; self end

See File.utime. Update the access and modification times.

[Source]

     # File lib/pathname.rb, line 656
656:   def utime(atime, mtime) File.utime(atime, mtime, @path) end

See FileTest.writable?.

[Source]

     # File lib/pathname.rb, line 750
750:   def writable?() FileTest.writable?(@path) end

See FileTest.writable_real?.

[Source]

     # File lib/pathname.rb, line 753
753:   def writable_real?() FileTest.writable_real?(@path) end

See FileTest.zero?.

[Source]

     # File lib/pathname.rb, line 756
756:   def zero?() FileTest.zero?(@path) end

Private Instance methods

Clean the path simply by resolving and removing excess "." and ".." entries. Nothing more, nothing less.

[Source]

     # File lib/pathname.rb, line 257
257:   def cleanpath_aggressive
258:     # cleanpath_aggressive assumes:
259:     # * no symlink
260:     # * all pathname prefix contained in the pathname is existing directory
261:     return Pathname.new('') if @path == ''
262:     absolute = absolute?
263:     names = []
264:     @path.scan(%r{[^/]+}) {|name|
265:       next if name == '.'
266:       if name == '..'
267:         if names.empty?
268:           next if absolute
269:         else
270:           if names.last != '..'
271:             names.pop
272:             next
273:           end
274:         end
275:       end
276:       names << name
277:     }
278:     return Pathname.new(absolute ? '/' : '.') if names.empty?
279:     path = absolute ? '/' : ''
280:     path << names.join('/')
281:     Pathname.new(path)
282:   end

[Source]

     # File lib/pathname.rb, line 285
285:   def cleanpath_conservative
286:     return Pathname.new('') if @path == ''
287:     names = @path.scan(%r{[^/]+})
288:     last_dot = names.last == '.'
289:     names.delete('.')
290:     names.shift while names.first == '..' if absolute?
291:     return Pathname.new(absolute? ? '/' : '.') if names.empty?
292:     path = absolute? ? '/' : ''
293:     path << names.join('/')
294:     if names.last != '..'
295:       if last_dot
296:         path << '/.'
297:       elsif %r{/\z} =~ @path
298:         path << '/'
299:       end
300:     end
301:     Pathname.new(path)
302:   end

[Validate]