| SCons User Guide 1.1.0 | ||
|---|---|---|
| <<< Previous | Platform-Independent File System Manipulation | Next >>> |
If you just need to update the recorded modification time for a file, use the Touch factory:
Command("file.out", "file.in",
[
Copy("$TARGET", "$SOURCE"),
Touch("$TARGET"),
])
|
Which executes as:
% scons -Q
Copy("file.out", "file.in")
Touch("file.out")
|
| <<< Previous | Home | Next >>> |
| Moving (Renaming) Files or Directories: The Move Factory | Up | Creating a Directory: The Mkdir Factory |