ray88’s diary

お仕事で困ったとき用の自分用の覚書

UiPath フォルダパス、ファイルパス等を取得する関数

■フォルダ内のファイルパスをまとめて取得・戻り値はString[]型
 Directory.GetFiles("C:\sample")
■Pathクラスを使用してフォルダ・ファイルパス等を取得します
■主なメソッド
 ディレクトリ名の取得
 System.IO.Path.GetDirectoryName("C:\sample\sample.xlsx")
 拡張子の取得
 System.IO.Path.GetExtension("C:\sample\sample.xlsx")
    ファイル名の取得
 System.IO.Path.GetFileName("C:\sample\sample.xlsx")

 ファイル名(拡張子なし)の取得
 System.IO.Path.GetFileNameWithoutExtension("C:\sample\sample.xlsx")
    ルートディレクトリ名の取得
 System.IO.Path.GetPathRoot("C:\sample\sample.xlsx")

f:id:ray88:20200329224003p:plain
※カレントディレクトリは”C:\cd”とする