CliSite/commands/mv.ts

23 lines
665 B
TypeScript
Raw Normal View History

2022-06-12 09:38:38 +02:00
function mv(args:Array<string>, curdir:any){
var buf = "";
if (args.length == 2) {
if (curdir[args[0]] != undefined) {
if (typeof curdir[args[0]] == "string") {
curdir[args[1]] = curdir[args[0]];
delete curdir[args[0]];
buf += "File " + args[0] + " moved to " + args[1] + "\n";
}
else {
buf += "Error: " + args[0] + " is not a file\n";
}
}
else {
buf += "Error: " + args[0] + " does not exist\n";
}
}
else {
buf += "Wrong number of arguments.\n";
}
return buf;
}
export { mv };