No video

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

  Рет қаралды 6,526

Tutorials by Mukesh Kala

Tutorials by Mukesh Kala

Күн бұрын

Пікірлер: 32
@malinivinnamala7085
@malinivinnamala7085 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 17 күн бұрын
Thank you for great videos and sharing knowledge. God bless you!!
@MukeshKala
@MukeshKala 17 күн бұрын
Glad it was helpful 😃
@ragunandi
@ragunandi 2 жыл бұрын
Great explanation Mukesh. Thanks for the session.
@MukeshKala
@MukeshKala 2 жыл бұрын
Thank you 😊
@balrajswamy
@balrajswamy 6 ай бұрын
Great tutorial.
@MukeshKala
@MukeshKala 6 ай бұрын
Thank you! Cheers!
@onyedikakanu3777
@onyedikakanu3777 2 жыл бұрын
This really helped. Thanks for always sharing
@MukeshKala
@MukeshKala 2 жыл бұрын
Glad it was helpful!
@aishwaryakl6566
@aishwaryakl6566 2 жыл бұрын
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. 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 жыл бұрын
@@MukeshKala Thankyou so much!!! But can I get vedio explanation on this please
@MukeshKala
@MukeshKala 2 жыл бұрын
@@aishwaryakl6566 will try to upload
@aishwaryakl6566
@aishwaryakl6566 2 жыл бұрын
@@MukeshKala Thank you 🥺 Means a lot
@natashasfoodntravel5389
@natashasfoodntravel5389 2 жыл бұрын
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
@AnnFajardo
@AnnFajardo 10 ай бұрын
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 10 ай бұрын
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
@natashasfoodntravel5389
@natashasfoodntravel5389 2 жыл бұрын
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
@hemantdeshmukh8474
@hemantdeshmukh8474 9 ай бұрын
what to do in a scenario where we want to move file and wait until its available. ?
@MukeshKala
@MukeshKala 9 ай бұрын
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 …
@shivnarayanswarnkar2912
@shivnarayanswarnkar2912 5 ай бұрын
WHAT IS THE ACTIVITY TO OPEN A FOLDER AND TAKE A SCREEN SHOT AND PASTE IT TO MAIL BODY KINDLY ADISE BRO
@MukeshKala
@MukeshKala 5 ай бұрын
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 kzfaq.info/sun/PLEYSwx3duQ2DszZgOhhsX2ikmAD9B9BP3&si=GuMW3KS76LdFUyJO
@sharibakhtar5655
@sharibakhtar5655 Жыл бұрын
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 Жыл бұрын
@@MukeshKala String.Join(" ",Directory.GetFiles(str_Folder, "*.xlsx").OrderByDescending(Function(a)New FileInfo(a).CreationTime).Take (2)) this code is right?
@ragunandi
@ragunandi 2 жыл бұрын
Looking for ward to attend the session
@MukeshKala
@MukeshKala 2 жыл бұрын
I am Sure - You will have good Idea of File and Folder Automation at the end of this .
@joswadsouza1445
@joswadsouza1445 2 жыл бұрын
New concepts
@MukeshKala
@MukeshKala 2 жыл бұрын
Thank You 😌
Cute kitty gadgets 💛
00:24
TheSoul Music Family
Рет қаралды 17 МЛН
Before VS during the CONCERT 🔥 "Aliby" | Andra Gogan
00:13
Andra Gogan
Рет қаралды 10 МЛН
wow so cute 🥰
00:20
dednahype
Рет қаралды 31 МЛН
Blue Food VS Red Food Emoji Mukbang
00:33
MOOMOO STUDIO [무무 스튜디오]
Рет қаралды 21 МЛН
Cute kitty gadgets 💛
00:24
TheSoul Music Family
Рет қаралды 17 МЛН