|
@@ -89,6 +89,9 @@ import javax.inject.Inject;
|
|
|
|
|
|
import dagger.android.AndroidInjection;
|
|
|
|
|
|
+import static com.owncloud.android.datamodel.OCFile.PATH_SEPARATOR;
|
|
|
+import static com.owncloud.android.datamodel.OCFile.ROOT_PATH;
|
|
|
+
|
|
|
@TargetApi(Build.VERSION_CODES.KITKAT)
|
|
|
public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
|
|
@@ -396,7 +399,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
String newPath = targetFolder.getRemotePath() + file.getFileName();
|
|
|
|
|
|
if (file.isFolder()) {
|
|
|
- newPath = newPath + "/";
|
|
|
+ newPath = newPath + PATH_SEPARATOR;
|
|
|
}
|
|
|
OCFile newFile = currentStorageManager.getFileByPath(newPath);
|
|
|
|
|
@@ -438,7 +441,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
public Cursor querySearchDocuments(String rootId, String query, String[] projection) {
|
|
|
updateCurrentStorageManagerIfNeeded(rootId);
|
|
|
|
|
|
- OCFile root = currentStorageManager.getFileByPath("/");
|
|
|
+ OCFile root = currentStorageManager.getFileByPath(ROOT_PATH);
|
|
|
FileCursor result = new FileCursor(projection);
|
|
|
|
|
|
for (OCFile f : findFiles(root, query)) {
|
|
@@ -469,7 +472,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
private String createFolder(OCFile parent, String displayName, String documentId) throws FileNotFoundException {
|
|
|
|
|
|
CreateFolderOperation createFolderOperation = new CreateFolderOperation(parent.getRemotePath() + displayName
|
|
|
- + "/", true);
|
|
|
+ + PATH_SEPARATOR, true);
|
|
|
RemoteOperationResult result = createFolderOperation.execute(client, currentStorageManager);
|
|
|
|
|
|
|
|
@@ -479,7 +482,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
}
|
|
|
|
|
|
|
|
|
- String newDirPath = parent.getRemotePath() + displayName + "/";
|
|
|
+ String newDirPath = parent.getRemotePath() + displayName + PATH_SEPARATOR;
|
|
|
OCFile newFolder = currentStorageManager.getFileByPath(newDirPath);
|
|
|
|
|
|
return String.valueOf(newFolder.getFileId());
|
|
@@ -601,7 +604,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|
|
|
|
|
for (Account account : accountManager.getAccounts()) {
|
|
|
final FileDataStorageManager storageManager = new FileDataStorageManager(account, contentResolver);
|
|
|
- final OCFile rootDir = storageManager.getFileByPath("/");
|
|
|
+ final OCFile rootDir = storageManager.getFileByPath(ROOT_PATH);
|
|
|
rootIdToStorageManager.put(rootDir.getFileId(), storageManager);
|
|
|
}
|
|
|
}
|