Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 2 # for details. All rights reserved. Use of this source code is governed by a | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import sys | |
| 6 import os | |
| 7 | |
| 8 def main(args): | |
| 9 # for file_name in args[1:]: | |
|
ricow1
2013/01/31 14:42:11
commented out code:
ahe
2013/02/04 11:12:05
Done.
| |
| 10 print args | |
| 11 file_name = args[1] | |
| 12 dir_name = os.path.dirname(file_name) | |
| 13 if not os.path.exists(dir_name): | |
| 14 os.mkdir(dir_name) | |
| 15 open(file_name, 'w').close() | |
|
kustermann
2013/01/31 14:35:53
The name "touch_file.py" is a bit misleading, sinc
devoncarew
2013/01/31 22:42:17
Agreed - perhaps truncate_file.py?
ahe
2013/02/04 11:12:05
Done.
ahe
2013/02/04 11:12:05
Done.
| |
| 16 | |
| 17 if __name__ == '__main__': | |
| 18 sys.exit(main(sys.argv)) | |
| OLD | NEW |