migrate application directories (#255)

This commit is contained in:
Aria Moradi
2021-11-28 19:56:06 +03:30
committed by GitHub
parent 5e47b7ae6b
commit a41068dbc9
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package suwayomi.tachidesk.manga.impl.util.lang
import java.io.File
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
fun File.renameTo(newPath: String) = renameTo(File(newPath))