Browse Source

descend into folder after creating it in uploader

tobiasKaminsky 10 years ago
parent
commit
0e5b0f383d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/com/owncloud/android/operations/CreateFolderOperation.java

+ 4 - 0
src/com/owncloud/android/operations/CreateFolderOperation.java

@@ -121,4 +121,8 @@ public class CreateFolderOperation extends SyncOperation implements OnRemoteOper
             Log_OC.d(TAG, "Create directory " + mRemotePath + " in Database");
             Log_OC.d(TAG, "Create directory " + mRemotePath + " in Database");
         }
         }
     }
     }
+
+    public String getRemotePath() {
+        return mRemotePath;
+    }
 }
 }