1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
12 args: An argument list, the first item of which is a file to touch.
15 os
.makedirs(os
.path
.dirname(args
[0]))
18 with
open(args
[0], 'a'):
19 os
.utime(args
[0], None)
23 if __name__
== '__main__':
24 sys
.exit(main(sys
.argv
[1:]))