FileStorageUtils.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.utils;
  19. import java.io.File;
  20. import android.net.Uri;
  21. import android.os.Environment;
  22. import android.os.StatFs;
  23. import com.owncloud.android.datamodel.OCFile;
  24. public class FileStorageUtils {
  25. public static final String getSavePath(String accountName) {
  26. File sdCard = Environment.getExternalStorageDirectory();
  27. return sdCard.getAbsolutePath() + "/owncloud/" + Uri.encode(accountName, "@");
  28. // URL encoding is an 'easy fix' to overcome that NTFS and FAT32 don't allow ":" in file names, that can be in the accountName since 0.1.190B
  29. }
  30. public static final String getDefaultSavePathFor(String accountName, OCFile file) {
  31. return getSavePath(accountName) + file.getRemotePath();
  32. }
  33. public static final String getTemporalPath(String accountName) {
  34. File sdCard = Environment.getExternalStorageDirectory();
  35. return sdCard.getAbsolutePath() + "/owncloud/tmp/" + Uri.encode(accountName, "@");
  36. // URL encoding is an 'easy fix' to overcome that NTFS and FAT32 don't allow ":" in file names, that can be in the accountName since 0.1.190B
  37. }
  38. public static final long getUsableSpace(String accountName) {
  39. File savePath = Environment.getExternalStorageDirectory();
  40. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.GINGERBREAD) {
  41. return savePath.getUsableSpace();
  42. } else {
  43. StatFs stats = new StatFs(savePath.getAbsolutePath());
  44. return stats.getAvailableBlocks() * stats.getBlockSize();
  45. }
  46. }
  47. }