Nobody taught as well as you this content. Your technic to understand the full meaning of how path exactly works, is now fully clear to me. Thanks a Ton, Dear Sir.
Hey man still here in 2023 this video is the best content out there on TH-cam getting the job done of clarifying the practical run down of how this works from a practical standpoint. Great teaching technique and attention to detail, with amazing simplicity for the mind of a beginner or someone who is having a hard time letting this concept sink in.
This is a 1 million dollar vedio.. One of th most worth vedio I have ever seen.. You are just explaining A-Z in file paths.. It is very useful to begineers like us who doesn't have any sort of knowledge ragarding file paths.. Thank you 1 million times.. You are a genius in this vedio.. Wooh! Bcz actually this is a golden point in HTML. Anyone who doesn't have a clear understanding on this become trapped in HTML he can't move any further in html.
thank you so much man best way to explain it i moved my files around in folders to be more organized but did not know how to access them correctly but now i do so thank you
Thank you so so much. before this video I was struggling with this problem a lot. I used to copy all the files and paste in the sub directory to do the task. But you taught me an efficient way of doing it. Thanks again❤. Keep creating such amazing contents.👍🏻
I think you should add that everything is relative to the html file in 'I am' folder :) It's second nature to you so you missed it and also one dot '.' means from current folder you go down in folders and two dots '..' means one level up because it's a bit confusing when you start by saying one dot means from current folder so it kind of establish the notion that one dot represents a folder which is not the case.
this is great explanation and presentation. one tip to further improve: move your cursor out of the way, it always stays exactly where the most important thing is to be seen, blocking view. i know, you can guess it, but it does not help when somebody is trying to understand the very thing your are explaining.
Hello @jacoprz8899, this depends, for example if you are on your local machine or local pc, you have an index html file inside file_path_example folder, and you have one image just outside your file_path_example folder, the path from your index html file to image file looks like this: ../image.png, two dots mean go out from your file_path_example. Here is the whole file structure: Some folder -image.png -file_path_example folder -index.html But when you are not on your local machine, your project, in this case file-path-example folder is already on your remote server, relative path to files start from the project folder as the base path so if we write the path like we did in the local machine it is not going to work, so we should only use absolute path to the image, that is why we should always keep our image inside project folder if we want to use relative path ☺️ I hope this clarifies your question, if not please feel free to let me know and am happy to discuss more ☺️ Have a great weekend and good luck 🍀
Hello Aniket Vitalkar, good question! Here I created step by step instructions, both in written format as comments in the index.html file and also in the video format, it is the Instructions.mp4 file. Download the example folder from this link: github.com/AihaitiAbudureheman/html-file-path-example I hope this would help, and please feel free to let me know if you need any further help with this issue! Note: One more thing I want to mention is that normally it is a good idea to put all of your media files such as images, videos, etc, to the folder where your HTML file is located, so that you can easily link them just with a relative file path.
Hi 👋 very good question, currently am outside traveling, will be back home within few days, I will create an example for you about brothers when I back home 🏡 Happy learning ☺️
You are very welcome 😊 And the current folder is the parent folder of the file you currently working on! For example, if you are on the index.html file and you want to specify file path in this file, the current folder is the parent folder of this index.html file! And if you are on style.css file, and you want to specify file path to this style.css, in this case, again the parent folder of this style.css file is the current folder! I hope this might help you clarify what current folder is, if not just let me know I will send you some examples with explanations! Have a great day and have fun with coding 😊
Hello, here I created one simple project folder, the project folder name is current-folder-example. Please download it and open all the files one by one, in every file you can see a line of comment saying which is the current folder when you are on that file! Go to this link and click the green code button with download icon: github.com/AihaitiAbudureheman/current-folder-example/tree/main Good luck with your learning and please feel free to ask if you have any questions!😊
Hello, the video talks about using a relative path, maybe you can help. This code in html did NOT work in android (works in windows). Trying to do 2 things. 1. SIMPLY linking 2 html pages together is not working (both files in same folder). (page2) 2. Linking a pic did not work (in a subfolder). () Can this be made for any android tablet/phone, any year, any brower? (Do I use a shared space?) Do you have an email? (Cant find anyone that knows how to link 2 html pages in android??!!!) Thanks.
Bro index.html file should be present inside your grandparents folder right but u have saved it inside child folder why???? And also clear me whether it can be saved in any folder if we want
Hello Growtham Rishvan, really sorry about this late response! Regarding your question, yes you are right, generally, when we have an HTML project, we put the index.html file inside the root folder, or sometimes it is called a project folder. And there are also some cases that we can put the index.html file inside the folder in the project folder or root folder. But while I created this tutorial, I specifically placed the index.html file inside the folder, just for demonstration purposes. So, I am really sorry if that confused you! Thank you so much for your feedback and happy learning!😊
This is probably the only video that explains this topic. Every other video just dances around the topic but never touches it.
Nobody taught as well as you this content. Your technic to understand the full meaning of how path exactly works, is now fully clear to me. Thanks a Ton, Dear Sir.
Hey man still here in 2023 this video is the best content out there on TH-cam getting the job done of clarifying the practical run down of how this works from a practical standpoint. Great teaching technique and attention to detail, with amazing simplicity for the mind of a beginner or someone who is having a hard time letting this concept sink in.
Not just best explanation of this subject, but!!! It is best one on the world ever exist!!!! Brilliant lesson
Thanks!
Thank you so much 😊 and you really made my day 👍💪☺️
This is a 1 million dollar vedio.. One of th most worth vedio I have ever seen.. You are just explaining A-Z in file paths.. It is very useful to begineers like us who doesn't have any sort of knowledge ragarding file paths.. Thank you 1 million times.. You are a genius in this vedio.. Wooh! Bcz actually this is a golden point in HTML. Anyone who doesn't have a clear understanding on this become trapped in HTML he can't move any further in html.
Thank you 🙏🙏🙏🙏🙏 much and have a wonderful week ☺️
This is extremely helpful and the first time I’ve understood absolute and relative paths. Thank you.
You are very welcome and I am really happy that it was helpful 😊 Happy learning 👏
this person is smart he helped me finish my hw
hard to find such basic concept clearing tutorials, thanks a lot a big help for beginners.
Thanks🙏🙏 spent two days tryna understand this. You gained a subscriber ♥️♥️
thank you so much man best way to explain it i moved my files around in folders to be more organized but did not know how to access them correctly but now i do so thank you
This video really helps explain this concept. It seemed so unclear but this has helped.
Thank you so so much. before this video I was struggling with this problem a lot. I used to copy all the files and paste in the sub directory to do the task. But you taught me an efficient way of doing it. Thanks again❤. Keep creating such amazing contents.👍🏻
I wanted to get a deeper understanding of relative paths, and this definitely helped with that! Thank you for sharing your knowledge :)
you are the best! , your explanation is very clear and different from many others on youtube
thanks for the video, best video on this topic without wasting time and even explained with good example and explanation
very well explained and you provided unique information about file paths and the video editing is absolutely brilliant
This was a life saver. Thank you so much. Appreciated.
The most helpful among all!!!!
Definitely the best explanation.
this was exactly what i was looking for. thanks for this video. ill leave an abbo
very very very very very very very very very very helpful! thankyou
Fantastic explanation!
Awesome Content 🙂💯👍
Long live Sir....
Love from India 🇮🇳💪
The best of all!
Best till now.
Nice being Developer everyone should know this .....
Very well explained kootkot👏🏻
Thank you so much! You really help me.👌
Thanks for the wonderful explanation.
thanks you ...thanks you ...thanks you... you save my life ..
Thanks for explaining clearly
Thank You so much, i hope you find what you are looking for just as i did from your video
thanks for the video, it was very helpful!
Man you are a life savor
Thank you so much your video had solved my issues in th react project
Thank you very much. It is very clear and helpful.
Thank you so much!
Suwun cak,video ne bermanfaat
wow very nice. important video subject and very nice standard voice. not speedy talk. thank you bro subscribed done. from bangladesh
Hello Hasan, thank you so much for the positive feedback and subscription, and I am really glad and appreciate that! Good luck and happy learning!😊
Thanks, helped me understand this
thanks for this super informative video sir.
excellent explanation man thanks
Thank you so much this was extremely useful vedio you have cleared the concept of links
Nice tutorial, Thank a lot for this video
Love from India
Thank you so much sir
Very helpful video💫👍
Explained very well sir...Good practical examples !😇
Thank you so much sir.
Very Helpful!
great explanation. thank you
I think you should add that everything is relative to the html file in 'I am' folder :) It's second nature to you so you missed it and also one dot '.' means from current folder you go down in folders and two dots '..' means one level up because it's a bit confusing when you start by saying one dot means from current folder so it kind of establish the notion that one dot represents a folder which is not the case.
could u say how everything is relative to ' i am ' folder. .
Great video! You have a passion in teaching. Thank you sir :) Subscribed!
Good content.
Thank You Sir. God Bless
well explained. Thanks, Sir!
Really helpful.
Thank you very much......
You are very welcome and happy learning 👍
beautiful explanation
Thank you thank you thank you so much....
Thanks for your help ☺️
Thank you sir, i understand very well.
Great explanation.
Thanks, very helpful
Thanks a lot!
thank you sir because of you i have solved a big problem
You are very welcome and I am very glad that it was helpful ☺️
Really nice and helpful video thank you
Awesome
nice. welldone
u saved my life
Thank you so much❤
Great video!
I am really Glad you enjoyed it👍
Too good !! Hit the nail !!
Thank youuuuuu! Very cleverly made and well explained (Y)
You are very welcome 🤗 And happy learning ☺️
Fantastic
Thank you so much for explaining everything so clearly. Extremely helpful video ❤❤❤❤❤❤
You are very welcome 🙏 and happy learning ✅
thanks, nice and clear
You are very welcome and I am very glad that you liked it!😊
Very understandable،Like a mother's song🙏🌳💚
Thanks u for this video sir really needed this one 😊
You are very welcome 🤗 and happy learning!
Thanks you a lot.!!!It does me a geat favour!!!
this is great explanation and presentation. one tip to further improve: move your cursor out of the way, it always stays exactly where the most important thing is to be seen, blocking view. i know, you can guess it, but it does not help when somebody is trying to understand the very thing your are explaining.
Hello Ákos 👋 thank you so much for your feedback and useful tips 🙏👍👌
And happy learning 💪
Thankyou brother !
great explanation
Thank you sir
Thank you so much
Nice video
Great 🤩
Thank you! Cheers!😊
thanks🤩
Again great video !
Million thanks 🙏 and really happy that it was helpful 😊
Nice
If the image is outside the "file_path example" folder, can I use anything to make the image appear in the browser?
Hello @jacoprz8899, this depends, for example if you are on your local machine or local pc, you have an index html file inside file_path_example folder, and you have one image just outside your file_path_example folder, the path from your index html file to image file looks like this: ../image.png, two dots mean go out from your file_path_example. Here is the whole file structure:
Some folder
-image.png
-file_path_example folder
-index.html
But when you are not on your local machine, your project, in this case file-path-example folder is already on your remote server, relative path to files start from the project folder as the base path so if we write the path like we did in the local machine it is not going to work, so we should only use absolute path to the image, that is why we should always keep our image inside project folder if we want to use relative path ☺️
I hope this clarifies your question, if not please feel free to let me know and am happy to discuss more ☺️
Have a great weekend and good luck 🍀
THANKS
thank you
@kootkot Sir,,,
my html file folder on desktop and my vdo folder in Download folder... and i'm given proper file link ... bt my vdo is not working ...
and same problem with img
Hello Aniket Vitalkar, good question! Here I created step by step instructions, both in written format as comments in the index.html file and also in the video format, it is the Instructions.mp4 file.
Download the example folder from this link:
github.com/AihaitiAbudureheman/html-file-path-example
I hope this would help, and please feel free to let me know if you need any further help with this issue!
Note:
One more thing I want to mention is that normally it is a good idea to put all of your media files such as images, videos, etc, to the folder where your HTML file is located, so that you can easily link them just with a relative file path.
Amazing video ❤️❤️
Thank you so much and I am really glad that it was helpful 😊
awesome
thankyousomuch
Hello sir great video very helpful but if the images are in other directory it's(../)is not working please help me out
Hello Lathifa, could you please share your relative HTML codes and your folder structure, so that I can check and find out what is going on!
@@kootkot can you provide your mail? Or any other alternatives
helpfully
What if the images on brothers of evry level?
Hi 👋 very good question, currently am outside traveling, will be back home within few days, I will create an example for you about brothers when I back home 🏡 Happy learning ☺️
Thanks. But how do we know what the current folder is?
You are very welcome 😊
And the current folder is the parent folder of the file you currently working on!
For example, if you are on the index.html file and you want to specify file path in this file, the current folder is the parent folder of this index.html file!
And if you are on style.css file, and you want to specify file path to this style.css, in this case, again the parent folder of this style.css file is the current folder!
I hope this might help you clarify what current folder is, if not just let me know I will send you some examples with explanations!
Have a great day and have fun with coding 😊
@@kootkot thanks. Yes can you send some examples please!
Hello, here I created one simple project folder, the project folder name is current-folder-example.
Please download it and open all the files one by one, in every file you can see a line of comment saying which is the current folder when you are on that file!
Go to this link and click the green code button with download icon: github.com/AihaitiAbudureheman/current-folder-example/tree/main
Good luck with your learning and please feel free to ask if you have any questions!😊
Hello, the video talks about using a relative path, maybe you can help. This code in html did NOT work in android (works in windows). Trying to do 2 things.
1. SIMPLY linking 2 html pages together is not working (both files in same folder). (page2)
2. Linking a pic did not work (in a subfolder). ()
Can this be made for any android tablet/phone, any year, any brower? (Do I use a shared space?)
Do you have an email? (Cant find anyone that knows how to link 2 html pages in android??!!!) Thanks.
Why do all my file paths have (Archive Root Directory) written on them?
Bro index.html file should be present inside your grandparents folder right but u have saved it inside child folder why???? And also clear me whether it can be saved in any folder if we want
Hello Growtham Rishvan, really sorry about this late response!
Regarding your question, yes you are right, generally, when we have an HTML project, we put the index.html file inside the root folder, or sometimes it is called a project folder.
And there are also some cases that we can put the index.html file inside the folder in the project folder or root folder.
But while I created this tutorial, I specifically placed the index.html file inside the folder, just for demonstration purposes. So, I am really sorry if that confused you!
Thank you so much for your feedback and happy learning!😊