목록modificationDate (2)
투케이2K
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT5 [소스 코드] // [파일 생성 시간 확인] : [filePaths == 특정 디렉토리 및 파일 명칭을 포함하는 path] do { let attributes:[FileAttributeKey:Any] = try FileManager.default.attributesOfItem(atPath: filePaths) let createdDate = attributes[FileAttributeKey.creationDate] as? Date let dateFormatter = DateFormatter() // Date 포맷 객체 선언 dateFormatter.locale = Locale(identifier: "ko") // 한국 지정 //..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT5 [소스 코드] // ----------------------------------------------------------------------------------------- // MARK: - [앱 파일 저장소 특정 파일 수정 시간 확인] // ----------------------------------------------------------------------------------------- func get_File_Update_Date(folderName: String, fileName: String, dateFormat: String) -> String { /* // --------------------..