I have a text file which has multiple path details which is comma separated
for eg:Location1,Location2 like this .
I got the location details using Array and stored into argument variable.
But im facing the issue when using the excel application scope and used that argument variable. Im getting below exception
Source : Excel Application Scope
Message: Illegal Characters in path
Exception Type: System.ArgumentException
Note: If i hardcoded means in Excel Application scope it is working fine. Also i used the message box to check the variable value and it is coming correctly.
Not sure when i used the argument variable in excel application scope it causing the issue. please suggest
sorry, Unable to share due to security reason. When i used only one location in txt file , I dont see any issue in excel application scope, but when i tried multiple locations in txt file getting the above error but still i used the message box to check for multiple locations it is working fine.please suggest
Did you check your argument after passing it to an other worklow, like on a write line message, to see if it has any value inside, also check the whole path you are trying with the argument⦠like "c:\user" + argument
@asatheeshk21 I guess even some extra characters are appended to it, try this :
item.ToString.Trim.Replace(ββββ,ββ) If the error still persists can i See the Value inside a Message Box or in WriteLine
Hello,
using Assign Activity as Below :
regexSearch = New String(Path.GetInvalidFileNameChars()) + New String(Path.GetInvalidPathChars()) regexSearch as String
Add another assign Activity :
r = New Regex(String.Format(β[{0}]β, Regex.Escape(regexSearch))) r As Regex
use another assign activity :
item = r.Replace(item.tostring(), ββ)