Filepath too much long, sometimes fails to write complete file path

Hi Guys,
Filepath too much long, sometimes fails to write complete file path, what should i changed into type into activity.

1 Like

Hi
Hope you are doing good…
may i know why this much lengthy file name after the folder *July\2019*
it looks like a sentence, kindly reduce them to short as possible like only include keyword that helps us to denote the file easily
other than that you are good

and the reason why the type into fails its length
may be if the system accepts to that much lengthy file name then this can be done by reducing the time between each character entered with some properties of type into activity
–like select send window message property and deselect the simulate type property
–select clickbeforetyping and empty field properties
–mention the timestamp in delaybetweenkeys like 500 milliseconds

hope that would help you
Cheers @smita.mobifly

1 Like

there is one file name Individual GST amount check - Tolerance Limit ([0.00][0.000] )_GSTR-1 but downloaded as Individual GST amount check - Tolerance Limit ( )_GSTR-1
why this happen

while typing this [0.000] i think it took as null value and thats why it didnt get reflected in the filepath name…
Cheers @smita.mobifly

1 Like

were we able to type now
Cheers @smita.mobifly

hi,
Please tell me how to remove ([0.00][0.00] ) from following string

Individual GST amount check - Tolerance Limit ([0.00][0.00] )_GSTR-1

System.Text.RegularExpressions.Regex.Replace( text,“([0.00] [0.00])”,“”) not working,

1 Like

We can simply use a replace method like this
in_text = Individual GST amount check - Tolerance Limit ([0.00][0.00] )_GSTR-1

Then
Out_text = in_text.Tostring.Replace(“[0.00]”,””).ToString.Trim

Cheers @smita.mobifly

To be precise like this
Out_text = in_text.Tostring.Replace(“([0.00][0.00])”,””).ToString.Trim

Cheers @smita.mobifly

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.