Changeset 4041
- Timestamp:
- Jun 7, 2020, 11:20:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/file.e ¶
r4040 r4041 2360 2360 ; o To limit the recursion, a number may be appended after the '!'. 2361 2361 ; '!O' means no search in subdirectories. A good value is '!3'. 2362 ; o '!F' means fully recursive, the same as '!'. '!V' means variable. The 2363 ; recurse depth depends on the amount of subpaths to avoid searching 2364 ; a whole volume. 2362 2365 ; o It's normally not useful to search in subdirs of a search path. To 2363 2366 ; avoid this, use multiple calls of FindFileInList, without and with … … 2376 2379 ; FullEName = FindFileInList( 'small.e', .filename'\..', '.!3;..!3;..\..!3') 2377 2380 ; FullEName = FindFileInList( 'small.e', .filename'\..', '.!;..!3') 2381 ; FullName = FindFileInList( 'stdlib.h', 'G:\dev\toolkt45\H;G:\dev\toolkt45\IDL;') (not found) 2382 ; FullName = FindFileInList( 'stdlib.h', 'G:\dev\toolkt45\H!;G:\dev\toolkt45\IDL;') 2378 2383 ; Returns '' if File not found in DirList, otherwise fully qualified name. 2379 2384 defproc FindFileInList( File, DirList) … … 2399 2404 do while restenv <> '' 2400 2405 parse value restenv with ThisDir';'restenv 2401 ThisDir = NepmdQueryFullname( ThisDir)2402 if ThisDir = '' then2403 iterate2404 endif2405 2406 2406 SearchDirList = '' 2407 2407 … … 2433 2433 2434 2434 -- Check for optional trailing numbers and a trailing exclamation mark 2435 TestDir = strip( translate( ThisSearchDir, copies( ' ', 1 0), '0123456789'))2435 TestDir = strip( translate( ThisSearchDir, copies( ' ', 14), '0123456789VFvf')) 2436 2436 if rightstr( TestDir, 1) = '!' then 2437 2437 pExMark = lastpos( '!', ThisSearchDir) … … 2442 2442 -- Number of recursive search levels may be appended after the '!' 2443 2443 RecurseLevel = substr( ThisSearchDir, pExMark + 1) 2444 if upcase( RecurseLevel) = 'F' then 2445 RecurseLevel = -1 2446 elseif upcase( RecurseLevel) = 'V' then 2447 -- Number of start sublevels = number of backslash chars. 2448 -- This allows for specifying recursive search without searching 2449 -- a whole volume when starting near the root. 2450 NumSubLevels = count( '\', ThisSearchDir) 2451 if NumSubLevels >= 3 then 2452 RecurseLevel = -1 2453 elseif NumSubLevels >= 2 then 2454 RecurseLevel = 3 2455 elseif NumSubLevels >= 1 then 2456 RecurseLevel = 2 2457 endif 2458 endif 2444 2459 ThisSearchDir = leftstr( ThisSearchDir, pExMark - 1) 2445 2460 endif … … 2447 2462 2448 2463 ThisSearchDir = NepmdQueryFullname( ThisSearchDir) 2464 if not NepmdDirExists( ThisSearchDir) then 2465 iterate 2466 endif 2449 2467 2450 2468 if RecurseLevel <> 0 then
Note:
See TracChangeset
for help on using the changeset viewer.