< :前の番号
^ :番号順リスト
> :次の番号
P :前の記事(スレッド移動)
N :次の記事(スレッド移動)
|<:前のスレッド
>|:次のスレッド
^ :返事先
_:自分への返事
>:同じ返事先を持つ記事(前)
<:同じ返事先を持つ記事(後)
---:分割してスレッド表示、再表示
| :分割して(縦)スレッド表示、再表示
~ :スレッドのフレーム消去
.:インデックス
..:インデックスのインデックス
Issue #12656 has been reported by Dvis Mosns.
----------------------------------------
Feature #12656: Expand short paths with File.expand_path
https://bugs.ruby-lang.org/issues/12656
* Author: Dvis Mosns
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
Currently File.expand_path expands short path only if it's last part.
~~~ruby
puts File.expand_path('C:/VERYLO~1')
puts File.expand_path('C:/VERYLO~1/OTHERL~1')
~~~
Produces
~~~
C:/VeryLongName12345
C:/VERYLO~1/OtherLongName54321
~~~
With attached patch it will always be long path
~~~
C:/VeryLongName12345
C:/VeryLongName12345/OtherLongName54321
~~~
This also fixes TestDir#test_glob test because it was failing due short path.
---Files--------------------------------
0001-Expand-short-paths-with-File.expand_path.patch (3.39 KB)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>