MLSxEntry represents an entry in responses of MLST/MLSD. Each entry has the facts (e.g., size, last modification time, etc.) and the pathname.

Methods
A
C
D
E
F
L
N
P
R
W
Attributes
[R] facts
[R] pathname
Class Public methods
new(facts, pathname)
# File lib/net/ftp.rb, line 796
def initialize(facts, pathname)
  @facts = facts
  @pathname = pathname
end
Instance Public methods
appendable?()

Returns true if the APPE command may be applied to the file.

# File lib/net/ftp.rb, line 832
def appendable?
  return facts["perm"].include?(?a)
end
creatable?()

Returns true if files may be created in the directory by STOU, STOR, APPE, and RNTO.

# File lib/net/ftp.rb, line 840
def creatable?
  return facts["perm"].include?(?c)
end
deletable?()

Returns true if the file or directory may be deleted by DELE/RMD.

# File lib/net/ftp.rb, line 847
def deletable?
  return facts["perm"].include?(?d)
end
directory?()

Returns true if the entry is a directory (i.e., the value of the type fact is dir, cdir, or pdir).

# File lib/net/ftp.rb, line 821
def directory?
  if /\A[cp]?dir\z/.match(facts["type"])
    return true
  else
    return false
  end
end
directory_makable?()

Returns true if the MKD command may be used to create a new directory within the directory.

# File lib/net/ftp.rb, line 877
def directory_makable?
  return facts["perm"].include?(?m)
end
enterable?()

Returns true if the directory may be entered by CWD/CDUP.

# File lib/net/ftp.rb, line 854
def enterable?
  return facts["perm"].include?(?e)
end
file?()

Returns true if the entry is a file (i.e., the value of the type fact is file).

# File lib/net/ftp.rb, line 813
def file?
  return facts["type"] == "file"
end
listable?()

Returns true if the listing commands, LIST, NLST, and MLSD are applied to the directory.

# File lib/net/ftp.rb, line 869
def listable?
  return facts["perm"].include?(?l)
end
purgeable?()

Returns true if the objects in the directory may be deleted, or the directory may be purged.

# File lib/net/ftp.rb, line 885
def purgeable?
  return facts["perm"].include?(?p)
end
readable?()

Returns true if the RETR command may be applied to the file.

# File lib/net/ftp.rb, line 892
def readable?
  return facts["perm"].include?(?r)
end
renamable?()

Returns true if the file or directory may be renamed by RNFR.

# File lib/net/ftp.rb, line 861
def renamable?
  return facts["perm"].include?(?f)
end
writable?()

Returns true if the STOR command may be applied to the file.

# File lib/net/ftp.rb, line 899
def writable?
  return facts["perm"].include?(?w)
end