Re: How, exactly DO I use getAttributes to work ou (General questions)
Hi Daniel,
I assume you are using Blocking mode. In that case, you can simply ignore exceptions in your code, and check LastError immediately after the method executes.
I.e:
[code]On Error Resume Next
wodSftp1.RealPath( / )
if wodSftp1.LastError = 0 then
'Do something
else
'do something else
End if[/code]
Can you try something like that?
Regards,
Damba
Complete thread:
- How, exactly DO I use getAttributes to work out if - Daniel, 2009-06-02, 12:31
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 12:38
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 12:43
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 12:47
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 13:07
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 13:22
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 13:35
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 13:51
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 13:35
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 13:22
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 13:07
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 12:47
- Re: How, exactly DO I use getAttributes to work ou - Daniel, 2009-06-02, 12:43
- Re: How, exactly DO I use getAttributes to work ou - wodDamir, 2009-06-02, 12:38