(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?
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
- C# Tutorial:C# Tutorial for Beginners: Learn C Sharp Programming in 7 Days
- Getting started with .NET:.Net Beginner's Guide: Getting Started with .Net Framework
- UiPath Academy course on C# for RPA:https://www.youtube.com/watch?v=BI1h1AIU9tE
- UiPath documentation on C#:Recommendation for learning c#
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
So it will help me if i learn c#… Than vb. Net?
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
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.