투케이2K

181. (swift5/xcode) [유틸 파일] get_File_Update_Date : 앱 파일 저장소 특정 파일 수정 시간 확인 - modificationDate 본문

Swift

181. (swift5/xcode) [유틸 파일] get_File_Update_Date : 앱 파일 저장소 특정 파일 수정 시간 확인 - modificationDate

투케이2K 2023. 12. 8. 20:17

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT5

 

[소스 코드]

    // -----------------------------------------------------------------------------------------
    // MARK: - [앱 파일 저장소 특정 파일 수정 시간 확인]
    // -----------------------------------------------------------------------------------------
    func get_File_Update_Date(folderName: String, fileName: String, dateFormat: String) -> String {
        
        /*
        // -----------------------------------------
        [get_File_Update_Date 메소드 설명]
        // -----------------------------------------
        1. 앱 파일 저장소 특정 파일 수정 시간 확인
        // -----------------------------------------
        2. 호출 방법 :
         
         C_App().get_File_Update_Date(folderName: "TEST_FOLDER", fileName: "TWOK.txt", dateFormat: "yyyyMMddHHmmss")
         C_App().get_File_Update_Date(folderName: S_FinalData.HC_APP_LOG_FOLDER_NAME, fileName: S_FinalData.HC_APP_USE_FILE_NAME, dateFormat: "yyyyMMddHHmmss")
        // -----------------------------------------
        4. 참고 info plist 설정 :
         
         아이폰 파일 접근 설정 : Supports opening documents in place : YES
         아이튠즈 공유 설정 : Application supports iTunes file sharing : YES
        // -----------------------------------------
        */

        
        // [변수 선언]
        var returnData = ""
        var M_LOG = ""
        var filePaths = ""


        // [로직 처리 실시]
        let fileManager = FileManager.default // 파일 매니저 선언
        let documentsUrl =  fileManager.urls(for: .documentDirectory, in: .userDomainMask).first // 기본 경로 확인
        
        if documentsUrl != nil && C_Util().stringNotNull(str: fileName) == true && C_Util().stringNotNull(str: dateFormat) {
            
            if C_Util().stringNotNull(str: documentsUrl?.description ?? "") == true {
                
                if C_Util().stringNotNull(str: folderName) == true { // [폴더 명칭이 널이 아닌 경우]
                    
                    filePaths = documentsUrl?.appendingPathComponent(folderName).path ?? ""
                    
                    if (filePaths.hasSuffix("/") == true){
                        filePaths = filePaths + fileName
                    }
                    else {
                        filePaths = filePaths + "/" + fileName
                    }
                    
                    if FileManager.default.fileExists(atPath: filePaths) == true { // [저장 된 경로 있음]
                        
                        do {
                            let attributes:[FileAttributeKey:Any] = try FileManager.default.attributesOfItem(atPath: filePaths)
                            let modificationDate = attributes[FileAttributeKey.modificationDate] as? Date
                            
                            let dateFormatter = DateFormatter() // Date 포맷 객체 선언
                            dateFormatter.locale = Locale(identifier: "ko") // 한국 지정
                            
                            
                            // [date 포맷 타입 정의]
                            dateFormatter.dateFormat = "\(dateFormat)" // Date 포맷 타입 지정
                            returnData = dateFormatter.string(from: modificationDate!) // 포맷된 형식 문자열로 반환
                            
                            M_LOG = "[Success] :: [Input - Folder] :: Update Date Check"
                        }
                        catch {
                            M_LOG = "[Exception] :: [Input - Folder] :: \(error.localizedDescription)"
                        }
                        
                    }
                    else { // [저장 된 경로 없음]
                        M_LOG = "[ERROR] :: [Input - Folder] :: File Not Exists"
                    }
                    
                }
                else { // [폴더 명칭 없음 >> document 에 저장]
                    
                    filePaths = documentsUrl?.path ?? ""
                    
                    if (filePaths.hasSuffix("/") == true){
                        filePaths = filePaths + fileName
                    }
                    else {
                        filePaths = filePaths + "/" + fileName
                    }
                    
                    // [기본 경로에 특정 파일 존재 확인]
                    if FileManager.default.fileExists(atPath: filePaths) == true { // [저장 된 경로 있음]
                        
                        do {
                            let attributes:[FileAttributeKey:Any] = try FileManager.default.attributesOfItem(atPath: filePaths)
                            let modificationDate = attributes[FileAttributeKey.modificationDate] as? Date
                            
                            let dateFormatter = DateFormatter() // Date 포맷 객체 선언
                            dateFormatter.locale = Locale(identifier: "ko") // 한국 지정
                            
                            
                            // [date 포맷 타입 정의]
                            dateFormatter.dateFormat = "\(dateFormat)" // Date 포맷 타입 지정
                            returnData = dateFormatter.string(from: modificationDate!) // 포맷된 형식 문자열로 반환
                            
                            M_LOG = "[Success] :: [Input - Defalt] :: Update Date Check"
                        }
                        catch {
                            M_LOG = "[Exception] :: [Input - Defalt] :: \(error.localizedDescription)"
                        }
                        
                    }
                    else { // [저장 된 경로 없음]
                        M_LOG = "[ERROR] :: [Input - Defalt] :: File Not Exists"
                    }
                    
                }
                
            }
            else {
                M_LOG = "[ERROR] :: documentsUrl Is Null"
            }
            
        }
        else {
            M_LOG = "[ERROR] :: documentDirectory And File Name Is Null And Date Format Is Null"
        }

        
        // [로그 출력 실시]
        S_Log._D_(description: "앱 파일 저장소 특정 파일 수정 시간 확인", data: [
            "INPUT [folderName] :: \(folderName)",
            "INPUT [fileName] :: \(fileName)",
            "M_LOG :: \(M_LOG)",
            "SAVE_PATH :: \(filePaths)",
            "RETURN :: \(returnData)"
        ])
        
        
        // [리턴 변수 선언]
        return returnData
        
    }

[결과 출력]


 

반응형
Comments