无法删除大于2GB的文件

问题描述 投票:0回答:1

我正在尝试从unix shell脚本(csh)中删除文件,并且文件大小大于2GB,这是由于命令rm test.csv给出以下错误并且也没有删除文件。

rm: test.csv: Value too large for defined data type

文件:-rw-r--r-- 1 abcd efgh 2227016509 Mar 6 03:19 test.csv

使用的命令:rm test.csv

请您帮忙。

shell unix sh csh
1个回答
0
投票

首先尝试截断文件,例如:

truncate --size 0 test.csv

然后

rm -f test.csv
© www.soinside.com 2019 - 2024. All rights reserved.