OS : Window 11 Version : 2021.3.16f1 유니티에서 폴더의 파일 목록을 가져오는 방법에 대해서 알아보겠습니다. 먼저 게임 오브젝트를 하나만들고 거기에 FileList라는 이름으로 컴포넌트를 추가합니다. 그리고 아래처럼 소스코드를 작성합니다. using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; public class fileList : MonoBehaviour { // Start is called before the first frame update void Start() { DirectoryInfo di = new DirectoryInfo(Application...