zoukankan      html  css  js  c++  java
  • 不能直接拷贝4G以上的单个文件到FAT32格式的移动硬盘上

    这个标题好长。乃读通没?

    分离一下:不能直接拷贝4G以上的单个文件FAT32格式的移动硬盘上。

    我上次遇到这个问题的时候,智商拙急了,整个把盘格掉了,改成NTFS。

    高明一点的做法是:cmd, convert/? 得到下面的东东。

    C:Usersadmin>convert/?
    Converts a FAT volume to NTFS.

    CONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]


    volume Specifies the drive letter (followed by a colon),
    mount point, or volume name.
    /FS:NTFS Specifies that the volume will be converted to NTFS.
    /V Specifies that Convert will be run in verbose mode.
    /CvtArea:filename
    Specifies a contiguous file in the root directory
    that will be the place holder for NTFS system files.
    /NoSecurity Specifies that the security settings on the converted
    files and directories allow access by all users.
    /X Forces the volume to dismount first if necessary.
    All open handles to the volume will not be valid.

    所以:最后输入convert C /fs:NTFS 完事!

  • 相关阅读:
    Python mutilprocessing Processing 父子进程共享文件对象?
    BZOJ4836: [Lydsy1704月赛]二元运算
    博弈论刷题记录
    manacher(无讲解)
    UOJ_407_【IOI2018】狼人
    BZOJ_3935_Rbtree
    dsu on tree(无讲解)
    BZOJ_3744_Gty的妹子序列
    后缀数组(无讲解)
    虚树(无讲解)
  • 原文地址:https://www.cnblogs.com/yoyohappy/p/3446842.html
Copyright © 2011-2022 走看看