os.path.basename(path) #取文件名 os.path.getsize(path) #取文件大小 os.path.exists(path) #文件是否存在 os.path.dirname(path) #取目录名 shutil.copyfile(source,dst) #拷贝文件到目标目录(支持深度拷贝)
os.path.basename(path) #取文件名 os.path.getsize(path) #取文件大小 os.path.exists(path) #文件是否存在 os.path.dirname(path) #取目录名 shutil.copyfile(source,dst) #拷贝文件到目标目录(支持深度拷贝)