在Ruby中處理文件路徑通常使用File
類和Pathname
類。以下是一些基本用法:
File.join
方法拼接路徑:可以使用File.join
方法來拼接路徑,確保路徑的正確格式。例如:path = File.join("/path/to/directory", "file.txt")
File.dirname
和File.basename
方法獲取目錄和文件名:可以使用File.dirname
和File.basename
方法來分別獲取路徑中的目錄和文件名。例如:dirname = File.dirname("/path/to/file.txt") # => "/path/to"
basename = File.basename("/path/to/file.txt") # => "file.txt"
Pathname
類:Pathname
類提供了更多強大的方法來處理文件路徑。可以使用Pathname.new
方法來創建一個Pathname
對象,然后使用它的方法來處理路徑。例如:require 'pathname'
path = Pathname.new("/path/to/file.txt")
dirname = path.dirname
basename = path.basename
File.expand_path
方法獲取絕對路徑:可以使用File.expand_path
方法將相對路徑轉換為絕對路徑。例如:absolute_path = File.expand_path("../file.txt", __FILE__)
這些是一些處理文件路徑的基本用法,根據具體需求可以進一步探索File
類和Pathname
類的其他方法。