Shows all current search paths and links
()
| 728 | * Shows all current search paths and links |
| 729 | */ |
| 730 | private static void Path_f() { |
| 731 | for (SearchPath s : searchPaths) { |
| 732 | Com.Printf(s.toString() + "\n"); |
| 733 | } |
| 734 | |
| 735 | if (!fs_links.isEmpty()) { |
| 736 | Com.Printf("\nLinks:\n"); |
| 737 | for (filelink_t link : fs_links) { |
| 738 | Com.Printf(link.from + " : " + link.to + '\n'); |
| 739 | } |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | /** |
| 744 | * Allows enumerating all of the directories in the search path |
no test coverage detected