我有一個每週生成器拉鍊一些文件。有些是在app/assets/images/xxx.xxx
一些通過回形針載和public/system/env...
Rails - 如何獲取資源的文件路徑(不是url路徑)?
的文件路徑我有app
後開始,不/images/
或public
資產。
我會得到類似於/assets/some.png
或/system/production/xyz/some.jpg
的東西,這些將作爲URL路徑正常提供,但我希望將它們收集到一個文件中。
如何獲取資產的文件路徑?
我覺得這是一個更簡單的方法來解釋它。
鑑於資產URI字符串,我如何找到並獲取資產的文件路徑?
資產URL路徑/assets/logo.png
可能是其中的一個文件:
public/logo.png
public/assets/logo.png
app/assets/images/logo.png
如果我正確理解你在這裏想要問什麼......你想要定義一個資產文件路徑,即'app /「文件名」/xxx.xxx。「file-type」' – CallmeSurge
@CallmeSurge我想要一個文件路徑那個ruby'''File'''可以打開。 Asset url路徑不需要public /或assets/images/logo.png的'''/ images'''部分。但我想用服務器上的Ruby腳本獲取文件,而不是通過HTTP –