how to get into the steam folder in linux code example
Example 1: how to get input from the console in c++
int age;
cin >> age;
Example 2: How to scan a folder for documents with javascript
var dir = "/videos";
var fileextension = ".mp4";
$.ajax({
url: dir,
success: function (data) {
$(data).find("a:contains(" + fileextension + ")").each(function () {
var filename = this.href.replace(window.location.host, "").replace("http:///", "");
$("body").append($("<img src=" + dir + filename + "></img>"));
});
}
});