复制具有长名称的文件

复制具有长名称的文件

我使用的是 linux ubuntu 16,我需要将大约 400GB(约 100.000 个文件)的数据从 HDD 复制到 SSD。我不能这样做,因为其中大约 1000 个文件的名称“太长”,而且我不能跳过它们,因为找到它们需要很长时间。有没有复制长名称文件的程序?

答案1

原始(错误)答案

很酷的人告诉,这rsync就像一个魅力:

rsync -auv --exclude '.svn' --exclude '*.pyc' source destination

原答案:https://superuser.com/a/29437/483428

UPD:带脚本

好吧,其他很酷的人告诉我,这rsync不是一个解决方案,当文件系统本身不支持长名称。我要注意的是,这rsync不是神创造的形而上的低级超级秘密工具(顺便说一句,Windows 上有很多这样的工具;)

所以,这是一个简短的python脚本(据我所知,Ubuntu默认安装python 2.7),它将所有文件从 复制SRCDST,并将打印文件名,导致错误(包括长名称)

  1. 另存为copy.py
  2. 用法:python copy.py SRC DEST
import os
import sys
import shutil

def error_on_dir(exc, dest_dir):
    print('Error when trying to create DIR:', dest_dir)
    print(exc)
    print()

def error_on_file(exc, src_path):
    print('Error when trying to copy FILE:', src_path)
    print(exc)
    print()

def copydir(source, dest, indent = 0):
    """Copy a directory structure overwriting existing files"""
    for root, dirs, files in os.walk(source):
        if not os.path.isdir(root):
            os.makedirs(root)
        for each_file in files:
            rel_path = root.replace(source, '').lstrip(os.sep)
            dest_dir = os.path.join(dest, rel_path)
            dest_path = os.path.join(dest_dir, each_file)

            try:
                os.makedirs(dest_dir)
            except OSError as exc:
                if 'file exists' not in str(exc).lower():
                    error_on_dir(exc, dest_dir)

            src_path = os.path.join(root, each_file)
            try:
                shutil.copyfile(src_path, dest_path)
            except Exception as exc:
                # here you could take an appropriate action
                # rename, or delete...
                # Currently, script PRINTS information about such files
                error_on_file(exc, src_path)


if __name__ == '__main__':
    arg = sys.argv
    if len(arg) != 3:
        print('USAGE: python copy.py SOURCE DESTINATION')
    copydir(arg[1], arg[2])

相关内容