source: branches/v2.9/classes/bin/audFldr.CMD

Last change on this file was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

File size: 504 bytes
Line 
1/* rexx - Change the details and sort class
2 of a folder to use CWAudio instead of WPFileSystem */
3
4call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
5call SysLoadFuncs
6
7theFolder=ARG(1)
8theFolder=STRIP(TRANSLATE(theFolder,' ','"'))
9SAY theFolder
10
11rc=SysSetObjectData(theFolder,'DETAILSCLASS=CWAudio;SORTCLASS=CWAudio')
12IF rc=0 THEN DO
13 SAY 'Cannot set the details and sort class.'
14 '@PAUSE'
15 EXIT
16END
17
18SAY 'Detailsclass and sort class for folder changed.'
19'@PAUSE'
20EXIT
21
22
Note: See TracBrowser for help on using the repository browser.