Path.Combine
- 폴더나 파일의 경로를 이어줄 때 사용
- Path.Combine(strVar1, strVar2)
- 경로만 확실하다면 변수 갯수에 대한 제약 없음
1. Get Environment Folder
(데스크탑 내에 Special Folder 생성)
> 변수 설정 : strDesktopPath
2. strFilename = "저장할 엑셀명.xlsx"
3. strFullPath = Path.Combine(strDesktopPath, strFileName)
4. (결과 확인용) WriteLine
C:\Users\데스크탑명\Desktop\저장할 엑셀명.xlsx
'UiPath' 카테고리의 다른 글
| [UiPath] Gmail 자동화 (0) | 2023.10.24 |
|---|---|
| [UiPath] 이메일 자동화 1 (0) | 2023.10.24 |
| [UiPath] 데이터 가공_Array, List, Dictionary 이론 및 실습 (1) | 2023.10.24 |
| [UiPath] Outlook 활용 1 (0) | 2023.10.24 |
| [UiPath] Google OAuth2 (0) | 2023.10.19 |