In: |
pathname.rb
|
Parent: | Object |
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.
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| _ }
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| _ }
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, ...]
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.
These methods are a facade for FileTest:
These methods are a facade for File:
These methods are a facade for Dir:
These methods are a facade for IO:
These methods are a mixture of Find, FileUtils, and others:
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.
Create a Pathname object from the given String (or String-like object). If path contains a NUL character (\0), an ArgumentError is raised.
# File pathname.rb, line 187 def initialize(path) @path = path.to_str.dup if /\0/ =~ @path raise ArgumentError, "pathname contains \\0: #{@path.inspect}" end self.taint if @path.tainted? end
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.
# File pathname.rb, line 430 def +(other) other = Pathname.new(other) unless Pathname === other return other if other.absolute? path1 = @path path2 = other.to_s while m2 = %{\A\.\.(?:/+|\z)}.match(path2) and m1 = %{(\A|/+)([^/]+)\z}.match(path1) and %{\A(?:\.|\.\.)\z} !~ m1[2] path1 = m1[1].empty? ? '.' : '/' if (path1 = m1.pre_match).empty? path2 = '.' if (path2 = m2.post_match).empty? end if %{\A/+\z} =~ path1 while m2 = %{\A\.\.(?:/+|\z)}.match(path2) path2 = '.' if (path2 = m2.post_match).empty? end end return Pathname.new(path2) if path1 == '.' return Pathname.new(path1) if path2 == '.' if %{/\z} =~ path1 Pathname.new(path1 + path2) else Pathname.new(path1 + '/' + path2) end end
Provides for comparing pathnames, case-sensitively.
# File pathname.rb, line 214 def <=>(other) return nil unless Pathname === other @path.tr('/', "\0") <=> other.to_s.tr('/', "\0") 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.
# File pathname.rb, line 206 def ==(other) return false unless Pathname === other other.to_s == @path end
Predicate method for testing whether a path is absolute. It returns true if the pathname begins with a slash.
# File pathname.rb, line 401 def absolute? %{\A/} =~ @path ? true : false end
See File.atime. Returns last access time.
# File pathname.rb, line 595 def atime() File.atime(@path) end
See File.basename. Returns the last component of the path.
# File pathname.rb, line 656 def basename(*args) Pathname.new(File.basename(@path, *args)) end
Pathname#chdir is obsoleted at 1.8.1.
# File pathname.rb, line 772 def chdir(&block) warn "Pathname#chdir is obsoleted. Use Dir.chdir." Dir.chdir(@path, &block) 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.
# File pathname.rb, line 499 def children(with_directory=true) with_directory = false if @path == '.' result = [] Dir.foreach(@path) {|e| next if e == '.' || e == '..' if with_directory result << Pathname.new(File.join(@path, e)) else result << Pathname.new(e) end } result end
See File.chmod. Changes permissions.
# File pathname.rb, line 604 def chmod(mode) File.chmod(mode, @path) end
See File.chown. Change owner and group of file.
# File pathname.rb, line 610 def chown(owner, group) File.chown(owner, group, @path) end
Pathname#chroot is obsoleted at 1.8.1.
# File pathname.rb, line 778 def chroot warn "Pathname#chroot is obsoleted. Use Dir.chroot." Dir.chroot(@path) 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.
# File pathname.rb, line 244 def cleanpath(consider_symlink=false) if consider_symlink cleanpath_conservative else cleanpath_aggressive end end
See File.ctime. Returns last (directory entry, not file) change time.
# File pathname.rb, line 598 def ctime() File.ctime(@path) end
Pathname#dir_foreach is obsoleted at 1.8.1.
# File pathname.rb, line 796 def dir_foreach(*args, &block) warn "Pathname#dir_foreach is obsoleted. Use Pathname#each_entry." each_entry(*args, &block) end
See FileTest.directory?.
# File pathname.rb, line 708 def directory?() FileTest.directory?(@path) end
See File.dirname. Returns all but the last component of the path.
# File pathname.rb, line 659 def dirname() Pathname.new(File.dirname(@path)) end
Iterates over each component of the path.
Pathname.new("/usr/bin/ruby").each_filename # yields "usr", "bin", and "ruby".
# File pathname.rb, line 416 def each_filename # :yield: s @path.scan(%{[^/]+}) { yield $& } end
See FileTest.executable?.
# File pathname.rb, line 696 def executable?() FileTest.executable?(@path) end
See FileTest.executable_real?.
# File pathname.rb, line 699 def executable_real?() FileTest.executable_real?(@path) end
See File.expand_path.
# File pathname.rb, line 665 def expand_path(*args) Pathname.new(File.expand_path(@path, *args)) end
See File.extname. Returns the file’s extension.
# File pathname.rb, line 662 def extname() File.extname(@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 ./.
# File pathname.rb, line 825 def find(&block) # :yield: p require 'find' if @path == '.' Find.find(@path) {|f| yield Pathname.new(f.sub(%{\A\./}, '')) } else Find.find(@path) {|f| yield Pathname.new(f) } end end
See File.fnmatch. Return true if the receiver matches the given pattern.
# File pathname.rb, line 617 def fnmatch(pattern, *args) File.fnmatch(pattern, @path, *args) end
This method is obsoleted at 1.8.1. Use each_line or each_entry.
# File pathname.rb, line 869 def foreach(*args, &block) warn "Pathname#foreach is obsoleted. Use each_line or each_entry." if FileTest.directory? @path # For polymorphism between Dir.foreach and IO.foreach, # Pathname#foreach doesn't yield Pathname object. Dir.foreach(@path, *args, &block) else IO.foreach(@path, *args, &block) end end
Pathname#foreachline is obsoleted at 1.8.1. Use each_line.
# File pathname.rb, line 575 def foreachline(*args, &block) warn "Pathname#foreachline is obsoleted. Use Pathname#each_line." each_line(*args, &block) end
See File.ftype. Returns "type" of file ("file", "directory", etc).
# File pathname.rb, line 624 def ftype() File.ftype(@path) end
Pathname#join joins pathnames.
path0.join(path1, …, pathN) is the same as path0 + path1 + … + pathN.
# File pathname.rb, line 465 def join(*args) args.unshift self result = args.pop result = Pathname.new(result) unless Pathname === result return result if result.absolute? args.reverse_each {|arg| arg = Pathname.new(arg) unless Pathname === arg result = arg + result return result if result.absolute? } result end
See File.lchown.
# File pathname.rb, line 613 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.
# File pathname.rb, line 673 def link(old) warn 'Pathname#link is obsoleted. Use Pathname#make_link.' File.link(old, @path) end
See File.link. Creates a hard link.
# File pathname.rb, line 627 def make_link(old) File.link(old, @path) end
See File.symlink. Creates a symbolic link.
# File pathname.rb, line 647 def make_symlink(old) File.symlink(old, @path) end
See Dir.mkdir. Create the referenced directory.
# File pathname.rb, line 802 def mkdir(*args) Dir.mkdir(@path, *args) end
See FileUtils.mkpath. Creates a full path, including any intermediate directories that don’t yet exist.
# File pathname.rb, line 839 def mkpath require 'fileutils' FileUtils.mkpath(@path) nil end
mountpoint? returns true if self points to a mountpoint.
# File pathname.rb, line 377 def mountpoint? begin stat1 = self.lstat stat2 = self.parent.lstat stat1.dev == stat2.dev && stat1.ino == stat2.ino || stat1.dev != stat2.dev rescue Errno::ENOENT false end end
See File.mtime. Returns last modification time.
# File pathname.rb, line 601 def mtime() File.mtime(@path) end
See File.open. Opens the file for reading or writing.
# File pathname.rb, line 630 def open(*args, &block) # :yield: file File.open(@path, *args, &block) end
See Dir.open.
# File pathname.rb, line 808 def opendir(&block) # :yield: dir Dir.open(@path, &block) end
See IO.read. Returns all the bytes from the file, or the first N if specified.
# File pathname.rb, line 582 def read(*args) IO.read(@path, *args) end
See FileTest.readable_real?.
# File pathname.rb, line 726 def readable_real?() FileTest.readable_real?(@path) end
See IO.readlines. Returns all the lines from the file.
# File pathname.rb, line 585 def readlines(*args) IO.readlines(@path, *args) end
See File.readlink. Read symbolic link.
# File pathname.rb, line 635 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.
# File pathname.rb, line 308 def realpath(*args) unless args.empty? warn "The argument for Pathname#realpath is obsoleted." end force_absolute = args.fetch(0, true) if %{\A/} =~ @path top = '/' unresolved = @path.scan(%{[^/]+}) elsif force_absolute # Although POSIX getcwd returns a pathname which contains no symlink, # 4.4BSD-Lite2 derived getcwd may return the environment variable $PWD # which may contain a symlink. # So the return value of Dir.pwd should be examined. top = '/' unresolved = Dir.pwd.scan(%{[^/]+}) + @path.scan(%{[^/]+}) else top = '' unresolved = @path.scan(%{[^/]+}) end resolved = [] until unresolved.empty? case unresolved.last when '.' unresolved.pop when '..' resolved.unshift unresolved.pop else loop_check = {} while (stat = File.lstat(path = top + unresolved.join('/'))).symlink? symlink_id = "#{stat.dev}:#{stat.ino}" raise Errno::ELOOP.new(path) if loop_check[symlink_id] loop_check[symlink_id] = true if %{\A/} =~ (link = File.readlink(path)) top = '/' unresolved = link.scan(%{[^/]+}) else unresolved[-1,1] = link.scan(%{[^/]+}) end end next if (filename = unresolved.pop) == '.' if filename != '..' && resolved.first == '..' resolved.shift else resolved.unshift filename end end end if top == '/' resolved.shift while resolved[0] == '..' end if resolved.empty? Pathname.new(top.empty? ? '.' : '/') else Pathname.new(top + resolved.join('/')) end 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.
# File pathname.rb, line 524 def relative_path_from(base_directory) if self.absolute? != base_directory.absolute? raise ArgumentError, "relative path between absolute and relative path: #{self.inspect}, #{base_directory.inspect}" end dest = [] self.cleanpath.each_filename {|f| next if f == '.' dest << f } base = [] base_directory.cleanpath.each_filename {|f| next if f == '.' base << f } while !base.empty? && !dest.empty? && base[0] == dest[0] base.shift dest.shift end if base.include? '..' raise ArgumentError, "base_directory has ..: #{base_directory.inspect}" end base.fill '..' relpath = base + dest if relpath.empty? Pathname.new(".") else Pathname.new(relpath.join('/')) end end
See File.rename. Rename the file.
# File pathname.rb, line 638 def rename(to) File.rename(@path, to) end
See Dir.rmdir. Remove the referenced directory.
# File pathname.rb, line 805 def rmdir() Dir.rmdir(@path) end
See FileUtils.rm_r. Deletes a directory and all beneath it.
# File pathname.rb, line 846 def rmtree # The name "rmtree" is borrowed from File::Path of Perl. # File::Path provides "mkpath" and "rmtree". require 'fileutils' FileUtils.rm_r(@path) nil 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/...
# File pathname.rb, line 395 def root? %{\A/+\z} =~ @path ? true : false end
See File.stat. Returns a File::Stat object.
# File pathname.rb, line 641 def stat() File.stat(@path) end
Pathname#symlink is confusing and obsoleted because the receiver/argument order is inverted to corresponding system call.
# File pathname.rb, line 680 def symlink(old) warn 'Pathname#symlink is obsoleted. Use Pathname#make_symlink.' File.symlink(old, @path) end
See File.truncate. Truncate the file to length bytes.
# File pathname.rb, line 650 def truncate(length) File.truncate(@path, length) end
Removes a file or directory, using File.unlink or Dir.unlink as necessary.
# File pathname.rb, line 859 def unlink() if FileTest.directory? @path Dir.unlink @path else File.unlink @path end end
See File.utime. Update the access and modification times.
# File pathname.rb, line 653 def utime(atime, mtime) File.utime(atime, mtime, @path) end