using System.Collections;using System.Collections.Generic;using UnityEngine;using System.IO;using System.Text.RegularExpressions;public class ReadTextFileFromUSB : MonoBehaviour{ void Start() { // 모든 드라이브 문자 가져오기 DriveInfo[] allDrives = DriveInfo.GetDrives(); foreach (DriveInfo drive in allDrives) { // USB 드라이브인지 확인 if (drive.DriveType == D..