mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
mingw32: Make NTFS sparse file on --file-allocation=trunc
This commit is contained in:
parent
357e4b1a77
commit
e0ea88ebcf
6 changed files with 20 additions and 7 deletions
|
@ -463,11 +463,23 @@ void AbstractDiskWriter::truncate(int64_t length)
|
|||
}
|
||||
}
|
||||
|
||||
void AbstractDiskWriter::allocate(int64_t offset, int64_t length)
|
||||
void AbstractDiskWriter::allocate(int64_t offset, int64_t length, bool sparse)
|
||||
{
|
||||
if(fd_ == A2_BAD_FD) {
|
||||
throw DL_ABORT_EX("File not yet opened.");
|
||||
}
|
||||
if(sparse) {
|
||||
#ifdef __MINGW32__
|
||||
DWORD bytesReturned;
|
||||
if(!DeviceIoControl(fd_, FSCTL_SET_SPARSE, 0, 0, 0, 0,
|
||||
&bytesReturned, 0)) {
|
||||
A2_LOG_WARN(fmt("Making file sparse failed or pending: %s",
|
||||
fileStrerror(GetLastError()).c_str()));
|
||||
}
|
||||
#endif // __MINGW32__
|
||||
truncate(offset+length);
|
||||
return;
|
||||
}
|
||||
#ifdef HAVE_SOME_FALLOCATE
|
||||
# ifdef __MINGW32__
|
||||
truncate(offset+length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue