You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stopf("External command failed with exit code %d. This can happen when the disk is full in the temporary directory ('%s'). See ?fread for the tmpdir argument.", status, tmpdir)
R.utils::decompressFile(file, decompFile, ext=NULL, FUN=FUN, remove=FALSE)# ext is not used by decompressFile when destname is supplied, but isn't optional
127
127
}, error=function(e) {
128
-
stopf("Failed to decompress file '%s'. This can happen when the disk is full in the temporary directory ('%s'). See ?fread for the tmpdir argument.", file, tmpdir)
128
+
stopf("R.utils::decompressFile failed to decompress file '%s':\n %s\n. This can happen when the disk is full in the temporary directory ('%s'). See ?fread for the tmpdir argument.", file, conditionMessage(e), tmpdir)
129
129
})
130
-
file=decompFile
130
+
file=decompFile# don't use 'tmpFile' symbol again, as tmpFile might be the http://domain.org/file.csv.gz download
131
131
}
132
132
file= enc2native(file) # CfreadR cannot handle UTF-8 if that is not the native encoding, see #3078.
0 commit comments