Simon
Simon

Reputation: 11

Return Array in ActionScript 3.0 (Flash and Air)

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 = files[i].nativePath;
var split:Array = path.split(File.separator);
fileList[i] = (split[split.length -1]);
}
return fileList;
}

var list:Array = getFileList("E://Whatever//Whatever");

Upvotes: 1

Views: 1770

Answers (2)

Amarghosh
Amarghosh

Reputation: 59451

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 = [];

Upvotes: 2

user377136
user377136

Reputation:

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.

Upvotes: 0

Related Questions