mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 00:16:09 +00:00
16 lines
486 B
Java
16 lines
486 B
Java
package com.owncloud.android.lib.resources.files.chunks;
|
|
|
|
import com.owncloud.android.lib.resources.files.RemoveRemoteFileOperation;
|
|
|
|
public class RemoveRemoteChunksFolderOperation extends RemoveRemoteFileOperation {
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param remotePath RemotePath of the remote file or folder to remove from the server
|
|
*/
|
|
public RemoveRemoteChunksFolderOperation(String remotePath) {
|
|
super(remotePath);
|
|
removeChunksFolder = true;
|
|
}
|
|
} |