Added some comments to the code

This commit is contained in:
netbenixcn 2020-07-24 16:50:12 +02:00
parent 6abb041631
commit 94c62f3d6b
9 changed files with 50 additions and 37 deletions

View file

@ -9,12 +9,12 @@
void changeCurrentWorkDir(char *arg[]){
DIR *d;
struct dirent *dir;
d = opendir(arg[1]);
if(d == NULL){
d = opendir(arg[1]); //Try to open directory
if(d == NULL){ //Check if directory exists
printf("Folder not found.\n");
return;
} else {
chdir(arg[1]);
chdir(arg[1]); //If directory exists, change workpath
}
closedir(d);
closedir(d); //Close directory
}