How To Rename An Existing Folder using text file in uipath

How To Rename An Existing Folder

My Requirement is there is a Text file in that text file there is a Package name “com.android.studio”

and also I m having two folders one is names as a user and another folder names as developer

now I need to pick android from a text file and I need to replace it with a folder which is named as user & similarly studio with developer

how to do this process in uipath plz help me

@Ajit_Chowdary - please share the sample of your text file.

Hi @Ajit_Chowdary

Maybe this video could help you:

@Ajit_Chowdary - Here you go…

  1. Red Tex file and save the output as “StrInput”

  2. Assign Statements.

      StrAndroid = StrInput.Split("."c)(1)
      StrDev = StrInput.Split("."c)(2)
    
  3. Invoke code…

    My.Computer.FileSystem.RenameDirectory("C:\Users\giris\Documents\UiPath\Studio\String_Manipulation\DeleteFiles\user",StrAndroid)
    
    My.Computer.FileSystem.RenameDirectory("C:\Users\giris\Documents\UiPath\Studio\String_Manipulation\DeleteFiles\developer",strDev)
    

invoke Code Arguments

My Input
image

My output
image

Hope this helps…

1 Like

thank You Sir I will Check it Can u plz share me main.xaml file

@Ajit_Chowdary - Please give it a try based on the screenshot shared…if you face any errors let us know…

in this way, your learning will be faster…

1 Like

I followed same steps but I’m getting this error

@Ajit_Chowdary - show us the screenshot of your workflow…

WorkFlow

@Ajit_Chowdary - you did not create the output variable in the read text activity. Please read my post again.

If you need additional training please go through UiPath academy courses.

@Ajit_Chowdary - Yes…working on it…

@Ajit_Chowdary - Directory_Rename.xaml (5.6 KB)

1 Like

Thank You So Much Sir It’s Working now

@Ajit_Chowdary - Great. Once you are done with your testing, please mark my post as solution as it benefits others.

Yes I have already done it sir thank you so much for your support

Nope…

Please check the post on how to mark the post as solution…

Done Sir … Thank You and I’m having one more issue sir … I want to copy images … in text file I’m having images path through that path I want to copy images and replace it into another folder how to do that process sir can you please help me

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