một nơi khác (nơi gốc nơi nó đọc các biến ENV) ở shared_helpers.rb, dòng 71 (vagrant v 1.6.5):
# This returns the path to the ~/.vagrant.d folder where Vagrant's
# per-user state is stored.
#
# @return [Pathname]
def self.user_data_path
# Use user spcified env var if available
path = ENV["VAGRANT_HOME"]
# On Windows, we default to the USERPROFILE directory if it
# is available. This is more compatible with Cygwin and sharing
# the home directory across shells.
if !path && ENV["USERPROFILE"]
path = "#{ENV["USERPROFILE"]}/.vagrant.d"
end
# Fallback to the default
path ||= "~/.vagrant.d"
Pathname.new(path).expand_path
end
Dù sao, tôi nghĩ rằng cách tốt nhất là sử dụng biến môi trường VAGRANT_HOME, trong trường hợp nâng cấp phiên bản vagrant.
Bạn có thể sử dụng chức năng này như:
disk_path = self.user_data_path().to_s