在Ruby中,你可以使用内置的File类来获取文件的属性。以下是一些常用的方法:
file_name = File.basename("/path/to/your/file.txt")
puts file_name # 输出 "file.txt"
file_path = File.expand_path("/path/to/your/file.txt")
puts file_path # 输出 "/path/to/your/file.txt"(在Windows系统上可能是 "C:\path\to\your\file.txt")
file_size = File.size("/path/to/your/file.txt")
puts file_size # 输出文件大小(例如:1024)
file_exists = File.exist?("/path/to/your/file.txt")
puts file_exists # 输出 true 或 false
file_directory = File.directory?("/path/to/your/directory")
puts file_directory # 输出 true 或 false
file_regular = File.regular?("/path/to/your/file.txt")
puts file_regular # 输出 true 或 false
file_mtime = File.mtime("/path/to/your/file.txt")
puts file_mtime # 输出文件修改时间(例如:2021-09-01 12:34:56 +0800)
file_permissions = File.stat("/path/to/your/file.txt").permit?("u")
puts file_permissions # 输出 true 或 false
这些方法可以帮助你获取文件的各种属性。如果你需要更多帮助,请随时告诉我!