- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SmbComDelete (0.57 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComDelete.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class SmbComDelete extends ServerMessageBlock { private final int searchAttributes; SmbComDelete(final String fileName) { this.path = fileName; command = SMB_COM_DELETE; searchAttributes = ATTR_HIDDEN | ATTR_HIDDEN | ATTR_SYSTEM; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDelete.java
* The file must not be in use before it can be deleted. */ public class SmbComDelete extends ServerMessageBlock { private final int searchAttributes; /** * Creates a new SMB1 delete file request. * * @param config the CIFS configuration * @param path the path of the file to delete */ public SmbComDelete(final Configuration config, final String path) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java
private SmbComDelete smbComDelete; @BeforeEach public void setUp() { smbComDelete = new SmbComDelete(TEST_FILE_NAME); } @Test public void testConstructor() { // Test if the constructor sets the file name and command correctly assertEquals(TEST_FILE_NAME, smbComDelete.path);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0)