To find the size of a JSON file in Ruby, you need to open the file in reading mode and then call the File#size
method to get its size in bytes. Here's an example code:
main.rb256 chars15 lines
In this code, we used the File#open
method to open the "file.json" file in reading mode, then we used the File#read
method to read the file's JSON content into the json_data
variable. Finally, we called the File#size
method to get the file's size in bytes and saved it into the file_size
variable.
Note that we closed the file using the File#close
method. It's always a good practice to close the file after you're done reading/writing from/to it.
gistlibby LogSnag