Searched refs:newFilePath (Results 1 – 1 of 1) sorted by relevance
317 public boolean renameFile(File inputPath, File newFilePath) { in renameFile() argument318 if (newFilePath.exists()) { in renameFile()319 Log.e(TAG, "File path already exists: " + newFilePath.getAbsolutePath()); in renameFile()326 if (!createDirectoryIfNeeded(newFilePath.getAbsolutePath())) { in renameFile()328 newFilePath.getAbsolutePath()); in renameFile()331 return inputPath.renameTo(newFilePath); in renameFile()