https://bz.apache.org/bugzilla/show_bug.cgi?id=64920

--- Comment #2 from Christophe JAILLET <[email protected]> ---
Hi,

not sure we can get a real solution here.

mod_dav has:

>    case DAV_PROPID_creationdate:
>        /*
>        ** Closest thing to a creation date. since we don't actually
>        ** perform the operations that would modify ctime (after we
>        ** create the file), then we should be pretty safe here.
>        */
>        dav_format_time(DAV_STYLE_ISO8601,
>                        resource->info->finfo.ctime,
>                        buf, sizeof(buf));
>        value = buf;
>        break;

As you can see, we take ctime, which is "the closest thing to a creation date"

In your case, the chown and chmod have changed this ctime.

Maybe we could have an "even closer" date by taking the min of ctime and mtime?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to