This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 Windows/DOS 上,您可以执行
copy /b filename1 + filename2 outfilename
在 UNIX/Linux 上,您可以执行
cat filename1 filename2 > > outfilename
该大小的文件在 NTFS 上应该没问题
编辑:您在评论中询问如何进行通配符复制。在这两种情况下都可以使用通配符。
在 Windows/DOS 上,您可以执行
copy /b *.txt + *.dat outfilename
在 UNIX/Linux 上,您可以执行
cat *dat >;输出文件名
On Windows/DOS you can do
copy /b filename1 + filename2 outfilename
On UNIX/Linux you can do
cat filename1 filename2 > outfilename
Files of that size should be fine on NTFS
EDIT: You ask in your comment how to do wildcard copying. You can use wildcards in both cases.
On Windows/DOS you can do
copy /b *.txt + *.dat outfilename
On UNIX/Linux you can do
cat *dat > outfilename
是的,NTFS 将处理这些文件。 NTFS 上的文件最大大小为 16TB。来源:http://en.wikipedia.org/wiki/NTFS#Limitations
Yes, NTFS will handle those files. Maximum size of a file on NTFS is 16TB. Source: http://en.wikipedia.org/wiki/NTFS#Limitations