Avoid shutil where we can
This commit is contained in:
parent
3d9f8d46ee
commit
86a870d429
@ -1,4 +1,3 @@
|
|||||||
import shutil
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
@ -19,4 +18,4 @@ class MoveInstruction(Instruction):
|
|||||||
if self.new_path.exists():
|
if self.new_path.exists():
|
||||||
raise FileExistsError("New path already exists, not moving anything")
|
raise FileExistsError("New path already exists, not moving anything")
|
||||||
|
|
||||||
shutil.move(self.old_path, self.new_path)
|
self.old_path.rename(self.new_path)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user