提问人:David542 提问时间:1/14/2012 最后编辑:Mateen UlhaqDavid542 更新时间:2/23/2023 访问量:1844893
如何在 Python 中移动文件?
How do I move a file in Python?
答:
os.rename()、
os.replace(
) 或 shutil.move()
它们都采用相同的语法:
import os
import shutil
os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
- filename () 必须包含在 source 和 destination 参数中。如果两者不同,则文件将被重命名和移动。
"file.foo"
- 要在其中创建新文件的目录必须已存在。
- 在 Windows 上,具有该名称的文件不得存在,否则将引发异常,但即使在发生这种情况时,也会以静默方式替换文件。
os.replace()
shutil.move
在大多数情况下只是打电话。但是,如果目标位于与源文件不同的磁盘上,则它将复制源文件,然后删除源文件。os.rename
评论
shutil.move
适用于目录。可以使用相对路径或全路径,不要在路径中使用~
,在python2.7.9,Mac OS X中检查过。shutil.move(f.name, "tmp/")
shutil.move(f.name, "/Users/hello/tmp/")
~
是一个 shell 构造,除了作为放错位置的约定之外,与文件路径本身无关。如果您真的想让主目录参与进来,请改用,并在必要时将其与所需路径的一部分连接起来。os.getenv('HOME')
os.path.expanduser()
~
%HOME%
os.rename
不会跨不同设备处理文件。如果您不确定源文件和目标文件是否在同一设备上,请使用。shutil.move
对于 或,您需要导入模块。
移动所有文件不需要任何字符。os.rename
shutil.move
*
我们在名为 source 有一个文件夹,其中包含一个名为 awesome.txt 的文件。/opt/awesome
in /opt/awesome
○ → ls
source
○ → ls source
awesome.txt
python
>>> source = '/opt/awesome/source'
>>> destination = '/opt/awesome/destination'
>>> import os
>>> os.rename(source, destination)
>>> os.listdir('/opt/awesome')
['destination']
我们曾经看到文件夹名称实际上发生了变化。
这是将目标移回源。os.listdir
shutil
>>> import shutil
>>> source = '/opt/awesome/destination'
>>> destination = '/opt/awesome/source'
>>> shutil.move(source, destination)
>>> os.listdir('/opt/awesome/source')
['awesome.txt']
这次我检查了源文件夹,以确保我创建的文件存在。它就在那里awesome.txt
现在,我们已将文件夹及其文件从源移动到目标,然后再移回。
评论
尽管 和 都会重命名文件,但最接近 Unix mv 命令的命令是 。不同之处在于,如果源和目标位于不同的磁盘上,则不起作用,而文件与磁盘无关。os.rename()
shutil.move()
shutil.move()
os.rename()
shutil.move()
评论
shutil.move()
如果目标位于当前文件系统上,则使用。否则,请使用将源复制到目标,然后删除源。os.rename()
shutil.move()
shutil.copy2()
公认的答案不是正确的,因为问题不在于将文件重命名为文件,而在于将许多文件移动到一个目录中。 将完成这项工作,但为此目的毫无用处(如注释中所述),因为目标必须具有显式文件名。shutil.move
os.rename
评论
os.path.basename(my_file_path)
os.path.dirname(my_file_path)
这是我目前使用的:
import os, shutil
path = "/volume1/Users/Transfer/"
moveto = "/volume1/Users/Drive_Transfer/"
files = os.listdir(path)
files.sort()
for f in files:
src = path+f
dst = moveto+f
shutil.move(src,dst)
您还可以将其转换为一个函数,该函数接受源目录和目标目录,如果目标文件夹不存在,则创建目标文件夹,并移动文件。还允许过滤 src 文件,例如,如果您只想移动图像,则使用 模式 ,默认情况下,它会移动目录中的所有内容'*.jpg'
import os, shutil, pathlib, fnmatch
def move_dir(src: str, dst: str, pattern: str = '*'):
if not os.path.isdir(dst):
pathlib.Path(dst).mkdir(parents=True, exist_ok=True)
for f in fnmatch.filter(os.listdir(src), pattern):
shutil.move(os.path.join(src, f), os.path.join(dst, f))
评论
os.path.join(parent_path, filename)
import os,shutil
current_path = "" ## source path
new_path = "" ## destination path
os.chdir(current_path)
for files in os.listdir():
os.rename(files, new_path+'{}'.format(f))
shutil.move(files, new_path+'{}'.format(f)) ## to move files from
不同的磁盘,例如 C: --> D:
评论
f"{new_path}{f}"
根据此处描述的答案,使用是另一种选择。subprocess
像这样的东西:
subprocess.call("mv %s %s" % (source_files, destination_folder), shell=True)
我很想知道这种方法与.由于就我而言,我已经出于其他原因使用并且它似乎有效,因此我倾向于坚持下去。shutil
subprocess
这取决于运行脚本的 shell。该命令适用于大多数 Linux shell(bash、sh 等),但也适用于 Windows 上的 Git Bash 等终端。对于其他终端,您必须更改为备用命令。mv
mv
评论
mv
这是解决方案,它不支持使用 。shell
mv
from subprocess import Popen, PIPE, STDOUT
source = "path/to/current/file.foo",
destination = "path/to/new/destination/for/file.foo"
p = Popen(["mv", "-v", source, destination], stdout=PIPE, stderr=STDOUT)
output, _ = p.communicate()
output = output.strip().decode("utf-8")
if p.returncode:
print(f"E: {output}")
else:
print(output)
在 Python 3.4 之后,您还可以使用 的类来移动文件。pathlib
Path
from pathlib import Path
Path("path/to/current/file.foo").rename("path/to/new/destination/for/file.foo")
https://docs.python.org/3.4/library/pathlib.html#pathlib.Path.rename
评论
Path("path/to/current/file.foo").rename("path/to/new/destination/for/".joinpath(Path.name))
Path("path/to/current/file.foo").rename(Path("path/to/new/destination/for") / Path.name))
也可以使用方法。subprocess.run()
python:
>>> import subprocess
>>> new = "/path/to/destination"
>>> old = "/path/to/new/destination"
>>> process = "mv ..{} ..{}".format(old,new)
>>> subprocess.run(process, shell=True) # do not remember, assign shell value to True.
这在 Linux 上工作时可以正常工作。Windows 可能会给出错误,因为没有 mv 命令。
评论
既然你不在乎返回值,你可以做
import os
os.system("mv src/* dest/")
评论
mv
命令的人来说,Python 有一个函数不同的边缘情况。去这里 完整文章。简而言之,当您的目标是一个目录并且该目录已经有一个与源同名的文件时,Python 的shutil.move
将引发异常(但 gnu-coreutilsmv
不会)(有关更多信息,请参阅上一句中提供的链接)。shutil.move
shutil.move