Type:
Class
Constants:
Separator : separator
SEPARATOR : separator
ALT_SEPARATOR : rb_obj_freeze(rb_usascii_str_new2(file_alt_separator))
PATH_SEPARATOR : rb_obj_freeze(rb_str_new2(PATH_SEP))

A File is an abstraction of any file object accessible by the program and is closely associated with class IO File includes the methods of module FileTest as class methods, allowing you to write (for example) File.exist?("foo").

In the description of File methods, permission bits are a platform-specific set of bits that indicate permissions of a file. On Unix-based systems, permissions are viewed as a set of three octets, for the owner, the group, and the rest of the world. For each of these entities, permissions may be set to read, write, or execute the file:

The permission bits 0644 (in octal) would thus be interpreted as read/write for owner, and read-only for group and other. Higher-order bits may also be used to indicate the type of file (plain, directory, pipe, socket, and so on) and various other special features. If the permissions are for a directory, the meaning of the execute bit changes; when set the directory can be searched.

On non-Posix operating systems, there may be only the ability to make a file read-only or read-write. In this case, the remaining permission bits will be synthesized to resemble typical values. For instance, on Windows NT the default permission bits are 0644, which means read/write for owner, read-only for all others. The only change that can be made is to make the file read-only, which is reported as 0444.

rename
  • References/Ruby on Rails/Ruby/Classes/File

File.rename(old_name, new_name) â 0 Class Public methods Renames the given

2025-01-10 15:47:30
size?
  • References/Ruby on Rails/Ruby/Classes/File/File::Stat

state.size â integer Instance Public methods Returns the size of stat

2025-01-10 15:47:30
dev
  • References/Ruby on Rails/Ruby/Classes/File/File::Stat

stat.dev â fixnum Instance Public methods Returns an integer representing

2025-01-10 15:47:30
to_path
  • References/Ruby on Rails/Ruby/Classes/File

file.path â filename Instance Public methods Returns the pathname used to

2025-01-10 15:47:30
directory?
  • References/Ruby on Rails/Ruby/Classes/File/File::Stat

File.directory?(file_name) â true or false Instance Public methods Returns

2025-01-10 15:47:30
setgid?
  • References/Ruby on Rails/Ruby/Classes/File

File.setgid?(file_name) â true or false Class Public methods Returns true

2025-01-10 15:47:30
dev_major
  • References/Ruby on Rails/Ruby/Classes/File/File::Stat

stat.dev_major â fixnum Instance Public methods Returns the major part of

2025-01-10 15:47:30
chmod
  • References/Ruby on Rails/Ruby/Classes/File

File.chmod(mode_int, file_name, ... ) â integer Class Public methods Changes

2025-01-10 15:47:30
identical?
  • References/Ruby on Rails/Ruby/Classes/File

File.identical?(file_1, file_2) â true or false Class Public methods Returns

2025-01-10 15:47:30
size?
  • References/Ruby on Rails/Ruby/Classes/File

File.size?(file_name) â Integer or nil Class Public methods Returns nil

2025-01-10 15:47:30