[Help]: Expression Builder Usage?
Closed this issue · 4 comments
Environment
- OS: Windows
- Version: latest daily build
Question
When I am using Expression Builder, I read the integrated help message:
As we can see, it lists available variable items.
However, there is still something unclear, for example, among the listed items, there is item.Path (String)
and nothing further, but at the examples below, there is a line showing Example: item.Path.Contains("imageFolder")
, a new item item.Path.Contains
shows up.
Is there a more detail and clear help message available?
It uses C# syntax. Path
is a string
and Contains
is a C# method which is accessible on strings. See https://learn.microsoft.com/en-us/dotnet/api/system.string.contains?view=net-8.0 and https://learn.microsoft.com/en-us/dotnet/api/system.string?view=net-8.0#methods for a full list.
It uses C# syntax.
Path
is astring
andContains
is a C# method which is accessible on strings. See https://learn.microsoft.com/en-us/dotnet/api/system.string.contains?view=net-8.0 and https://learn.microsoft.com/en-us/dotnet/api/system.string?view=net-8.0#methods for a full list.
Oh, I see. And what is the difference between item.Path
and item.Folder
?
Path is the full path including the file name. Folder is the full path of the folder excluding the file name.
Path is the full path including the file name. Folder is the full path of the folder excluding the file name.
Thanks for replying.