CSplitpath:SetDir
The SetDir method sets the directory component of the CSplitpath object. The directory does not include the machine name, drive name, file name, or extension. Use Merge to combine this component and the other components into a full path.
bSuccess = CSplitpath:SetDir( sDir ) where |
|
sDir is the new directory.
bSuccess is the returned success code. On success it is true, otherwise false.
Suppose a file exists with a full path named sPath. The following script creates a new path using a different directory named sNewDir:
|
-- create a CSplitpath object for path sPath |
|
-- assign a new directory name |
|
-- combine the path components |