Notice
Recent Posts
Recent Comments
Link
목록FileHandle (1)
투케이2K
180. (swift5/xcode) [간단 소스] 텍스트 파일 저장 시 write 사용해 단일 저장 및 FileHandle seekToEndOfFile 사용해 연속 저장 수행
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT5 [소스 코드] // --------------------------------------------------------------------- // [텍스트 파일 커서 끝쪽 이동 연속 추가] : append // --------------------------------------------------------------------- if (fileWritePath.hasSuffix("/") == true){ fileWritePath = fileWritePath + fileName } else { fileWritePath = fileWritePath + "/" + fileName } let contentData = log.d..
Swift
2023. 12. 8. 16:46