CheckMate RPA C# PDF에서 Excel로 변환(SautinSoft.PdfFocus.dll)
using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Data; using System.Text; public partial class CustomScript { public void Execute_Code() { // 변환 후 저장할 엑셀 파일명 s_ConvertExcel = s_Current_PDF.Replace(“.pdf”, “.xls”); SautinSoft.PdfFocus f = new SautinSoft.PdfFocus(); // 변환할 PDF 파일 (현재파일) f.OpenPdf(s_Current_PDF); // 변환 완료 f.ToExcel(s_ConvertExcel); } } Spire.pdf.dll을 이용한 기존 PDF 변환 방식과 차이점이 … Read more