2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Touch CLI command.
10 #include <proto/dos.h>
17 struct RDArgs
*rda
= ReadArgs("NAME/A", args
, NULL
);
23 /* Attempt to update the file's date stamp */
24 if (SetFileDate((CONST_STRPTR
)args
[0], DateStamp(&ds
))) {
27 /* Attempt to create the file, if needed */
28 BPTR fh
= Open((STRPTR
)args
[0], MODE_NEWFILE
);
35 PrintFault(IoErr(), NULL
);