Hi
I have made a very small app to read the contents of a directory. This works just fine.
However when I publish the app and make installable, when the app loads no files are found even though they are copied to the install dir. Can anyone help on this?
Best
Frederick
<code>
var mfiles:File = File.applicationDirectory.resolvePath(“my_files”);
trace(mfiles.nativePath); // …
filePath.text = mfiles.nativePath;
if( !mfiles.exists ) mfiles.createDirectory();
</code>