Searched defs:newFilePath (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/
H A DStorage.java325 * @param newFilePath the new path of the file
328 public static boolean renameFile(File inputPath, File newFilePath) { argument
329 if (newFilePath.exists()) {
330 Log.e(TAG, "File path already exists: " + newFilePath.getAbsolutePath());
337 if (!createDirectoryIfNeeded(newFilePath.getAbsolutePath())) {
339 newFilePath.getAbsolutePath());
342 return inputPath.renameTo(newFilePath);

Completed in 106 milliseconds