Welcome to Bucaro TecHelp!

Bucaro TecHelp
HTTPS Encryption not required because no account numbers or
personal information is ever requested or accepted by this site

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact RSS News Feeds News Feeds

Get Webpage File Date and File Size

The document object has several properties that can provide you with information about a webpage's file. The document object's fileCreatedDate, fileModifiedDate, and fileSize properties can be used to determine the date a webpage was created, the date it was last modified, and the size of the webpage file. The example below shows how you could display these properties.

<html>
<head>
<script language="JavaScript">

function getSizeDates()
{
document.writeln("Created: " + document.fileCreatedDate);
document.writeln("Modified: " + document.fileModifiedDate);
document.writeln("Size: " + document.fileSize + " bytes");
}

</script>

</head>
<body onload="getSizeDates()">
</body>
</html>

These methods receive their information from the operating system file manager, so you must understand how the operating system deals with files to understand the information provided by these methods. For example, if you move a file, it keeps the same fileCreatedDate. If you make a copy of the file, the fileCreatedDate of the copy will be the date you created the copy. Renaming a file does not change the fileCreatedDate, but the fileModifiedDate will be the date that you renamed the file.

More Java Script Code:
• Remove Blank Spaces From Ends of a String
• JavaScript to Concatenate Strings
• Java Script Reserved Words
• Using the Java Script eval() Function
• Java Script Data Types
• Rounding a Number with JavaScript
• Convert a Number to a String
• The Conditional Operator
• Determine Minimum and Maximum
• Java Script Math.sin Method

RSS Feed RSS Feed

Follow Stephen Bucaro Follow @Stephen Bucaro


Fire HD
[Site User Agreement] [Privacy Policy] [Site map] [Search This Site] [Contact Form]
Copyright©2001-2024 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268