hey guys, i just want to ask if the jquery file tree plugin is able to list my folders and files under my “C:/” drive. how can i able to do that?
i used -> root: ‘C:/’ but it doesnt seem to be working.
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
jQuery, and javascript in general, does not have access to your file system.
It is more meant for providing a user interface into remote filesystems. You could however host a web server on your computer, and provide a method of querying your filesystem’s structure via HTTP requests which could then be parsed into a file tree object.