2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

path.combineの結果まとめ

Posted at

ドライブレター込みでcombineするときに、結果が期待通りじゃない場合があったのでいろいろ試した結果。

コード

textBox3.Text = System.IO.Path.Combine(textBox1.Text, textBox2.Text);

結果

"foo" + "bar"

SnapCrab_Form1_2017-9-16_17-29-22_No-00.png 正常系。

"C:" + "hoge"

SnapCrab_Form1_2017-9-16_17-36-39_No-00.png ":"で終わると後ろと"\"でくっつけてくれない。

"C:" + "\hoge"

SnapCrab_Form1_2017-9-16_17-31-7_No-00.png "\"で始まるときは前の文字列が消えるのでだめ。

"C:" + "hoge"

SnapCrab_Form1_2017-9-16_17-33-4_No-00.png 正常系。
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?