PDF file exist or not project error

Hi
I have some issue in my project

I get an error like this, Assign: Illegal characters in path.

My path is C:\Users\UCINAR\Desktop\Kalıp Kabul Tutanaklarının RPA-Yapay Zeka ile Kontrolu\02_FORD\BX726\G_REF003_XCVBNMKUYTD WDE2ID 2EKRE R\04_KALITE\7_OLCUM RAPORLARI\KOMPLE\REF*.pdf
I want to check is there any pdf file in my KOMPLE folder

Hi,

  1. Assign

    • To: folderPath
    • Value: “C:\Users\UCINAR\Desktop\Kalıp Kabul Tutanaklarının RPA-Yapay Zeka ile Kontrolu\02_FORD\BX726\G_REF003_XCVBNMKUYTD WDE2ID 2EKRE R\04_KALITE\7_OLCUM RAPORLARI\KOMPLE”
  2. Assign

    • To: pdfFiles
    • Value: Directory.GetFiles(folderPath, “*.pdf”)
  3. Condition

    • Condition: pdfFiles.Length > 0

    True:

    • Add actions to handle the presence of PDF files

    False:

    • Add actions for the case when no PDF files are found
      I hope this will help you
      Thank you
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.