Need your suggestions

(I am not from technical background ) in UiPath we have function like… System. , directory. To copy. Io. Getfile. Where i can get complete understanding for use of this kind of funtions? Do i need to learn any particular language?

Hi @Hemant_Deshmukh

Check this:

These are the functions and methods in .NET language

@Hemant_Deshmukh

The UiPath documentation provides detailed information about various activities and functions available in UiPath, including examples and use cases. You can visit the official UiPath documentation to explore these resources.

OR

To use the System, Directory, File, and other namespaces, you must have some understanding of C#. These namespaces are a part of the .NET framework.

Here are some resources you can use to learn more about C# and the .NET framework

Here are some examples of how to use the System, Directory, File, and other namespaces

`// Get the current directory.
string currentDirectory = System.IO.Directory.GetCurrentDirectory();

// Create a new directory.
System.IO.Directory.CreateDirectory(“NewDirectory”);

// Copy a file.
System.IO.File.Copy(“source.txt”, “destination.txt”);

// Read the contents of a file.
string fileContents = System.IO.File.ReadAllText(“file.txt”);

// Write to a file.
System.IO.File.WriteAllText(“file.txt”, “new contents”);`

Hope this helps

Cheers @Hemant_Deshmukh

1 Like

So it will help me if i learn c#… Than vb. Net?

1 Like

Well C# is advanced of vb net
To know the latest coding syntax go for c#
But to start u can go with vb net for basics

@Hemant_Deshmukh

1 Like

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