본문 바로가기
Computer Science/RPA & Automation

[UiPath] Invoke Code (C#)

by Hwan,. 2021. 7. 4.
728x90
반응형

1. Volume Lable로 디스크 문자 얻기 (네크워크 디스크 식별 시에도 가능)

// input : in_str_VolumeLavle (String)
// output : out_str_name (String)
// ex) 로컬 -> C:\
// ex) 디스크 -> C:\
// ex) 로컬 디스크 -> C:\

froeach (DriveInfo d in DriveInfo.GetDrives()){
	if(d.volumeLabel.Contains(in_str_VolumeLable)){
    		out_str_name = d.Name;
	}
}

 

728x90
반응형

댓글