https://dlgnlfus.tistory.com/129
C# - 파일 존재 여부 확인방법
C# 파일 존재 여부 확인방법123456789// C# 파일 경로 존재하는지 확인using System.IO;//파일경로string strFile = "C:\\test.txt"; FileInfo fileInfo = new FileInfo(strFile);//파일 있는지 확인 있을때(true), 없으면(false)if (f
dlgnlfus.tistory.com
'Unity > 문제 해결' 카테고리의 다른 글
[Unity/UI] Sprite Renderer RenderQueue 관련 설정 (0) | 2022.11.22 |
---|---|
[Unity/UI] 버튼 위로 이미지 배치 시 영향 받지 않도록 하는 방법 (Overlapping Buttons) (0) | 2022.11.18 |
[Unity] scene 창에서 canvas를 선택하는 방법 (0) | 2022.11.09 |
[Unity/UI] 버튼 클릭이 겹칠 때 해결 방법 (0) | 2022.11.02 |
[Unity/UI] Slider Bar Fill 딱 맞게 조절하는 방법 (0) | 2022.09.19 |