UiPath | File and Folder Automation | Using Default Activities | Scenarios | RPA

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ก.ย. 2024

ความคิดเห็น • 32

  • @malinivinnamala7085
    @malinivinnamala7085 2 ปีที่แล้ว +2

    Excellent video Mukesh! Thank you for explaining the content in a simple yet detailed way. After watching this video, everyone will get a complete understanding about File and Folder Automation.

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      Thank you For your Comment 😊

  • @Ganesh749
    @Ganesh749 หลายเดือนก่อน +1

    Thank you for great videos and sharing knowledge. God bless you!!

    • @MukeshKala
      @MukeshKala  หลายเดือนก่อน

      Glad it was helpful 😃

  • @aishwaryakl6566
    @aishwaryakl6566 2 ปีที่แล้ว +1

    Hi Mukesh explained amazingly!!
    I need help in uipath related to delete folders
    This is the task :
    Need to create a utility workflow to delete older files and folders: Input is a spreadsheet with 2 columns: FolderLocation and NumberOfDays Robot has to iterate through each of the row in the spreadsheet and delete all the files and folders inside the 'FolderLocation' value which were created before the 'NumberOfDays' value.
    For example, if "FolderLocation' value is D:\Sample Folder\2022\ and NumberOfDays' is 10, robot should delete all files and folders inside D:\Sample Folder\2022 which are created on or before May 8 (today's date: May 18 - 10= May 8)
    Can I get an explanation regarding this usecase please 🥺

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว +1

      1. Read the Data in the DataTable Say DT - This would have 2 Columns , Col1 with Folder Name and Column 2 will Days.
      2. Loop Through the Datatable using a For each.
      3. Inside the for each - Get the Current Date in a variable and substract the Column2 Values - Using dt.Now.AddDays(- No of Days). Date - This will give you the Date you require
      4. Now Use Directory.getFiles and Read all the Files whose created date is less that the Date from step3 - Store this in array [String].
      5. For each Array - String - USe Delete File Activity

    • @aishwaryakl6566
      @aishwaryakl6566 2 ปีที่แล้ว +2

      @@MukeshKala Thankyou so much!!!
      But can I get vedio explanation on this please

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว +1

      @@aishwaryakl6566 will try to upload

    • @aishwaryakl6566
      @aishwaryakl6566 2 ปีที่แล้ว

      @@MukeshKala Thank you 🥺
      Means a lot

  • @AnnFajardo
    @AnnFajardo 11 หลายเดือนก่อน +1

    Newbie here in UIPath may I know how can I create multiple Folder and check if exist or not exist then create folder needed

    • @MukeshKala
      @MukeshKala  11 หลายเดือนก่อน

      To create the multiple Folder :
      1. you can keep all the folder paths in some list/ array
      2. then run list for each loop -
      3. Take a Activity called - Folder Exist
      4. Pass the Folder name , it will give true and False if folder is available or not
      5. If not - drag a create folder activity and pass the folder path

  • @shivnarayanswarnkar2912
    @shivnarayanswarnkar2912 6 หลายเดือนก่อน +1

    WHAT IS THE ACTIVITY TO OPEN A FOLDER AND TAKE A SCREEN SHOT AND PASTE IT TO MAIL BODY
    KINDLY ADISE BRO

    • @MukeshKala
      @MukeshKala  6 หลายเดือนก่อน

      Use open application/browser activity to open the folder by robot , if you want to open it manually- use the open folder activity
      To take screenshots: use take screenshot activity
      To send mail : send mail / send outlook depending on what mail you want to use - you can refer the email automation playlist th-cam.com/play/PLEYSwx3duQ2DszZgOhhsX2ikmAD9B9BP3.html&si=GuMW3KS76LdFUyJO

  • @hemantdeshmukh8474
    @hemantdeshmukh8474 10 หลายเดือนก่อน +1

    what to do in a scenario where we want to move file and wait until its available. ?

    • @MukeshKala
      @MukeshKala  10 หลายเดือนก่อน

      Every file and folder has some properties which we can check to make sure that the file is pasted … it can as simple as the count of files in the folder …

  • @balrajswamy
    @balrajswamy 7 หลายเดือนก่อน +1

    Great tutorial.

    • @MukeshKala
      @MukeshKala  7 หลายเดือนก่อน

      Thank you! Cheers!

  • @sharibakhtar5655
    @sharibakhtar5655 ปีที่แล้ว +1

    How to find the latest two file from the folder

    • @MukeshKala
      @MukeshKala  ปีที่แล้ว

      Sort All the files order by Descending Order and Take top 2

    • @sharibakhtar5655
      @sharibakhtar5655 ปีที่แล้ว +1

      @@MukeshKala String.Join(" ",Directory.GetFiles(str_Folder, "*.xlsx").OrderByDescending(Function(a)New FileInfo(a).CreationTime).Take (2))
      this code is right?

  • @natashasfoodntravel5389
    @natashasfoodntravel5389 2 ปีที่แล้ว +1

    Hi Bro. i am getting this error when trying to delete the folder.
    RemoteException wrapping System.IO.IOException: The process cannot access the file 'C:\Automation\UIPath' because it is being used by another process.
    Please help me ASAP

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      C:\Automation\UIPath' because it is being used by another process. This means that there are some files from the folder which are open ... and because the files are open from the Folder ,,, The Automation is not able to delete them

  • @natashasfoodntravel5389
    @natashasfoodntravel5389 2 ปีที่แล้ว +1

    i am getting this error bro. while trying to delete the folder - Delete Folder: The process cannot access the file 'C:\Automation\UIPath' because it is being used by another process.

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      This simply means there are some files from the folder which are open … may be some program or if it’s a shared drive may be by someone else

  • @ragunandi
    @ragunandi 2 ปีที่แล้ว +1

    Looking for ward to attend the session

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว +1

      I am Sure - You will have good Idea of File and Folder Automation at the end of this .

  • @ragunandi
    @ragunandi 2 ปีที่แล้ว +1

    Great explanation Mukesh. Thanks for the session.

  • @onyedikakanu3777
    @onyedikakanu3777 2 ปีที่แล้ว

    This really helped. Thanks for always sharing

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      Glad it was helpful!

  • @joswadsouza1445
    @joswadsouza1445 2 ปีที่แล้ว +1

    New concepts