Hi,
I created a string member function str.exist, but there is no output(Null) in M2, Why?
Thanks in advance for any suggestions and help
david
Macro M1
Macro M2
Member function str.exist
I created a string member function str.exist, but there is no output(Null) in M2, Why?
Thanks in advance for any suggestions and help
david
Macro M1
str p="C:\Users\Administrator\Desktop\e"
out p ;;ok
if FileExists(p 1)
,out "Exists"
out p ;;ok
Macro M2
str p="C:\Users\Administrator\Desktop\e"
out p ;;ok
if p.exist
,out "Exists"
out p ;;Null
Member function str.exist