mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 13:07:37 +03:00
We already replaced "-" with DEV_STDIN in LocalFilePathOptionHandler
This commit is contained in:
parent
380e5aa451
commit
d0a0645836
1 changed files with 7 additions and 10 deletions
|
@ -525,17 +525,14 @@ bool createRequestGroupFromUriListParser(
|
|||
std::shared_ptr<UriListParser> openUriListParser(const std::string& filename)
|
||||
{
|
||||
std::string listPath;
|
||||
if (filename == "-") {
|
||||
listPath = DEV_STDIN;
|
||||
}
|
||||
else {
|
||||
auto f = File(filename);
|
||||
if (!f.exists() || f.isDir()) {
|
||||
throw DL_ABORT_EX(fmt(EX_FILE_OPEN, filename.c_str(),
|
||||
"File not found or it is a directory"));
|
||||
}
|
||||
listPath = filename;
|
||||
|
||||
auto f = File(filename);
|
||||
if (!f.exists() || f.isDir()) {
|
||||
throw DL_ABORT_EX(fmt(EX_FILE_OPEN, filename.c_str(),
|
||||
"File not found or it is a directory"));
|
||||
}
|
||||
listPath = filename;
|
||||
|
||||
return std::make_shared<UriListParser>(listPath);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue