Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.14 KB

symbol-path-command.md

File metadata and controls

52 lines (40 loc) · 1.14 KB
title description ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice
Symbol Path Command
Learn about the Symbol Path command and how it sets the list of directories for the debugger to search for symbols.
11/04/2016
reference
debug.symbolpath
symbol path command
Debug.SymbolPath command
SymbolPath command
Mikejo5000
mikejo
mijacobs
general-ide

Symbol Path Command

Sets the list of directories for the debugger to search for symbols.

Syntax

Debug.SymbolPath pathname1;pathname2;... pathnameN

Arguments

pathname

Optional. A semi-colon delimited list of paths for the debugger to search for symbols.

Remarks

If no pathname is specified, the command lists the current symbol paths.

Example 1

This example adds two paths to the list of symbol directories.

Debug.SymbolPath C:\Symbol Path 1;C:\Symbol Path 2

Example 2

This example displays a semi-colon delimited list of current symbol paths.

Debug.SymbolPath

See also