[iOS] filePath in Xcode Project

Seonhu Kim·2023년 4월 9일
0

iOS

목록 보기
14/16
post-thumbnail

Xcode 프로젝트 내에 있는 파일 경로를 찾아서 해당 파일을 문자열로 읽어오는 방법

guard let filePath = Bundle.main.path(forResource: "encodingTestData", ofType: "txt") else {
 	print("File not found.")
    return
}

do {
	let fileContent = try String(contentsOfFile: filePath, encoding: .utf8)
    print("fileContent")           
    } catch let error {
    // 오류 처리
    print("Error reading file: \(error.localizedDescription)")
}
profile
iOS Developer.

0개의 댓글