mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
Handle access denied scenario
svn path=/trunk/; revision=20146
This commit is contained in:
parent
ab4f456971
commit
b666bbf296
1 changed files with 6 additions and 1 deletions
|
@ -730,7 +730,12 @@ namespace ReactOS.CustomRevisionAction
|
|||
|
||||
this.sendCommand( "CWD " + dirName );
|
||||
|
||||
if ( this.resultCode != 250 ) throw new FtpException(result.Substring(4));
|
||||
if ( this.resultCode != 250 )
|
||||
{
|
||||
if (this.resultCode == 550)
|
||||
throw new FtpException(String.Format("Access denied to {0}", this.remotePath + "/" + dirName));
|
||||
throw new FtpException(result.Substring(4));
|
||||
}
|
||||
|
||||
this.sendCommand( "PWD" );
|
||||
|
||||
|
|
Loading…
Reference in a new issue