fileSize(filename)
Last updated July 11, 2006
Version: 3 | Requires: ColdFusion 5 | Library: FileSysLib
Description:
This function will return the length of a file. It uses the standard Java File object, which makes it very fast under ColdfusionMX. If a directory is passed instead of a file, the UDF will return the total size of all files in the directory. If the file or folder does not exist, it will return 0.
Return Values:
Returns a number.
Example:
<cfoutput>
Length: #fileSize(filename)#<br>
</cfoutput>
Parameters:
| Name | Description | Required |
|---|---|---|
| filename | The filename or directory path. | Yes |
Full UDF Source:
<cfscript>
/**
* This function will return the length of a file or a directory.
* Version 2 by Nathan Dintenfass
* Version 3 by Nat Papovich
*
* @param filename The filename or directory path. (Required)
* @return Returns a number.
* @author Jesse Houwing (j.houwing@student.utwente.nl)
* @version 3, July 11, 2006
*/
function fileSize(pathToFile) {
var fileInstance = createObject("java","java.io.File").init(toString(arguments.pathToFile));
var fileList = "";
var ii = 0;
var totalSize = 0;
//if this is a simple file, just return it's length
if(fileInstance.isFile()){
return fileInstance.length();
}
else if(fileInstance.isDirectory()) {
fileList = fileInstance.listFiles();
for(ii = 1; ii LTE arrayLen(fileList); ii = ii + 1){
totalSize = totalSize + fileSize(fileList[ii]);
}
return totalSize;
}
else
return 0;
}
</cfscript>
Search CFLib.org
Latest Additions
Tayo Akinmade added
arrayTrim
10 day(s) ago
Will Belden added
longTime
15 day(s) ago
James Sleeman added
quickSort
25 day(s) ago
Ben Forta added
GetHostAddress
28 day(s) ago
Top Rated
EksporSQLData
Rated 5.0, 16 time(s)
backupDatabase
Rated 5.0, 13 time(s)
indentXml
Rated 5.0, 10 time(s)
generateSsccAsn
Rated 5.0, 4 time(s)