예제 #1
0
파일: xstat.py 프로젝트: meeee/bup
 def utime(path, times):
     atime = times[0].to_timespec()
     mtime = times[1].to_timespec()
     return _helpers.utimensat(_helpers.AT_FDCWD, path, (atime, mtime), 0)
예제 #2
0
파일: xstat.py 프로젝트: takeshitakenji/bup
 def utime(path, times):
     atime = times[0].to_timespec()
     mtime = times[1].to_timespec()
     return _helpers.utimensat(_helpers.AT_FDCWD, path, (atime, mtime), 0)
예제 #3
0
파일: xstat.py 프로젝트: meeee/bup
 def lutime(path, times):
     atime = times[0].to_timespec()
     mtime = times[1].to_timespec()
     return _helpers.utimensat(_helpers.AT_FDCWD, path, (atime, mtime),
                               _helpers.AT_SYMLINK_NOFOLLOW)
예제 #4
0
파일: xstat.py 프로젝트: takeshitakenji/bup
 def lutime(path, times):
     atime = times[0].to_timespec()
     mtime = times[1].to_timespec()
     return _helpers.utimensat(_helpers.AT_FDCWD, path, (atime, mtime),
                               _helpers.AT_SYMLINK_NOFOLLOW)