Hi All,
I am creating a workflow to check the total size of root path of a ftp/sftp, if size is greater than 30 MB I need to send an alert. I have the username,password,server details stored in a schema. I have queried that schema and stored all these values in 3 instance variables. Then in another js I created a variable and used du command as below it gave me size : -53,du: cannot access 'sftp://username:password@ftp.bbb.com/root/':password@ftp.bbb.com/root/': No such file or directory
vars.filepath = "sftp://"+instance.vars.username+":"+instance.vars.password+"@"+instance.vars.server+"/root/";
cmd = "du -sh "+vars.filepath;
vars.res = execCommand(cmd, true);
logInfo("size : "+ vars.res);
Can anyone help on this.How to get the total size of root directory sub-folders need not be considered.
Thanks,