hi,
is there any function that we can check is .csv file is corrupted or not?
note:-.csv.file will receive from external system
suggest me best approch?
Discussion posts and replies are publicly visible
Does corrupted file mean a file that cannot be opened at all due to some malfunction or damage?
hiShubham Aware , yes if the file can't open due to password or someother reason's. then that time we should make a entry in db that file is corrupted. for that how we can handle?
PM Exception Flow is your only native way to catch can't open scenarios.Receive File -> Try to Parse CSV -> if Success: Process Data ; if Exception: Write "CORRUPTED" to DB -> Notify Team.
hi Shubham Aware , thanks for quick response, kindly confirm is this (Parse CSV) plug-in?