-
-
Field Summary
Fields
protected final org.slf4j.Logger
-
Method Summary
void
void
Creates hard link for receiver.
This method is a shortcut for
DiskEntry#createHardlink(linkname, false)
void
Creates hard link for receiver.
void
boolean
void
Gets the relative path of this disk entry.
Gets the UNC path of this disk entry.
int
byte[]
ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
int
ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength,
byte[] outData,
int outOffset,
int outLength)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
byte[]
ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength,
int maxOutputResponse)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
void
void
void
rename(String newName,
boolean replaceIfExist,
long rootDirectory)
void
void
-
Field Details
-
logger
protected final org.slf4j.Logger logger
-
Method Details
-
closeNoWait
public void closeNoWait()
-
getFileName
Deprecated.
Gets the UNC path of this disk entry.
- Returns:
- The UNC path of this disk entry.
-
getUncPath
Gets the UNC path of this disk entry.
- Returns:
- The UNC path of this disk entry. Example:
\\192.168.1.51\share\folder0\test1.txt
-
getPath
Gets the relative path of this disk entry.
- Returns:
- The relative path of this disk entry. Example: folder0/test1.txt
-
-
-
-
-
-
-
-
-
-
-
createHardlink
Creates hard link for receiver.
This method is a shortcut for
DiskEntry#createHardlink(linkname, false)
- Parameters:
linkname - the path to the hard link relative to share
- Throws:
SMBApiException
-
createHardlink
Creates hard link for receiver.
- Parameters:
linkname - the path to the hard link relative to share
replaceIfExist - if true replaces existing entry.
- Throws:
SMBApiException
-
ioctl
public byte[] ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
- Parameters:
ctlCode - the control code
isFsCtl - true if the control code is an FSCTL; false if it is an IOCTL
inData - the control code dependent input data
inOffset - the offset in inData where the input data starts
inLength - the number of bytes from inData to send,
starting at offset
- Returns:
- the response data or
null if the control code did not
produce a response
-
ioctl
public byte[] ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength,
int maxOutputResponse)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
- Parameters:
ctlCode - the control code
isFsCtl - true if the control code is an FSCTL; false if it is
an IOCTL
inData - the control code dependent input data
inOffset - the offset in inData where the input
data starts
inLength - the number of bytes from inData to
send, starting at offset
maxOutputResponse - the maximum number of bytes that the server can
return for the output data in the SMB2 IOCTL
Response.
- Returns:
- the response data or
null if the control code did not
produce a response
-
ioctl
public int ioctl(int ctlCode,
boolean isFsCtl,
byte[] inData,
int inOffset,
int inLength,
byte[] outData,
int outOffset,
int outLength)
Sends a control code directly to a specified device driver, causing the
corresponding device to perform the corresponding operation.
- Parameters:
ctlCode - the control code
isFsCtl - true if the control code is an FSCTL; false if it is an
IOCTL
inData - the control code dependent input data
inOffset - the offset in inData where the input data
starts
inLength - the number of bytes from inData to send,
starting at inOffset
outData - the buffer where the response data should be written
outOffset - the offset in outData where the output data
should be written
outLength - the maximum amount of data to write in outData,
starting at outOffset
- Returns:
- the number of bytes written to
outData
-
flush
public void flush()
-
deleteOnClose
public void deleteOnClose()
-
-
getUncPath()instead.