Hi, We have a build utility that runs on a w2k machine and needs to set file creation, modified and last access times. This is done by calling the SetFileTime Win32 API function. This works fine with Windows local drives and network shares. With samba shares only the last modified time is set, creation time is not affected. Is it possible to get this to work? Thanks in advance Alex
On Fri, 16 Nov 2001, Alexander Veit wrote:> Hi, > > We have a build utility that runs on a w2k machine and needs to set > file creation, modified and last access times. This is done by calling > the SetFileTime Win32 API function. This works fine with Windows local > drives and network shares. With samba shares only the last modified > time is set, creation time is not affected.See the stat(2) man page. Unix only support the access, modification, and change times. jerry