how load only one file within a component with scm load
how load only one file within a component with scm load:
It should be a probleme of syntax with / and \
My component : COMP
My file in a folder : folder/onefile.txt
scm load ... COMP/folder/onefile.txt -> Coud not find remote item "/folder/onefile.txt"
scm load ... COMP\folder\onefile.txt -> unable to find component "COMP\folder\onefile.txt"
scm load ... COMP \folder\onefile.txt -> unable to find component "\folder\onefile.txt"
scm load ... COMP/folder\onefile.txt -> Coud not find remote item "/folder\onefile.txt"
scm load ... COMP\folder/onefile.txt -> Unexpected exception...
scm load ... COMP/\folder\onefile.txt -> Coud not find remote item "/\folder\onefile.txt"
scm load ... COMP\\folder\onefile.txt -> unable to find component "COMP\\folder\onefile.txt"
scm load ... COMP//folder\onefile.txt -> Coud not find remote item "/folder\onefile.txt"
The file is present in the component, i load it in his folder if i load all the component
...
What is the good syntax?