Re: Find attach .NET assembly and script log
can not post complete log due to security reason
session.ListDirectory("'TestDir'")
and scripting log for cd 'TestDir'
.
> 2022-01-06 23:29:15.380 CWD /'TestDir'
RemoteDirectoryInfo remoteDirInfo= session.ListDirectory("/'TestDir'")
CWD /'TestDir'
so directory listing was failed.
/
from CWD /'TestDir'
so my question is that how to remove /
from CWD /'TestDir'
, so log will be as CWD 'TestDir'
then it is working fine.
RemoteDirectoryInfo remoteDirInfo= session.ListDirectory("'TestDir'")
CWD /'Home'/'TestDir'
. I want to remove /'Home'/
from CWD /'Home'/'TestDir'
. So my question is that how to remove /'Home'/
from CWD /'Home'/'TestDir'
. So log will be as CWD 'TestDir'
then it is working fine.[/b]
cd 'TestDir'
2022-01-06 23:29:15.380 CWD /'TestDir'
/
prepend with dir but when use .NET assembly /
prepends automatically with dir so remote directory not listing with .NET assembly.