Hey guys, I'm trying to get the name of every files from a specific folder into an array, but I get this error and I can't find why... this may be a stupid question but whatever.
TypeError: Error #1009: Cannot access a property or method of a null object reference.
Here's my code:
import flash.filesystem.File;
function getFileList(directory:String):Array
{
var folder:File = new File(directory);
var files:Array = folder.getDirectoryListing();
var fileList:Array;
for(var i = 0; i < files.length -1; i++)
{
var path:String = 开发者_如何学Cfiles[i].nativePath;
var split:Array = path.split(File.separator);
fileList[i] = (split[split.length -1]);
}
return fileList;
}
var list:Array = getFileList("E://Whatever//Whatever");
You forgot to initialize the fileList
array and hence it is null
when you call fileList[i] = (split[split.length -1]);
in the loop.
Change
var fileList:Array;
to
var fileList:Array = [];
I'd be willing to bet it's not finding the path you're entering, so you can't get a directory listing for it.
Try putting some traces in and see if that's where it gets stuck.
精彩评论