Details
Assignee
UnassignedUnassignedReporter
Brad WoodBrad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
New
Details
Details
Assignee
Unassigned
UnassignedReporter
Brad Wood
Brad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 22 July 2015 at 19:08
Updated 28 January 2025 at 10:27
When copying a folder with directoryCopy(), if you are using a UDF filter, there is no way to tell if a given resource path is a file or folder since you're only given the name. Is "foo" a file named "foo" or a folder named "foo"?
This makes implementing something like Git's ignore rules difficult since it treats files different than folders. For instance,
http://git-scm.com/docs/gitignore
I propose adding a "type" argument to the filter UDF.
directoryCopy( src, dest, true, function( path, type ){ if( arguments.type == 'dir' ) { .... } });