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.
ツリービューのディレクトリからノードを作成するこのコードがあります
if (file.Exists) { var nodes = node.Nodes.Add(file.Name); nodes.ImageIndex = nodes.SelectedImageIndex = 2; nodes.Tag = file.FullName; }
別の形式で使用するには、ファイルの完全なパスも取得する必要があります。そして、私はあなたのすべての創造的な助けに感謝します
これを試して :
string myFilePath = Path.GetFullPath(file.Name); //OR var fileInfo= new FileInfo(file.Name); fileInfo.DirectoryName;