what is the difference between ‘./folder_name/sub_folder’ and ‘./…/folder_name/sub_folder’ i mean why we add (…)
Regarding Iterating through folders on Laptop
Hey @amankharb, we use ../
to come out of the directory in which we are currently in. So
../folder_name/sub_folder
will bring you out of the current folder and then move you inside folder_name
and then inside sub_folder
.
Hope this helps.
Happy learning