home *** CD-ROM | disk | FTP | other *** search
- !!script
- // Copyright ⌐ 1998 - Modelworks Software
- // @Created build 238 cm19981122
-
- /**
- @Tool: touchFiles~sets the last modified date of all
- files in the selected directory and subdirectories
- to the current data and time.
- @EndTool:
- @Summary: touchFiles~sets the last modified date
- */
-
- var gOutput = getOutput();
-
- function DoCommand()
- {
- var directory = chooseDirectory("Choose directory to touch");
-
- if (directory)
- {
- var files = getDirectoryFiles(directory, "*.*", true);
- if (files)
- {
- var position = files.getHeadPosition();
- while (position.valid)
- {
- var file = files.getNext(position);
- if (file)
- {
- file.touch();
- }
- }
- }
- }
- }
-
- !!/script
-
-