Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションフォルダーtreeviewの下にフォルダーがあります。フォルダ内のファイルへのリンクを提供したいと思います。フォルダーには、サブフォルダーなどがある場合があります。リンクにhttp URLを提供するにはどうすればよいですか。
treeview
これを行うと、http url ではなく、ファイルの物理的な場所のみが取得されます。
Path.Combine(file.DirectoryName, file.Name)
ありがとう。