Flags for Server.ConvertPath
C#
public enum ConvertPathFlags {
dtsCpMakeVirtual = 1,
dtsCpMakeLocal = 2,
dtsCpMakeUNC = 0x0008,
dtsCpRefreshMappings = 0x0010,
dtsCpStoreInRegistry = 0x0020,
dtsCpReadFromRegistry = 0x0040
}
Members
Members |
Description |
---|---|
dtsCpMakeVirtual |
Convert a local path to a virtual path |
dtsCpMakeLocal |
Convert a virtual path to a local path |
dtsCpMakeUNC |
Convert a mapped path to a UNC path |
dtsCpRefreshMappings |
Use the Metabase to update the table of local-to-virtual mappings that the dtSearch engine uses to perform these conversions |
dtsCpStoreInRegistry |
Store the updated table of mappings in the registry. |
dtsCpReadFromRegistry |
Read the latest table of mappings from the registry. |
See Also