0

I'm comparing the output of childprocess.exec to a string, but I must have overlooked something since I didn't get the expected result.

function download_all(list, callback){
    var i=0, cmd="";

    function afterDownload(){...}

    while(i<list.length)
    {
        cmd="[ -f ./downloads/"+list[i]+" ] && echo \"E\" || echo\""+list[i]+"\"";
        exec(cmd, function(error, stdout, stderr){
            if(stdout=="E")
            {
                console.log("Already Exist");
            }else{
                console.log("download "+LINK+""+stdout);
                download(LINK+stdout, afterDownload());
            }
        });
        i=i+1;
    }

Basically, I check if a file exist, look at the output of the command, and if it is not E (which sign the file exist), download it. The problem is, even when the file exist, the app try to download LINK+E, which doesn't exist and of course fail.

I've tried with === instead of ==, and " instead of ', but it didn't changed anything.

Is there some character in stdout other than E?

4

1 回答 1

1

NodeJS 有一个“fs”模块,它会为你处理这些。该文档位于http://nodejs.org/api/fs.html

你可以这样做:

fs.exists(list[i], function (exists) {
  console.log("exists = ", exists);
});
于 2013-08-02T12:57:55.637 回答