almost 9 years ago
Ruby is a rich technology and its integration with system commands makes it much more richer. In Ruby if you want to create, read, delete or change the directory, there is Dir class available for that, which provides multiple methods for dealing with directories. Some important ways of operating on directories using ruby are:
a) Creating a Directory:
To create a directory in ruby, the mkdir method of Dir class is used like this:
b) Deleting a Directory:
To delete a directory, delete method of Dir class is used. It raises an error if the directory is not empty or doesn't exist
c) Changing the Directory:
If you want to navigate from directory to another in a program, you can use chdir method.
d) Get the current location:
pwd method is used to get the current location of the directory:
e) Getting the contents of the directory:
To get the contents of the directory including files and directories, entries command is used that returns an array containing all the directories and files inside that directory
0 Comment(s)