FileDocCategorySizeDatePackage
SmbComDeleteDirectory.javaAPI DocJCIFS 1.3.17 API1787Tue Oct 18 15:26:24 BST 2011jcifs.smb

SmbComDeleteDirectory

public class SmbComDeleteDirectory extends ServerMessageBlock

Fields Summary
Constructors Summary
SmbComDeleteDirectory(String directoryName)

        this.path = directoryName;
        command = SMB_COM_DELETE_DIRECTORY;
    
Methods Summary
intreadBytesWireFormat(byte[] buffer, int bufferIndex)

        return 0;
    
intreadParameterWordsWireFormat(byte[] buffer, int bufferIndex)

        return 0;
    
public java.lang.StringtoString()

        return new String( "SmbComDeleteDirectory[" +
            super.toString() +
            ",directoryName=" + path + "]" );
    
intwriteBytesWireFormat(byte[] dst, int dstIndex)

        int start = dstIndex;

        dst[dstIndex++] = (byte)0x04;
        dstIndex += writeString( path, dst, dstIndex );

        return dstIndex - start;
    
intwriteParameterWordsWireFormat(byte[] dst, int dstIndex)

        return 0;