Check if a path represents a file or a folder

前端 未结 8 517
伪装坚强ぢ
伪装坚强ぢ 2020-12-07 21:41

I need a valid method to check if a String represents a path for file or a directory. What are valid directory names in Android? As it comes out, folder names c

8条回答
  •  旧巷少年郎
    2020-12-07 22:06

       private static boolean isValidFolderPath(String path) {
        File file = new File(path);
        if (!file.exists()) {
          return file.mkdirs();
        }
        return true;
      }
    

提交回复
热议问题