The problem is that I want to ‘call’ them easily in the project without hardcoding. Is there a way to call them using attributes of the project ?
I imagine an expression that would be something like project.NameFolders.list
I know I can use the activity get folder info. But I have to hard code the path of the current project I’m working on. I cannot use any attributes of the project like project.folder.path. At the moment I have to assign a the path of the project using hard code.
Do you have to way to use the properties of the “current” project in order to get the list of the folders ?
All Folders
Directory.GetDirectories(Environment.CurrentFolder)
All Folders including Subfolders
Directory.GetDirectories(Environment.CurrentFolder,"*",SearchOption.AllDirectories)